:root {
    --primary-color: #1B3629;
    --primary-light: #2A523E;
    --primary-dark: #12241b;
    --accent-color: #c5a47e;
    --bg-light: #f9f9f9;
    --text-dark: #333;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
}



.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);


    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border: none;


    padding: 20px 0;

    transition: all 0.4s ease;
}

/* Логотип */
.navbar-brand {

    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 2.2rem;

    color: var(--primary-color) !important;

    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.02);
}


.nav-link {

    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color) !important;
    font-weight: 600;
    font-size: 0.85rem;

    margin: 0 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
    padding-bottom: 5px;
}


.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--accent-color);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}


.navbar .btn-custom {

    font-family: 'Montserrat', sans-serif;

    background-color: var(--primary-color);
    color: #fff;

    border-radius: 0;
    border: none;

    padding: 12px 35px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(27, 54, 41, 0.2);
}

.navbar .btn-custom:hover {

    background-color: var(--primary-light);
    color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}


.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 1.8em;
    height: 1.8em;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(27, 54, 41, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.hero-section {

    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)), url('../static/1.jpg');
    background-size: cover;
    background-position: center;
    height: 85vh;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;


    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);

    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3rem;
    }

}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto 45px;
    letter-spacing: 0.5px;

    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);

    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.hero-btn {
    display: inline-block;

    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;


    background-color: var(--primary-color);
    color: #fff;

    padding: 18px 50px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    text-decoration: none;

    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);

    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

.hero-btn:hover {

    background-color: var(--primary-light);
    color: #fff;

    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.btn-custom {
    background-color: var(--accent-color);
    color: white;
    padding: 12px 30px;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: 0.3s;
}

.btn-custom:hover {
    background-color: var(--primary-color);
    color: white;
}

@keyframes fadeInUpBar {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.booking-bar {
    background: #fff;
    padding: 30px 40px;
    margin-top: -60px;
    position: relative;
    z-index: 50;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-top: 4px solid var(--primary-color);
    border-radius: 4px;
}

.form-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--primary-color);
    margin-bottom: 8px;
    display: block;
}

.input-wrapper,
.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    z-index: 10;
    pointer-events: none;
    font-size: 1.2rem;
}

.form-control,
.select-selected {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #606060;
    background-color: #fff;
    border: 1px solid #dddddd;
    border-radius: 0.375rem;
    height: 55px;
    width: 100%;
    padding: 0 45px 0 35px;
    /* Більше відступ справа для іконки, зліва для стрілки */
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-control:hover,
.select-selected:hover {
    border-color: var(--primary-color);
    background-color: #fff;
}

.form-control:focus,
.select-selected.select-arrow-active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(27, 54, 41, 0.2);
    outline: none;

}

.select-selected.select-arrow-active {
    border-radius: 0.375rem 0.375rem 0 0;
}

/* --- Логіка та стилі випадаючого списку гостей --- */
.custom-select-wrapper select {
    display: none;
    border-radius: 0.375rem 0.375rem 0 0;
}

.select-selected::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 15px;
    /* Стрілка зліва */
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: translateY(-60%) rotate(45deg);
    transition: 0.3s;
}

.select-selected.select-arrow-active::after {
    transform: translateY(-10%) rotate(-135deg);
}

