/* ============================================
   Nikoletta Hotel & SPA — Main Styles
   ============================================ */

/* --- CSS Variables --- */
:root {
    --color-primary: #004537;
    --color-gold: #C9A84C;
    --color-white: #FFFFFF;
    --color-light-bg: #F8F6F2;
    --color-dark: #1A1A1A;
    --color-body: #555555;

    --font-heading: 'Prata', serif;
    --font-body: 'Play', sans-serif;
    --font-accent: 'Amatic SC', cursive;

    --header-height: 90px;
    --container-width: 1200px;
    --section-padding: 100px 0;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.5;
    color: var(--color-body);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    font-weight: 400;
    line-height: 1.3;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-weight: 400;
    letter-spacing: 0.5px;
    border-radius: 0;
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-book {
    background: var(--color-gold);
    color: var(--color-white);
    border-color: var(--color-gold);
}

.btn-book:hover {
    background: transparent;
    color: var(--color-gold);
}

.btn-book-mobile {
    display: none;
}

.mobile-nav-socials {
    display: none;
}

.btn-hero {
    background: var(--color-gold);
    color: var(--color-white);
    border-color: var(--color-gold);
    padding: 16px 44px;
}

.btn-hero:hover {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

/* --- Section Accents --- */
.section-accent {
    display: block;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.section-accent {
    font-family: var(--font-accent);
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-title {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--color-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.4s, box-shadow 0.4s;
    background: transparent;
}

.site-header.scrolled {
    background: var(--color-primary);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    height: var(--header-height);
}

.site-logo {
    flex-shrink: 0;
}

.logo-img {
    height: 55px;
    width: auto;
}

.logo-white {
    display: none;
}

.site-header.scrolled .logo-dark {
    display: none;
}

.site-header.scrolled .logo-white {
    display: block;
}

/* Inner pages: solid header by default */
.site-header--inner {
    background: var(--color-primary);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.site-header--inner .logo-dark {
    display: none;
}

.site-header--inner .logo-white {
    display: block;
}

/* Room card link reset */
.room-card-link {
    display: block;
    color: inherit;
}

.room-card-link:hover {
    color: inherit;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-list a {
    font-weight: 400;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width 0.3s;
}

.nav-list a:hover::after {
    width: 100%;
}

.nav-list a:hover {
    color: var(--color-gold);
}

/* --- Dropdown submenu --- */
.nav-list > .menu-item-has-children {
    position: relative;
}

/* Move underline to ::before so ::after is free for arrow */
.nav-list > .menu-item-has-children > a::after {
    content: '';
    position: static;
    display: inline-block;
    width: 5px;
    height: 5px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s;
    margin-left: 8px;
    vertical-align: 2px;
    background: none;
}

.nav-list > .menu-item-has-children:hover > a::after {
    transform: rotate(-135deg);
    width: 5px;
}

.nav-list > .menu-item-has-children > a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width 0.3s;
}

.nav-list > .menu-item-has-children:hover > a::before {
    width: 100%;
}

.nav-list .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    background: var(--color-primary);
    border-top: 2px solid var(--color-gold);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
    z-index: 100;
    list-style: none;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.nav-list > .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-list .sub-menu li {
    padding: 0;
}

.nav-list .sub-menu a {
    display: block;
    padding: 10px 24px;
    font-size: 16px;
    text-transform: none;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s, padding-left 0.3s;
    white-space: nowrap;
}

.nav-list .sub-menu a::after {
    display: none;
}

.nav-list .sub-menu a:hover {
    color: var(--color-gold);
    padding-left: 30px;
}

/* Hover bridge — prevent gap between link and dropdown */
.nav-list > .menu-item-has-children::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 15px;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--color-white);
    transition: all 0.3s;
}

.mobile-menu-toggle.is-active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    color: var(--color-white);
}
.hero.default {
    height: unset;
}
.booking-widget {
    margin-top: -136px;
    margin-bottom: 100px;
}
@media (max-width: 768px) {
    .hero.default {min-height: 300px;}
    .booking-widget {
        margin-top: -80px;
        margin-bottom: 50px;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 30, 20, 0.55);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    padding: 0 20px;
    @media (max-width: 767px) {
        margin: 100px 0 auto;
    }
}

.hero-title {
    font-size: 62px;
    color: var(--color-white);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-subtitle {
    margin-bottom: 40px;
    opacity: 0.9;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    background: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 18px;
}

.included-block {
    margin-top: 30px;
    padding: 24px 28px;
    background: var(--color-light-bg);
    border-left: 3px solid var(--color-gold);
}

.included-title {
    font-size: 20px;
    margin-bottom: 14px;
    color: var(--color-primary);
}

.included-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 30px;
}

.included-list li {
    position: relative;
    padding-left: 20px;
    color: var(--color-dark);
}

.included-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: 700;
}

.about-images {
    position: relative;
    min-height: 450px;
}

.about-img-wrapper {
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-1 {
    position: relative;
    width: 85%;
    height: 320px;
    z-index: 2;
}

.about-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 65%;
    height: 250px;
    z-index: 1;
}

/* ============================================
   ADVANTAGES
   ============================================ */
.advantages {
    background: var(--color-light-bg);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.advantage-card {
    position: relative;
    background: var(--color-white);
    padding: 40px 30px 35px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.advantage-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.advantage-number {
    position: absolute;
    top: 10px;
    right: 18px;
    font-family: var(--font-heading);
    font-size: 72px;
    color: rgba(0, 69, 55, 0.1);
    line-height: 1;
    user-select: none;
    pointer-events: none;
}

.advantage-icon {
    color: var(--color-gold);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.advantage-title {
    font-size: 20px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.advantage-divider {
    width: 40px;
    height: 2px;
    background: var(--color-gold);
    margin: 0 auto 16px;
}

.advantage-desc {
    color: var(--color-body);
    position: relative;
    z-index: 1;
}

/* ============================================
   ROOMS
   ============================================ */
.rooms {
    background: var(--color-white);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.room-card {
    overflow: hidden;
    background: var(--color-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.room-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.room-img {
    height: 260px;
    overflow: hidden;
}

.room-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.room-card:hover .room-img img {
    transform: scale(1.05);
}

.room-img-placeholder {
    width: 100%;
    height: 100%;
}

.room-info {
    padding: 28px 24px;
}

.room-title {
    font-size: 22px;
    margin-bottom: 10px;
}

.room-desc {
    margin-bottom: 18px;
    color: var(--color-body);
}

.room-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.room-capacity {
    color: var(--color-body);
}

.room-price {
    font-weight: 700;
    color: var(--color-primary);
}

.btn-room {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    padding: 10px 28px;
}

.btn-room:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* ============================================
   GALLERY SLIDER
   ============================================ */
.gallery {
    background: var(--color-light-bg);
}

.gallery-slider {
    position: relative;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    transition: transform 0.4s ease;
}

.gallery-slide {
    flex: 0 0 33.333%;
    padding: 0 8px;
    cursor: pointer;
}

.gallery-slide img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-slide:hover img {
    transform: scale(1.03);
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--color-white);
    color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: all 0.3s;
}

.gallery-arrow:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.gallery-arrow--prev {
    left: 16px;
}

.gallery-arrow--next {
    right: 16px;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
}

.lightbox.is-active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 42px;
    cursor: pointer;
    line-height: 1;
    z-index: 10;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--color-gold);
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s;
}

.lightbox-arrow:hover {
    color: var(--color-white);
}

.lightbox-arrow--prev {
    left: 30px;
}

.lightbox-arrow--next {
    right: 30px;
}

.lightbox-img-wrapper {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
}

/* ============================================
   SERVICES
   ============================================ */
.services-section {
    padding: var(--section-padding);
    position: relative;
    background: var(--color-white);
}

.services-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    list-style: none;
}

/* Card */
.service-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    /*background: var(--color-primary);*/
    aspect-ratio: 16/10;
    outline: none;
}

.card-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                filter 0.9s ease;
    will-change: transform;
}

.service-card:hover .card-image,
.service-card:focus-visible .card-image {
    transform: scale(1.06);
    filter: brightness(0.38) saturate(0.65);
}

/* Gradient overlay */
.card-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.card-gradient::before,
.card-gradient::after {
    content: '';
    position: absolute;
    inset: 0;
    transition: opacity 0.6s ease;
}

.card-gradient::before {
    background: linear-gradient(
        to top,
        rgba(10,20,12,0.92) 0%,
        rgba(10,20,12,0.22) 55%,
        transparent 100%
    );
    opacity: 1;
}

.card-gradient::after {
    background: linear-gradient(
        to top,
        rgba(8,16,10,0.98) 0%,
        rgba(8,16,10,0.72) 60%,
        rgba(8,16,10,0.28) 100%
    );
    opacity: 0;
}

.service-card:hover .card-gradient::after,
.service-card:focus-visible .card-gradient::after {
    opacity: 1;
}

/* Card number */
.card-number {
    position: absolute;
    top: 24px;
    right: 28px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.28);
    z-index: 3;
    transition: color 0.4s ease;
    user-select: none;
}

.service-card:hover .card-number,
.service-card:focus-visible .card-number {
    color: var(--color-gold);
}

/* Card content */
.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 36px 32px 30px;
    z-index: 3;
}

