@font-face {
    font-family: "HeleneHess";
    src: url("fonts_icons/HeleneHess-Regular.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: "HeleneHess", sans-serif;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out forwards;
}

.fade-in-delay-1 {
    animation-delay: 0.2s;
    opacity: 0;
}

.fade-in-delay-2 {
    animation-delay: 0.4s;
    opacity: 0;
}

.fade-in-delay-3 {
    animation-delay: 0.6s;
    opacity: 0;
}

.fade-in-delay-4 {
    animation-delay: 0.8s;
    opacity: 0;
}

.fade-in-delay-5 {
    animation-delay: 1s;
    opacity: 0;
}

.fade-in-delay-6 {
    animation-delay: 1.2s;
    opacity: 0;
}

.fade-in-delay-7 {
    animation-delay: 1.4s;
    opacity: 0;
}

.fade-in-delay-8 {
    animation-delay: 1.6s;
    opacity: 0;
}

.fade-in-delay-8 {
    animation-delay: 1.8s;
    opacity: 0;
}

.fade-in-delay-9 {
    animation-delay: 2s;
    opacity: 0;
}

.fade-in-delay-10 {
    animation-delay: 2.2s;
    opacity: 0;
}

.fade-in-delay-11 {
    animation-delay: 2.4s;
    opacity: 0;
}

button {
    position: relative;
    z-index: 1;
    /* make sure button is above the pseudo-element */
}

button::before {
    content: "";
    position: absolute;
    top: -20px;
    bottom: -20px;
    left: -15px;
    right: -15px;
    z-index: -1;
}

.back-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-size: 4rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.back-btn::before {
    content: "←";
    margin-right: 1rem;
    margin-top: 0.5rem;
    font-size: 4rem;
}

.home-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-size: 4rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.page-title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4.7rem;
    padding-top: 1.5rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.showmore {
    color: black;
    padding: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    font-size: 1rem;
    border-width: 1px;
    border-color: rgba(217, 205, 193);
    margin-top: 5px;
}

.content-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: brightness(0.8);
    opacity: 1;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.divider {
    height: 3px;
    background-color: rgba(255, 255, 255, 0.7);
    margin: 0 auto;
    width: 90%;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

/* summer_winter page */
.season-btn {
    position: relative;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 6rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    overflow: hidden;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.season-btn:hover {
    transform: scale(1.05);
}

.season-btn:not(.hidden)::after {
    content: '→';
    margin-left: 2rem;
    margin-top: 1rem;
    font-size: 6rem;
}

.horizontal-divider {
    width: 80%;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.7);
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);

  }


/* summer/winter buttons */
.season-buttons-btn {
    position: relative;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 6rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    overflow: hidden;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.menu-item {
    position: relative;
    height: 120px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.menu-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
    transition: all 0.5s ease;
}

.menu-item:hover .menu-bg {
    transform: scale(1.05);
    filter: brightness(0.7);
}

.menu-content {
    position: relative;
    z-index: 10;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    border-width: 2px;
    border-color: rgb(181, 161, 145);
}

.menu-title {
    color: rgba(2, 16, 42);
    font-size: 3.6rem;
}

.menu-arrow {
    margin-left: auto;
    color: white;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.menu-container {
    position: relative;
    height: 1200px;
    padding-left: 2rem;
    padding-right: 2rem;
}

.mdBody1P {
    line-height: 1.85rem;
}

/* activities */

.brunni-webcam-content {
    position: relative;
    overflow: auto;
    height: 1200px;
}

.brunni-webcam-pane {
    height: 3100px;
}

.rental-content {
    position: relative;
    overflow: auto;
    height: 1200px;
}

.rental-pane {
    height: 1700px;
}

/* community */

.event-planning-content {
    position: relative;
    overflow: auto;
    height: 1200px;
}

.event-planning-pane {
    height: 1700px;
}

.kursaal-content {
    position: relative;
    overflow: auto;
    height: 1200px;
}

.kursaal-pane {
    height: 1200px;
}

.carousel-container {
    position: relative;
    width: 90%;
    max-width: 800px;
    margin: auto;
    overflow: hidden;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
}

.carousel img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

.carousel-button:hover {
    background-color: rgba(0, 0, 0, 0.7);
}


/* more */
.gallery-content {
    position: relative;
    overflow: auto;
    height: 800px;
}

.gallery-pane {
    /*width: 211px;*/
    height: 1000px;
}

/* spa */
.spa-membership-content {
    position: relative;
    overflow: auto;
    height: 1200px;
}

.spa-membership-pane {
    height: 2000px;
}

.dayspa-content {
    position: relative;
    overflow: auto;
    height: 1200px;
}

.dayspa-pane {
    height: 1500px;
}


/* weather */
.location-card {
    /*background-color: rgba(30, 41, 59, 0.7);*/
    backdrop-filter: blur(10px);
    border: 1px solid rgb(181, 161, 145);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.current-weather {
    border-bottom: 1px solid rgba(181, 161, 145);
}

.forecast-day {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.forecast-day:last-child {
    border-bottom: none;
}

.weather-icon {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.current-icon {
    /*width: 120px;*/
    height: 120px;
}

.forecast-icon {
    width: 40px;
    height: 40px;
}

.temp-current {
    font-size: 3rem;
}

.temp-high {}

.temp-low {}

/* culinary */
.menu-switch-btn{
    font-size: 1.3rem;
}