.select-items {
    position: absolute;
    background-color: #fff;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    border: 1px solid var(--primary-color);
    border-top: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    max-height: 0;
    opacity: 0;
    border-radius: 0 0 0.375rem 0.375rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.select-items:not(.select-hide) {
    max-height: 300px;
    opacity: 1;
    padding-top: 5px;
}

.select-items div {
    color: #333;
    padding: 12px 20px;
    padding-left: 45px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: 0.2s;
    border-bottom: 1px solid #f0f0f0;
}

.select-items div:hover,
.same-as-selected {
    background-color: var(--primary-color);
    color: #fff;
}

.booking-bar .btn-custom {
    height: 55px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    width: 100%;
    border-radius: 0;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.booking-bar .btn-custom:hover {
    background-color: var(--primary-light);
    color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* --- Логіка та стилі випадаючого вікна дат (Flatpickr) --- */
.flatpickr-calendar {
    font-family: 'Montserrat', sans-serif;
    background: #fff;
    border: none !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2) !important;
    border-radius: 8px !important;
    margin-top: 5px;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
}

.flatpickr-day:hover {
    background: #f0f0f0;
}

.flatpickr-day {
    color: #333 !important;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
    color: rgba(0, 0, 0, 0.1) !important;
}

.flatpickr-months {
    background: var(--primary-color) !important;
    border-radius: 8px 8px 0 0;
    height: 60px !important;
}

.flatpickr-months .flatpickr-month {
    background: transparent !important;
    color: #fff !important;
    height: 60px !important;
    padding-top: 0 !important;
}

.flatpickr-current-month {
    padding: 0 !important;
    color: #fff !important;
    background: transparent !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 60px !important;
    top: 0 !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
    color: #fff !important;
    font-weight: 700;
}

.flatpickr-weekdays {
    background: var(--primary-color) !important;
    height: 35px;
}

.flatpickr-weekday {
    background: var(--primary-color) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600;
}

/* Стрілки навігації календаря (білі) */
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    fill: #fff !important;
    color: #fff !important;
    padding: 0 !important;
    height: 60px !important;
    display: flex !important;
    align-items: center !important;
    z-index: 10;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
    fill: rgba(255, 255, 255, 0.7) !important;
}

/* Випадаючий список вибору місяця (фікс сірого фону) */
.flatpickr-monthDropdown-months {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    border: none !important;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.flatpickr-monthDropdown-months option {
    background-color: var(--primary-light);
    color: #fff;
    padding: 10px;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

/* Стрілочки вибору року (білі) */
.flatpickr-current-month .numInputWrapper span.arrowUp:after {
    border-bottom-color: #fff !important;
}

.flatpickr-current-month .numInputWrapper span.arrowDown:after {
    border-top-color: #fff !important;
}

.flatpickr-current-month .numInputWrapper span:hover {
    background: rgba(255, 255, 255, 0.2) !important;
}

.flatpickr-current-month input.cur-year:focus {
    outline: none;
    color: #fff !important;
}

@media (max-width: 768px) {
    .booking-bar {
        padding: 25px 20px;
        margin-top: 0;
    }

    .booking-bar .col-md-3 {
        margin-bottom: 15px;
    }
}

.about-section {
    padding: 80px 0;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}


.section-padding {
    padding: 100px 0;
}

/* Типографіка секцій */
.section-subtitle {
    color: var(--accent-color);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.section-title-sm {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}


.about-img-wrapper {
    position: relative;
    padding-bottom: 20px;
    padding-right: 20px;
}

@media (max-width: 480px) {
    .about-img-wrapper {
        padding-bottom: 10px;
        padding-right: 0;
    }
}

.about-img-wrapper .main-img {
    position: relative;
    z-index: 1;
    width: 100%;
    transition: transform 0.5s ease;
}

.experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--primary-color);
    color: #fff;
    padding: 20px 30px;
    z-index: 2;
    text-align: center;
    /* Зеленувата тінь */
    box-shadow: -5px 5px 20px rgba(27, 54, 41, 0.3);
    min-width: 140px;
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--accent-color);
}

.experience-badge .text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.feature-card {
    background: #fff;
    padding: 30px 20px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    /* Тінь при наведенні стає насиченішою зеленою */
    box-shadow: 0 15px 30px rgba(27, 54, 41, 0.15);
    border-color: transparent;
}

.icon-box {
    font-size: 2.5rem;


    color: var(--primary-color);

    margin-bottom: 20px;
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;


    background-color: rgba(27, 54, 41, 0.05);

    transition: all 0.4s ease;
}

.feature-card:hover .icon-box {

    background-color: var(--primary-color);
    color: white;


    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(27, 54, 41, 0.3);
}

.feature-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.rooms-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.card-room {
    border: none;
    transition: 0.3s;
    background: white;
    margin-bottom: 30px;
}

.card-room:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    height: 250px;
    object-fit: cover;
}

.price-tag {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
}



.rooms-section {

    background-color: #f4f6f5;
}


.room-intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 15px auto;
}


.amenities-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.amenity-item {
    background: #fff;
    padding: 8px 15px;
    border-radius: 30px;
    border: 1px solid #e0e0e0;
    color: #555;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.amenity-item:hover {
    border-color: var(--primary-color);
    background-color: #fff;
}

.amenity-item i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 1.1rem;
}