.card-rule {
    display: block;
    width: 32px;
    height: 1px;
    background: var(--color-gold);
    margin-bottom: 16px;
    transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover .card-rule,
.service-card:focus-visible .card-rule {
    width: 56px;
}

.card-title {
    font-family: var(--font-heading);
    font-size: clamp(26px, 3.2vw, 40px);
    font-weight: 400;
    color: #fff;
    line-height: 1.05;
}

/* Description + CTA reveal */
.card-reveal {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                margin-top 0.4s ease;
    margin-top: 0;
}

.service-card:hover .card-reveal,
.service-card:focus-visible .card-reveal {
    grid-template-rows: 1fr;
    margin-top: 14px;
}

.card-reveal-inner {
    overflow: hidden;
    min-height: 0;
}

.card-description {
    color: rgba(255,255,255,0.68);
}

.card-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    font-family: var(--font-body);
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    text-decoration: none;
    border-left: 1px solid;
    padding: 8px 16px;
}

.card-cta .cta-line {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.35s ease;
    flex-shrink: 0;
}

.card-cta:hover .cta-line {
    width: 42px;
}

/* Services footer CTA */
.services-footer {
    max-width: 1400px;
    margin: 56px auto 0;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.services-footer .footer-line {
    flex: 1;
    height: 1px;
}

.services-footer .footer-line:first-child {
    background: linear-gradient(90deg, transparent, var(--color-gold));
}

.services-footer .footer-line:last-child {
    background: linear-gradient(90deg, var(--color-gold), transparent);
}

.services-footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 38px;
    border: 1px solid var(--color-primary);
    font-size: 11px;
    font-family: var(--font-body);
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-primary);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.services-footer-cta:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* ============================================
   VIDEO
   ============================================ */
.video-section {
    position: relative;
}

.video-bg {
    position: relative;
    height: 70vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 30, 20, 0.6);
}

.video-content {
    position: relative;
    z-index: 2;
}

.video-accent {
    color: var(--color-white);
    opacity: 0.8;
}

.video-title {
    font-size: 48px;
    color: var(--color-white);
    margin-bottom: 40px;
}

.video-play-btn {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid var(--color-white);
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.video-play-btn:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    transform: scale(1.1);
}

.video-play-btn svg {
    margin-left: 4px;
}

.video-iframe-wrapper {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 10;
    background: #000;
}

.video-iframe-wrapper.is-active {
    display: block;
}

.video-iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================
   CONTACTS
   ============================================ */
.contacts {
    background: var(--color-light-bg);
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contacts-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-link {
    display: block;
    color: var(--color-dark);
}

.contact-link:hover {
    color: var(--color-gold);
}

.contact-messengers {
    display: flex;
    gap: 16px;
}

.contact-messengers span,
.contact-messengers a {
    padding: 4px 14px;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s;
}

.contact-messengers span:hover,
.contact-messengers a:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.contact-address {
    color: var(--color-dark);
}

.contact-socials {
    display: flex;
    gap: 16px;
    margin-top: 4px;
}

.social-link {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.social-link--fb {
    background: #1877F2;
    color: #fff;
}

.social-link--yt {
    background: #FF0000;
    color: #fff;
}

.contacts-map {
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--color-primary);
    color: rgba(255, 255, 255, 0.8);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
}

.footer-seo {
    color: rgba(255, 255, 255, 0.6);
}

.footer-heading {
    font-size: 20px;
    color: var(--color-white);
    margin-bottom: 22px;
}

.footer-nav li {
    margin-bottom: 10px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--color-gold);
}