.room-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);

    transition: transform 0.3s ease, box-shadow 0.3s ease, border-bottom 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;


    border-bottom: 3px solid transparent;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);


    border-bottom: 3px solid var(--primary-color);
}

/* Gallery Hover Effects */
.gallery-item-wrap {
    overflow: hidden;
    border-radius: 0.375rem;
    position: relative;
    cursor: pointer;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    transition: all 0.4s ease;
    height: 100%;
    /* Ensure wrapper takes full height of column if needed, but for image grid, explicit height on image is better for consistency */
}

.gallery-item-wrap a {
    display: block;
    height: 100%;
}

.gallery-item-wrap img {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
    height: 300px;
    /* Fixed height for alignment */
    object-fit: cover;
}

.gallery-item-wrap:hover {
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, .1);
    /* Softer shadow */
    transform: translateY(-3px);
    /* Slightly less lift */
}

.gallery-item-wrap:hover img {
    transform: scale(1.05);
    /* Reduced scale */
}


/* Вставте це в кінець style.css */

.gslide-image img {
    /* 1. Робимо білу рамку */
    border: 15px solid #fff !important;

    /* 2. Вмикаємо правильний розрахунок розмірів,
       щоб рамка була частиною фото, а не вилазила за екран */
    box-sizing: border-box !important;


    max-height: 90vh !important;
    /* 90% висоти екрану */
    max-width: 90vw !important;
    /* 90% ширини екрану */

    /* 4. Додаємо тінь для краси */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5) !important;
    border-radius: 4px !important;

    /* Центрування */
    margin: auto !important;
}

/* Прибираємо обрізання, якщо воно є */
.gslide-content {
    overflow: visible !important;
}

.room-img-wrap {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.room-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-card:hover .room-img-wrap img {
    transform: scale(1.05);
}


.price-badge {
    position: absolute;
    top: 20px;
    right: 20px;

    background-color: rgba(27, 54, 41, 0.9);
    color: #fff;
    padding: 8px 15px;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    z-index: 2;
    border-radius: 0;
}


.room-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.room-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin: 0;
    color: var(--primary-color);
}

.room-stars i {

    color: var(--accent-color);
    font-size: 0.8rem;
    margin-right: 2px;
}


.room-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.room-specs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}

.room-specs li {
    font-size: 0.9rem;
    color: #777;
}

.room-specs li i {

    color: var(--primary-color);
    margin-right: 5px;
}


.btn-outline-custom {

    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 6px 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    border-radius: 0;
    transition: all 0.3s;
}

.btn-outline-custom:hover {

    background-color: var(--primary-color);
    color: #fff;
}


.features-section {
    padding: 80px 0;

    background-color: var(--primary-color);
    color: white;
}

.features-section h2 {
    color: white;
}

.feature-box {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

/* --- Restaurant Section Styles --- */

.restaurant-text p {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.7;
}

/* Блок з телефоном */
.restaurant-cta {
    background-color: #f8f9fa;
    /* Світло-сірий фон */
    border-color: var(--primary-color) !important;
    /* Зелена лінія зліва */
    border-radius: 0 4px 4px 0;
}

.restaurant-cta h5 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
}

/* Адаптація фотографій */
.object-fit-cover {
    object-fit: cover;
}

@media (max-width: 991px) {

    /* На мобільних міняємо порядок, щоб текст був першим, а фото знизу */
    .order-lg-1 {
        order: 2;
        margin-top: 30px;
    }

    .order-lg-2 {
        order: 1;
    }
}


.sauna-section {
    background-color: var(--bg-light);
    padding: 100px 0;
    overflow: hidden;
}


.sauna-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}


.sauna-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.title-separator {
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 20px auto 0 auto;
}


.sauna-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}


.sauna-media {
    flex: 1.3;
    display: flex;
    justify-content: center;
}

.sauna-info {
    flex: 1;
}



.sauna-image-box {
    position: relative;
    z-index: 1;
    padding: 10px;
    width: fit-content;
    max-width: 100%;
}



.sauna-image-box .main-img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 350px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}



.sauna-image-box .img-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    z-index: 1;
    opacity: 0.3;

}


.sauna-desc {
    font-size: 1.15rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.sauna-quote {

    background-color: #f4f6f5;

    border-left: 4px solid var(--primary-color);
    padding: 15px 20px;
    border-radius: 0 4px 4px 0;
    font-style: italic;
    color: #555;
    margin-bottom: 2rem;
}

.sauna-quote p {
    margin: 0;
}

.sauna-list-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}