.footer-contacts li {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contacts a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.footer-contacts a:hover {
    color: var(--color-gold);
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-messengers {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.footer-messengers span,
.footer-messengers a {
    padding: 3px 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-messengers span:hover,
.footer-messengers a:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 992px) {
    :root {
        --section-padding: 70px 0;
    }

    .section-title {
        font-size: 34px;
    }

    .hero-title {
        font-size: 44px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-images {
        min-height: 350px;
        max-width: 500px;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-slide {
        flex: 0 0 50%;
    }

    .video-title {
        font-size: 36px;
    }

    .services-grid {
        gap: 3px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .btn-book-mobile {
        display: inline-block;
        margin-left: auto;
        margin-right: 12px;
        padding: 8px 20px;
        font-size: 13px;
    }

    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: var(--color-primary);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
        transform: translateX(100%);
        transition: transform 0.35s;
        z-index: 999;
        overflow-y: auto;
        padding-top: 40px;
    }

    .main-nav.is-open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }

    .nav-list > .menu-item-has-children > a::before {
        display: none;
    }

    .nav-list .sub-menu {
        position: static;
        transform: none;
        min-width: 0;
        background: none;
        border-top: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        padding: 8px 0 0 0;
        text-align: center;
    }

    .nav-list .sub-menu a {
        padding: 6px 0;
        font-size: 15px;
    }

    .nav-list .sub-menu a:hover {
        padding-left: 0;
        color: var(--color-gold);
    }

    .header-inner .btn-book:not(.btn-book-mobile) {
        display: none;
    }

    .mobile-nav-socials {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-top: auto;
        padding: 24px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        width: 100%;
    }

    .mobile-nav-social-icons {
        display: flex;
        gap: 16px;
        justify-content: center;
    }

    .mobile-nav-social-icons .social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        color: var(--color-white);
        transition: opacity 0.3s;
    }

    .mobile-nav-social-icons .social-link--fb {
        background: #1877F2;
    }

    .mobile-nav-social-icons .social-link--yt {
        background: #FF0000;
    }

    .mobile-nav-social-icons .social-link:hover {
        opacity: 0.8;
    }

    .mobile-nav-messengers {
        display: flex;
        gap: 10px;
        justify-content: center;
    }

    .mobile-nav-messengers a {
        color: var(--color-white);
        border: 1px solid rgba(255, 255, 255, 0.4);
        padding: 6px 16px;
        font-size: 14px;
        letter-spacing: 0.5px;
        transition: border-color 0.3s, color 0.3s;
    }

    .mobile-nav-messengers a:hover {
        border-color: var(--color-gold);
        color: var(--color-gold);
    }

    .hero-title {
        font-size: 34px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-accent {
        font-size: 30px;
    }

    .advantages-grid,
    .rooms-grid,
    .services-grid,
    .contacts-grid {
        grid-template-columns: 1fr;
    }

    .gallery-slide {
        flex: 0 0 100%;
    }

    .gallery-slide img {
        height: 260px;
    }

    .lightbox-arrow--prev {
        left: 10px;
    }

    .lightbox-arrow--next {
        right: 10px;
    }

    .video-bg {
        height: 50vh;
        background-attachment: scroll;
    }

    .video-title {
        font-size: 28px;
    }

    .video-play-btn {
        width: 70px;
        height: 70px;
    }

    .about-images {
        min-height: 300px;
    }

    .service-card {
        aspect-ratio: 4/3;
    }

    .services-grid {
        padding: 0 16px;
    }

    .services-section .section-header {
        padding: 0 24px;
    }

    .services-footer {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0 24px;
    }

    .services-footer .footer-line {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .logo-img {
        height: 42px;
    }
}

/* Small mobile */
@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-socials,
    .footer-messengers {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .btn-hero {
        padding: 14px 32px;
    }

    .advantage-card {
        padding: 30px 20px 25px;
    }

    .card-content {
        padding: 24px 20px 20px;
    }
}

/* Touch devices: always show card reveal */
@media (hover: none) {
    .card-reveal {
        grid-template-rows: 1fr;
        margin-top: 14px;
    }

    .card-gradient::after {
        opacity: 0.55;
    }
}
#block-search.block-search--main {
    max-width: 1152px;
    margin: 0 auto;
    border-radius: 50px 50px 0 0;
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 99;
}
#block-search {
    background: #0d0d0d;
}
#block-search .rooms{
    background: #0d0d0d;
}
#block-search.block-search--main {
    max-width: 1152px;
    margin: 0 auto;
    border-radius: 50px 50px 0 0;
    position: absolute;
    bottom: 0;
    width: 100%;
}
/*=== Booking form ===*/
.hero-booking-container {
    padding: 20px 28px 24px;
}

/* === Desktop row === */
.hero-booking {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr auto;
    gap: 12px;
    align-items: end;
}

.hero-booking > div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Labels */
.hero-booking label,
.phone-wrapper label {
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Inputs & Selects */
.hero-booking input[type="date"],
.hero-booking select,
.phone-wrapper input[type="tel"] {
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    color: #e0e0e0;
    height: 44px;
    padding: 0 12px;
    font-size: 14px;

    width: 100%;
    outline: none;
    transition: border-color 0.2s;
}

.hero-booking input[type="date"]:focus,
.hero-booking select:focus,
.phone-wrapper input[type="tel"]:focus {
    border-color: #666;
}

.hero-booking input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.6);
    cursor: pointer;
}

.hero-booking select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
    cursor: pointer;
}

/* Submit button */
.hero-booking .button input[type="submit"],
.hero-booking .button button[type="submit"] {
    background: var(--color-gold);
    color: #fff;
    border: none;
    height: 44px;
    padding: 0 28px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.hero-booking .button input[type="submit"]:hover,
.hero-booking .button button[type="submit"]:hover {
    background: var(--color-primary);
}

/* Phone row */
.phone-wrapper {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-wrapper label {
    flex-direction: row;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    color: #aaa;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    white-space: nowrap;
}

.phone-wrapper input[type="tel"] {
    max-width: 280px;
}

.phone-wrapper p {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
.phone-wrapper input.phone {
    border-radius: 0;
    padding: 12px;
}
.phone-wrapper .wpcf7-not-valid-tip {
    font-size: 12px;
    position: absolute;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    margin: 25px 0 0;
}

/* CF7 overrides */
.hero-booking-container .wpcf7-form-control-wrap {
    display: block;
}

.hero-booking-container .wpcf7-not-valid-tip {
    font-size: 11px;
    color: #e05252;
    margin-top: 4px;
}

.hero-booking-container .wpcf7-response-output {
    margin: 12px 0 0;
    padding: 8px 12px;
    border: 1px solid #e05252;
    color: #e05252;
    font-size: 12px;

}
.wpcf7-response-output {
    position: absolute;
    bottom: -40px;
    background: black;
    /*width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;*/
    margin: 0;
}
.wpcf7-spinner { display: none; }


/* ===== Mobile ===== */
@media (max-width: 767px) {
    .hero-booking-container {
        padding: 20px 16px;
    }

    .hero-booking {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .hero-booking .check-in,
    .hero-booking .check-out {
        grid-column: span 1;
    }

    .hero-booking .adult,
    .hero-booking .children {
        grid-column: span 1;
    }

    .hero-booking .rooms {
        grid-column: span 1;
    }

    .hero-booking .button {
        grid-column: span 1;
        align-self: end;
    }

    .hero-booking label,
    .phone-wrapper label {
        font-size: 11px;
    }

    .hero-booking input[type="date"],
    .hero-booking select,
    .phone-wrapper input[type="tel"] {
        height: 42px;
        font-size: 13px;
    }

    .hero-booking .button input[type="submit"],
    .hero-booking .button button[type="submit"] {
        height: 42px;
        padding: 0 16px;
        font-size: 11px;
        width: 100%;
    }
    .phone-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        margin-top: 10px;
    }
    .phone-wrapper p {
        flex-direction: column;
        align-items: flex-start;
    }
    .phone-wrapper label {
        text-transform: uppercase;
        letter-spacing: 0.04em;
        font-size: 11px;
        font-weight: 500;
    }
    .phone-wrapper label span { display: none;}
    .phone-wrapper input[type="tel"] {
        max-width: 100%;
        width: 100%;
    }
    .wpcf7-response-output { bottom: -95px; }
}

/*=== Booking form END ===*/