.sauna-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
}

.feature-item .icon-circle {
    width: 40px;
    height: 40px;
    background-color: #fff;

    border: 1px solid rgba(27, 54, 41, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;

    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
    transition: 0.3s;
}

.feature-item:hover .icon-circle {

    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.feature-item span {
    font-weight: 600;
    color: #333;
}


.sauna-actions {
    text-align: left;
}

.btn-sauna {
    display: inline-block;

    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    padding: 15px 40px;
    border-radius: 0;
    transition: all 0.3s ease;

    box-shadow: 0 4px 15px rgba(27, 54, 41, 0.3);
}

.btn-sauna:hover {
    background-color: var(--primary-light);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(27, 54, 41, 0.3);
}


@media (max-width: 991px) {
    .sauna-layout {
        flex-direction: column;
        gap: 3rem;
    }

    .sauna-media,
    .sauna-info {
        width: 100%;
        flex: auto;
    }

    .sauna-features-grid {
        grid-template-columns: 1fr;
    }

    .sauna-actions {
        text-align: center;
    }

    .btn-sauna {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    .sauna-image-box .img-backdrop {
        display: none;
    }
}

/* Footer */
footer {
    background-color: #0e1c15;
    color: #a8b2ad;
    padding: 60px 0 30px;
}

.footer-title {
    color: white;
    font-family: 'Playfair Display', serif;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.contact-link {
    color: #e0e0e0;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 12px;
    font-size: 1.05rem;
    transition: 0.3s;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}

.contact-link:hover {
    color: var(--accent-color);
    padding-left: 5px;
    border-bottom: 1px solid var(--accent-color);
}

.social-icons a {
    color: white;
    margin-right: 15px;
    font-size: 1.2rem;
    transition: 0.3s;
}

.social-icons a:hover {
    color: var(--accent-color);
}

/* Footer Map */
.footer-map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    height: 100%;
    min-height: 200px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-map-container:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-color);
}

.footer-map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 200px;
    display: block;
}

.back-link {
    display: inline-block;
    color: #666;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 20px;
    transition: 0.3s;
}

.back-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* --- Menu Styles --- */

.menu-section .nav-pills .nav-link {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.menu-section .nav-pills .nav-link.active,
.menu-section .nav-pills .nav-link:hover {
    background-color: var(--primary-color);
    color: #fff !important;
}

.menu-item {
    border-bottom: 1px dashed #e0e0e0;
    padding-bottom: 15px;
    transition: transform 0.3s ease;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.menu-item .price-tag {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
}

/* Вимикаємо анімацію смужки для кнопок в меню ресторану */
.menu-section .nav-link::after {
    display: none !important;
    content: none !important;
}

/* Слайдер */
.room-slider-img {
    height: 500px;
    object-fit: cover;
}

.room-amenities-list {
    color: #555;
    font-size: 1rem;
}

.room-amenities-list i {
    color: var(--primary-color);
    width: 25px;
    text-align: center;
}

/* Сайдбар бронювання */
.booking-sidebar {
    background-color: #fff;
    border: 1px solid #eee;
    position: static;
    /* top: 100px; removed sticky */
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

    border-top: 3px solid var(--primary-color);
}

.booking-sidebar .current-price {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1;
}


@media (max-width: 768px) {
    .room-slider-img {
        height: 300px;
    }

    .booking-sidebar {
        position: static;
        margin-top: 30px;
    }
}

.booking-sidebar .btn-custom {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    transition: 0.3s;
}

.booking-sidebar .btn-custom:hover {
    background-color: var(--primary-light);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Button Green Style */
.btn-green {
    font-family: 'Montserrat', sans-serif !important;
    background-color: var(--primary-color) !important;
    color: #fff !important;
    border-radius: 0 !important;
    border: none;
    padding: 12px 35px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s ease !important;
    box-shadow: 0 5px 15px rgba(27, 54, 41, 0.2);
    text-decoration: none;
    display: inline-block;
}

.btn-green:hover {
    background-color: var(--primary-light);
    color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* Minimalist Phone Link */
.phone-link-minimal {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.15rem;
    padding: 10px 0;
    border-bottom: 2px dashed rgba(197, 164, 126, 0.5);
    transition: all 0.3s ease;
    margin-top: 5px;
}

.phone-link-minimal i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.phone-link-minimal:hover {
    color: var(--primary-light);
    border-bottom: 2px solid var(--accent-color);
    padding-left: 5px;
}

.phone-link-minimal:hover i {
    transform: scale(1.2) rotate(-10deg);
}

/* ==========================================================================
   Mobile Optimization (max-width: 768px)
   ========================================================================== */

@media (max-width: 768px) {

    /* --- Typography fixes --- */
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-title-sm {
        font-size: 1.6rem;
    }

    .navbar-brand {
        font-size: 1.6rem;
    }

    .experience-badge .years {
        font-size: 2rem;
    }

    .room-title {
        font-size: 1.3rem;
    }

    .footer-title {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    /* --- Spacing & Layout --- */
    .section-padding {
        padding: 60px 0;
    }

    .about-section {
        padding: 50px 0;
    }

    .hero-section {
        height: 75vh;
    }

    .hero-btn {
        padding: 15px 35px;
        font-size: 0.85rem;
    }

    /* Fix for side-by-side images in restaurant/gallery sections */
    .col-6.mt-5 {
        margin-top: 15px !important;
    }

    /* Ensuring all .col-6 become .col-12 in specific mobile breakages */
    .restaurant-gallery-fix .col-6 {
        width: 100%;
        margin-bottom: 15px;
    }

    /* Refined Restaurant Atmosphere Grid */
    .atmosphere-grid .col-6 {
        padding: 5px !important;
    }

    .atmosphere-grid .mt-4,
    .atmosphere-grid .mt-5 {
        margin-top: 5px !important;
    }

    .atmosphere-grid img {
        height: 180px !important;
        width: 100%;
        object-fit: cover;
        border-radius: 8px;
    }

    /* Menu Section Mobile Optimization */
    .menu-section .nav-pills {
        gap: 8px;
        padding: 0 10px;
    }

    .menu-section .nav-pills .nav-item {
        margin: 0 !important;
        flex: 1 1 calc(50% - 8px);
        /* Two buttons per row */
    }

    .menu-section .nav-pills .nav-link {
        width: 100%;
        padding: 10px 5px !important;
        font-size: 0.75rem !important;
        white-space: normal;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .menu-item {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .menu-item h5 {
        font-size: 1rem;
    }

    .menu-item .price-tag {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.4rem;
    }

    .hero-title {
        font-size: 2.4rem;
    }
}

/* --- EasyMS Widget Overrides --- */
#easyms-reservation-module {
    font-family: 'Montserrat', sans-serif !important;
    max-width: 1140px;
    margin: 0 auto;
}

/* Ensure the widget container doesn't overflow or look weird */
#easyms-reservation-module>div {
    max-width: 100% !important;
    width: 100% !important;
    box-shadow: none !important;
    background: transparent !important;
}

/* Target the inner form container if possible - approximate selector */
#easyms-reservation-module [class*="searchRoomsForm"] {
    background: #fff;
    padding: 20px !important;
    border-radius: 4px !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    /* Match site shadow */
    border-top: 4px solid var(--primary-color);
}

/* Input Fields */
#easyms-reservation-module input {
    font-family: 'Montserrat', sans-serif !important;
    border-radius: 4px !important;
    border-color: #dddddd !important;
    height: 55px !important;
    color: #606060 !important;
    font-weight: 600 !important;
}

#easyms-reservation-module input:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 2px rgba(27, 54, 41, 0.2) !important;
}

/* Button */
#easyms-reservation-module button.mdc-button--raised {
    background-color: var(--primary-color) !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border-radius: 4px !important;
    height: 55px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.4s ease !important;
}

#easyms-reservation-module button.mdc-button--raised:hover {
    background-color: var(--primary-light) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
    transform: translateY(-2px);
}

/* DatePicker customization if possible */
.DayPicker-Day--selected:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside) {
    background-color: var(--primary-color) !important;
}

.DayPicker-Day--selected:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside):hover {
    background-color: var(--primary-light) !important;
}

/* Sidebar Widget Vertical Styling */
.sidebar-widget #easyms-reservation-module [class*='mdc-layout-grid__inner'] {
    display: flex !important;
    flex-direction: column !important;
}

.sidebar-widget #easyms-reservation-module [class*='mdc-layout-grid__cell'] {
    width: 100% !important;
    margin-bottom: 15px !important;
}

.sidebar-widget #easyms-reservation-module button.mdc-button--raised {
    width: 100% !important;
}


/* Fix: Sidebar Widget Vertical Styling - corrected selector */
#easyms-reservation-module.sidebar-widget [class*='mdc-layout-grid__inner'] {
    display: flex !important;
    flex-direction: column !important;
}

/* --- New Booking UI Styles (Flatpickr Override) --- */
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-months,
.flatpickr-weekdays,
.flatpickr-weekday,
.flatpickr-monthDropdown-months,
.flatpickr-monthDropdown-months option {
    background: #1e3d2f !important;
    border-color: #1e3d2f !important;
}

.flatpickr-monthDropdown-months,
.flatpickr-monthDropdown-months option {
    background-color: #1e3d2f !important;
}

.flatpickr-day.selected {
    color: #fff !important;
}

/* Ensure white text on dark background elements */
.flatpickr-months .flatpickr-month,
.flatpickr-current-month,
.flatpickr-weekday,
.flatpickr-monthDropdown-months {
    color: #fff !important;
}

/* Input Fields styling to match */
.date-picker-input {
    background-color: #fff !important;
    cursor: pointer;
}

.date-picker-input:focus {
    border-color: #1e3d2f;
    box-shadow: 0 0 0 0.25rem rgba(30, 61, 47, 0.25);
}

/* =============================================
   Room Details Page Styles  
   ============================================= */

/* Main section container */
.room-details-section {
    padding-top: 20px;
}

/* Fix row alignment - content left, sidebar right */
.room-details-section>.container>.row {
    display: flex;
    align-items: flex-start;
}

/* Room slider image - smaller and more proportional */
.room-details-slider-img {
    height: 500px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Carousel container */
.room-details-section .carousel {
    max-width: 100%;
    margin: 0 auto 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Carousel controls styling */
.room-details-section .carousel-control-prev,
.room-details-section .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(27, 54, 41, 0.7);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.room-details-section .carousel-control-prev {
    left: 15px;
}

.room-details-section .carousel-control-next {
    right: 15px;
}

.room-details-section .carousel-control-prev:hover,
.room-details-section .carousel-control-next:hover {
    background: rgba(27, 54, 41, 0.95);
    opacity: 1;
}

/* Booking sidebar - sticky on the right */
.booking-sidebar {
    position: sticky;
    top: 100px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
}

/* Content area styles */
.room-details-section .col-lg-8 {
    padding-right: 30px;
}

/* Section titles */
.room-details-section .section-title {
    font-size: 2rem;
    margin-bottom: 5px;
}

/* Room stars */
.room-details-section .room-stars {
    color: var(--accent-color);
}

.room-details-section .room-stars i {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-right: 3px;
}

/* Description and amenities headers */
.room-details-section h3.font-playfair,
.room-details-section h3.mb-3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-top: 20px;
}

/* Amenities list */
.room-amenities-list {
    margin-bottom: 0;
}

.room-amenities-list .col-md-6 {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 10px;
    font-weight: 500;
    color: #555;
}

.room-amenities-list .col-md-6 i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Back link */
.back-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: var(--primary-light);
    transform: translateX(-5px);
}

/* Price block in sidebar */
.booking-sidebar .price-block {
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.booking-sidebar .current-price {
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

/* Form styling in sidebar */
.booking-sidebar .form-control {
    border-radius: 8px;
    height: 50px;
    font-size: 0.9rem;
}

.booking-sidebar .form-label {
    font-size: 0.7rem;
    color: #888;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Submit button */
.booking-sidebar .btn-custom {
    border-radius: 8px;
    font-size: 1rem;
    letter-spacing: 1px;
}

/* Responsive styles */
@media (max-width: 991px) {
    .room-details-slider-img {
        height: 300px;
    }

    .room-details-section .col-lg-8 {
        padding-right: 15px;
        margin-bottom: 30px;
    }

    .booking-sidebar {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .room-details-slider-img {
        height: 250px;
    }

    .room-details-section .section-title {
        font-size: 1.6rem;
    }

    .room-amenities-list .col-md-6 {
        padding: 8px 12px;
    }
}