/* =================================
   GLOBAL
=================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font-m-plus: "M PLUS 1p", sans-serif;
    --font-italiana: "Italiana", sans-serif;
    --primary-color: #000000;
    --text-color: #333333;
    --text-color-light: #555555;
    --bg-color: #f1ede7;
    --bg-color-light: #f5f5f5;
    --bg-color-overlay: rgba(243, 243, 243, 0.95);
    --accent-color: #8b5cf6;
    --border-color: rgba(0, 0, 0, 0.15);
    --max-width: 1200px;
}

/* WCAG 2.1 */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        animation: none !important;
        transition: none !important;
    }
}

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

/* WCAG 2.1 */
:focus-visible {
    outline: 3px solid #555555;
    outline-offset: 3px;
}

/* ===================================
   BROWSER SPECIFIC CLASSES
=================================== */

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.35) transparent;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.35);
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.55);
}

/* ===================================
   BASE FONT CLASSES
=================================== */

/* Italiana Font */
.font-italiana {
    font-family: var(--font-italiana);
    font-weight: 400;
    font-style: normal;
}

/* Darker Grotesque Base */
.font-darker-grotesque {
    font-family: var(--font-darker-grotesque);
    font-optical-sizing: auto;
    font-style: normal;
    opacity: 0.7;
    letter-spacing: 0.05em;
}

/* Darker Grotesque Weight Variations */
.font-darker-grotesque-thin {
    font-weight: 300;
}

.font-darker-grotesque-regular {
    font-weight: 400;
}

.font-darker-grotesque-medium {
    font-weight: 500;
}

.font-darker-grotesque-semibold {
    font-weight: 600;
}

/* M PLUS 1p Base */
.font-m-plus {
    font-family: var(--font-m-plus);
    font-style: normal;
}

/* M PLUS 1p Weight Variations */
.font-m-plus-thin {
    font-weight: 100;
}

.font-m-plus-light {
    font-weight: 300;
}

.font-m-plus-regular {
    font-weight: 400;
}

.font-m-plus-medium {
    font-weight: 500;
}

.font-m-plus-bold {
    font-weight: 700;
}

/* ===================================
   SEMANTIC FONT CLASSES
=================================== */

/* Primary Headings - Italiana family */
.heading-primary {
    font-family: var(--font-italiana);
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--text-color);
}

.heading-large {
    font-family: var(--font-italiana);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.3;
}

.heading-section {
    font-family: var(--font-italiana);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.heading-subsection {
    font-family: var(--font-italiana);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.3;
}

/* Body Text - M PLUS 1p family */
.text-body {
    font-family: var(--font-m-plus);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.05em;
}

.text-body-large {
    font-family: var(--font-m-plus);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.05em;
}

.text-body-medium {
    font-family: var(--font-m-plus);
    font-size: clamp(0.8rem, 2.2vw, 1rem);
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.05em;
}

.text-body-small {
    font-family: var(--font-m-plus);
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.3;
}

.text-label {
    font-family: var(--font-m-plus);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
}

.text-light {
    font-family: var(--font-m-plus);
    font-weight: 300;
    opacity: 0.7;
    letter-spacing: 0.05em;
}

/* Button Text */
.text-button {
    font-family: var(--font-m-plus);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.1em;
}

.text-button-small {
    font-family: var(--font-m-plus);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
}

/* Hero/Statement Text */
.text-statement {
    font-family: var(--font-italiana);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    letter-spacing: 0.1em;
    text-shadow: 0.4px 0 0 currentColor, -0.4px 0 0 currentColor;
}

/* Navigation Text */
.text-nav {
    font-family: var(--font-m-plus);
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.text-nav-small {
    font-family: var(--font-m-plus);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Footer Text */
.text-footer {
    font-size: 0.9rem;
    color: #f3f3f3;
}

/* Legal/Fine Print */
.text-legal {
    font-family: var(--font-m-plus);
    line-height: 1.7;
    color: #555;
}


/* ===================================
   BASE STYLES
=================================== */

body {
    font-family: var(--font-m-plus);
    font-optical-sizing: auto;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.1em;
    opacity: 0.9;
    background-color: var(--bg-color);
}

/* ===================================
   LAYOUT
=================================== */

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 3vw;
}

h1 {
    font-family: var(--font-italiana);
    letter-spacing: 0.1em;
    color: var(--text-color);
}

h2, h3, h4, button {
    font-family: var(--font-m-plus);
    color: var(--text-color);
    letter-spacing: 0.1em;
    opacity: 0.9;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: opacity 0.3s ease;
    letter-spacing: 0.1em;
}

a:hover {
    opacity: 0.7;
}

/* Header Styles */
.header-wrapper { 
    position: relative; /* establishes a reference for absolutely positioned nav */
    display: inline-block; /* optional, can also be block */
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgb(32, 28, 23, 0); /* modified from black */
    color: white; /* changes from White */
    z-index: 1000;
    transition: 
        background-color 0.4s ease,
        backdrop-filter 0.4s ease,
        padding 0.4s ease;
    backdrop-filter: none;
    padding-top: 1vw;
}

.site-header .header-inner {
    padding: 0vw 0vw;
}

.site-header.menu-open {
    background-color: var(--bg-color-overlay);
}

/* Header becomes solid when scrolling */
.site-header.scrolled {
    background-color: var(--bg-color-overlay); /* nearly solid */
    padding: 1vw; /* NEW smaller height when scrolled */
}

.menu-toggle span.scrolled {
    width: 25px;
    height: 1px;
    background-color: var(--text-color);
    opacity: 0.5;
    margin: 4px 0;
    transition: 0.3s;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4vw 3v; 
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 2rem; /* space between logo and nav */
    width: 100%; /* stretch across the header */
}

.header-logo img {
    height: 50px;
    width: auto;
    margin-left: 2rem; /*NEW pushed logo out from left side of screen */
}

.header-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    height: calc(100vh - 85px);
    padding: 2rem;

    display: flex;
    flex-direction: column;
    gap: 1.5rem;

    background-color: var(--bg-color-overlay);

    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}

.header-nav.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    flex-direction: column;
    align-items: center;
    height: 100vh;
}

.header-nav a {
    font-family: var(--font-m-plus);
    font-size: 1.8rem;
    font-weight: 300;
    white-space: nowrap;
    color: var(--text-color);
}

.language-switcher {
    gap: 0.5rem;
    align-items: center;
    padding-top: 2rem;
}

.language-switcher a.active {
    font-weight: 500;
}

.social-icons {
    gap: 1rem;
    align-items: center;
}

.social-icons svg {
    fill: var(--text-color);
    transition: opacity 0.3s ease;
}

.social-icons a:hover svg {
    opacity: 0.7;
}

.menu-toggle {
    display: flex; /* changed from none */
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 0.7px;
    background-color: #ffffff;
    margin: 4px 0;
    transition:
        transform 0.3s ease,
        opacity 0.2s ease,
        background-color 0.3s ease;
}

.menu-toggle.scrolled span {
    background-color: var(--text-color);
}

.menu-toggle.is-open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
    background-color: #7c7c7c;
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
    background-color: #7c7c7c;

}

.menu-toggle.is-open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
    background-color: #7c7c7c;
}

/* ===================================
   HOME PAGE
=================================== */

/* Fullscreen overlay */
#page-loader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}


/* Hide state of overlay */
#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

#figure {
    position: fixed;
    inset: 0;
    margin: auto;

    width: 6.25em;
    height: 6.25em;
    
    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.95);
    z-index: 10000;
        
    animation: rotate 2.4s linear infinite;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    pointer-events: all;              
}

.white { 
    top: 0; bottom: 0; left: 0; right: 0; 
    background: white; 
    animation: flash 2.4s linear infinite;
    opacity: 0;
}

.dot {
    position: absolute;
    margin: auto;
    width: 2.4em; height: 2.4em;
    border-radius: 100%;
    transition: all 1s ease;
}
.dot:nth-child(2) { top: 0; bottom: 0; left: 0; background: #555146; animation: dotsY 2.4s linear infinite; }
.dot:nth-child(3) { left: 0; right: 0; top: 0; background: #555146; animation: dotsX 2.4s linear infinite; }
.dot:nth-child(4) { top: 0; bottom: 0; right: 0; background: #555146; animation: dotsY 2.4s linear infinite; }
.dot:nth-child(5) { left: 0; right: 0; bottom: 0; background: #555146; animation: dotsX 2.4s linear infinite; }

@keyframes rotate {
    0% { transform: rotate( 0 ); }
    10% { width: 6.250em; height: 6.250em; }
    66% { width: 2.4em; height: 2.4em; }
    100%{ transform: rotate(360deg); width: 6.250em; height: 6.250em; }
}

@keyframes dotsY {
    66% { opacity: .1; width: 2.4em; }
    77%{ opacity: 1; width: 0; }
}

@keyframes dotsX {
    66% { opacity: .1; height: 2.4em;}
    77%{ opacity: 1; height: 0; }
}

@keyframes flash {
    33% { opacity: 0; border-radius: 0%; }
    55%{ opacity: .6; border-radius: 100%; }
    66%{ opacity: 0; }
}

/* =========================
   POPUP OVERLAY
========================= */

.construction-popup {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.35);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

/* When popup is visible */
.construction-popup.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.construction-popup.is-visible .construction-popup-box {
    transform: translateY(0) scale(1);
}

/* =========================
   POPUP BOX
========================= */

.construction-popup-box {
    position: relative;

    display: grid;
    grid-template-columns: 1fr 1fr;

    width: clamp(320px, 90vw, 700px);
    max-height: min(90vh, 400px);

    background-color: rgba(243, 243, 243, 0.96);
    border-radius: 0.2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);

    overflow-y: auto;
    overscroll-behavior: contain;

    transform: translateY(10px) scale(0.98);
    transition: transform 0.8s ease;

    letter-spacing: 0.1em;
}

.construction-popup-box h2 {
    font-family: var(--font-italiana);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 600;
    color: var(--text-color);
    letter-spacing: 0.1em;
    line-height: 1.3;
}

.construction-popup-box p {
    font-family: var(--font-m-plus);
    font-size: clamp(0.9rem, 2.2vw, 1.1rem);
    font-weight: 400;
    opacity: 0.8;
}

.construction-popup-box button {
    font-size: clamp(0.85rem, 2vw, 1rem);
}

/* =========================
   CLOSE BUTTON OF POPUP BOX
========================= */

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;

    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    background: none;
    border: none;
    cursor: pointer;
    color: #333;
    border-radius: 0.2rem;
    opacity: 0.7;
}

.close-btn:hover {
    background-color: #33333394;
    transition: background-color 0.2s ease, color 0.2s ease;
    color: #fff;
}

.close-btn svg {
    width: 20px;
    height: 20px;
}

/* =========================
   POPUP BOX CONTENT
========================= */

.popup-left {
    background-color: #ddd;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
}

.popup-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
}

.construction-popup-heading {
    display: flex;
    align-items: center;
    color: var(--text-color);
}


/* =========================
   POPUP BOX CTA BUTTON
========================= */

.construction-popup-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    padding: 0.4rem 1rem;

    font-family: var(--font-m-plus);
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.05em;
    opacity: 0.8;

    border: 0.6px solid #333;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.construction-popup-btn:hover {
    background-color: #333;
    color: #fff;
}

/* Hero Slideshow */
.hero-slideshow {
    position: relative;
    width: 100%;
    height: 100vh;
    padding: 0;
    margin: 0;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0s ease;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slideshow-bullets {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    z-index: 10;
    padding-bottom: 1rem;
}

/* Bullet row */
.bullets-wrapper {
    display: flex;
    gap: 0.75rem;
}

.bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #ffffff;
    background: transparent;
    cursor: pointer;
    transition: background-color 0.3s ease;
    padding: 0;
}

.video-pause {
    border: 0px #ffffff00;
    background: transparent;
    transition: background-color 0.3s ease;
    padding: 0;
    color: #ffffff;
}

.bullet.active {
    background-color: #ffffff;
}

/* Main Content */
.main-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0vw 0vw;
}

.content-card {
    display: flex;
    gap: 6%;
    align-items: flex-start;
    padding-top: clamp(2rem, 6vw, 4rem);
    padding-bottom: clamp(2rem, 6vw, 4rem);
    padding-left: clamp(1rem, 8vw, 2rem);
    padding-right: clamp(1rem, 8vw, 2rem);
    min-height: 500px; /* increase this as needed */
}

.content-card.reverse {
    flex-direction: row-reverse;
    background-color: var(--bg-color-light);
    padding: clamp(1rem, 2vw, 3rem);
    padding-left: clamp(0.5rem, 4vw, 1.5rem);
    padding-right: clamp(0.5rem, 4vw, 1.5rem);
}

.content-card-reservatons.reverse {
    display: flex;
    flex-wrap: wrap;
}

.card-image {
    flex: 1;
    min-width: 0;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.card-content {
    flex: 1;
    min-width: 0;
    position: sticky;
    top: 75px;
}

.card-content h2 {
    font-family: var(--font-italiana);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    letter-spacing: 0.1em;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.large-text {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 0.4rem 2rem;
    background-color: transparent;
    color: var(--text-color);
    border: 0.5px solid var(--text-color);
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--text-color);
    color: white;
    opacity: 0.7;
}

.btn-primary-header {
    font-family: var(--font-m-plus);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.1em;
    color: #ffffff;
    display: inline-block;
    padding: 0.4rem 2rem;
    background-color: transparent;
    border: 1px solid #ffffff;
    transition: all 0.3s ease;
    margin-right: 2rem;
    margin-left: 2rem;
}

.btn-primary-header.scrolled, .btn-primary-header.scrolled.menu-open, .btn-primary-header.menu-open {
    color: var(--text-color);
    opacity: 0.8;
    border: 1px solid var(--text-color);
}

.btn-primary-header:hover {
    background-color: var(--text-color);
    border-color: rgba(255, 255, 255, 0.696);
    color: rgba(255, 255, 255, 0.696);
}

.btn-primary-header.scrolled.menu-open {
    color: var(--text-color);
    opacity: 0.5;
    border: 1px solid var(--text-color);
}

.spacer {
    height: 8vw;
}

#odd {
    background-color: rgba(255, 255, 255, 0.758);
    display: flex;

}

.statement {
    display: flex;
    flex-direction: column; /* 👈 stack vertically */
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;

    font-family: var(--font-italiana);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #555;
    text-shadow:
        0.4px 0 0 currentColor,
       -0.4px 0 0 currentColor;

    padding-top: clamp(3rem, 5vw, 8rem);
    padding-bottom: clamp(3rem, 5vw, 8rem);
    padding-left: clamp(5rem, 18vw, 30rem);
    padding-right: clamp(5rem, 18vw, 30rem);

    /* Initial hidden state */
    opacity: 0;
    transform: translateX(var(--x-offset)) translateY(40px);

    transition:
        opacity 2.4s ease,
        transform 2.8s cubic-bezier(0.22, 1, 0.36, 1);

    will-change: opacity, transform;
}

.statement p {
    padding-top: 2rem;
}

/* Visible state */
.statement.is-visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

/* Suites section on home page */

.suites_header {
    display: none;
}

.suite-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.content-card-suite {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: flex-start;
    padding-top: clamp(4rem, 8vw, 10rem);
    padding-bottom: clamp(1rem, 1.5vw, 2rem);
    padding-left: clamp(1.5rem, 4vw, 2rem) !important;
    padding-right: clamp(1.5rem, 4vw, 2rem) !important;
    min-height: 100vh;
}

.suite-specs {
    width: 100%;
    max-width: 400px;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 2.5rem;
    padding-top: 2rem;

    position: relative;
}

.suites-intro {
    min-width: 200px;
}

.suite-specs::before {
    content: "";
    position: absolute;
    top: 5%;
    bottom: 5%;
    left: 50%;
    width: 1px;
    background-color: var(--border-color);
    transform: translateX(-50%);
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.spec-item::after {
    content: "";
    position: relative;
    width: 70%;
    left: 50%;
    height: 1.5px;
    background-color: rgba(0, 0, 0, 0.1);
    transform: translateX(-50%);
}

.spec-item:last-child::after, .spec-item:nth-last-child(2)::after {
    content: none;
}

.spec-label {
    font-size: 0.9rem;      /* matches typical body text size */
    font-weight: 700;     /* matches .card-content h2 */
    line-height: 1.2;     /* smoother reading spacing */
    color: #555;
    padding-top: clamp(0.5rem, 1.5vw, 2rem);
    padding-left: clamp(0.5rem, 1.5vw, 2rem);
    padding-right: clamp(0.5rem, 1.5vw, 2rem);
    margin-left: clamp(0.5rem, 1.5vw, 2rem);
    margin-right: clamp(0.5rem, 1.5vw, 2rem);
}

.spec-value {
    font-size: 16px;
    line-height: 1.3;
    padding-bottom: clamp(0.5rem, 1.5vw, 2rem);
    padding-left: clamp(0.5rem, 1.5vw, 2rem);
    padding-right: clamp(0.5rem, 1.5vw, 2rem);
    margin-left: clamp(0.5rem, 1.5vw, 2rem);
    margin-right: clamp(0.5rem, 1.5vw, 2rem);
}

#suites.card-content p {
    padding-bottom: 2rem;
}

.suites-layout {
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 3rem;
    align-items: start;
}

.card-content.suites-layout {
    gap: 1rem;
}

/* Layout container experiences */
.experiences-section {
    display: grid;
    grid-template-columns: 2fr 5fr; 
    gap: 2rem;
    padding: 4rem 2rem;
    background-color: var(--bg-color-light);
    align-items: start;
    min-height: 100vh;  
    height: auto;
}

/* Right column grid */
.experiences-right {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 8vw, 1.5rem);
    min-height: 500px; /* increase this as needed */
    position: sticky;
    top: 75px;
}

/* Each row contains 3 equal tiles */
.experiences-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: clamp(1rem, 8vw, 1.5rem);
}

.full-width-text {
    grid-row: 1;
}

.experiences-row > .tile:not(.full-width-text) {
    grid-row: 2;
}

.experiences-row img {
    min-height: 500px;
}

.experiences-row.four-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

/* Add custom margins for each tile except the last one */
.experiences-row.four-columns .tile:nth-child(1) {
    margin-right: 0rem;
}
.experiences-row.four-columns .tile:nth-child(2) {
    margin-right: 1rem;
}
.experiences-row.four-columns .tile:nth-child(3) {
    margin-right: 0rem;
}

/* Row 4: 2 columns */
.experiences-row.two-columns {
    grid-template-columns: repeat(2, 1fr);
}

/* Full-width text row */
.experiences-row.full-width-text .tile {
    grid-column: 1 / -1; /* span all columns */
}

/* Overlay row container */
.image-overlay-row {
    position: relative;
}

/* Image tiles */
.image-tile {
    position: relative;
    overflow: hidden;
}

.image-tile img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    display: block;
}

/* Shared overlay spanning all columns */
.row-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 2rem;
    color: #ffffff;

    background: linear-gradient(
        to top,
        rgba(50, 50, 50, 0.75),
        rgba(0, 0, 0, 0)
    );

    pointer-events: none;
}

#ro {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(-8px);
}

.experiences-row:hover #ro {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#ro1 {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(-8px);
}

.experiences-row:hover #ro1 {
    opacity: 1;
    visibility: visible;
    max-width: 50%;
    transform: translateY(0);
}

#ro2 {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(-8px);}

.experiences-row:hover #ro2 {
    opacity: 1;
    visibility: visible;
    left: 50%;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(0);
}

/* Text spacing */
.row-overlay h3 {
    margin-bottom: 0.75rem;
}

.row-overlay p {
    max-width: 50ch;
    margin-bottom: 1rem;
}

/* Tile styling */
.tile {
    background: var(--bg-color-light);
    overflow: hidden;
    text-align: left;
}

.tile img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.tile h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.tile p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.3; 
}

.features-list a::before {
    content: "▸";
    color: #f3f3f3;
    line-height: 1.3; 
    margin-right: 0.5rem;
}

/* Hide extra tiles on mobile */
.hide-on-mobile {
    display: block;
}

/* Left column */
.experiences-left {
    background: var(--bg-color-light);
    position: sticky;
    top: 75px;
    align-self: start; 
    padding-bottom: 2rem;
}

.experiences-left h2 {
    line-height: 1.3;  
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--font-italiana);
}

.experiences-left p {
    color: #555;
    font-size: clamp(0.8rem, 2.2vw, 1rem);
    font-family: var(--font-m-plus);
    font-weight: 400;
    line-height: 1.4; 
    padding-bottom: 1rem;
}

.btn-experiences, .btn-about {
    font-family: var(--font-m-plus);
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 2;
    padding-bottom: 0.3rem;
    border-bottom: 0.6px solid var(--text-color);
    color: #555;
}

.btn-experiences:hover, .btn-about:hover {
    opacity: 0.7;
}

/* About Section on home page */
#about-click.content-card {
    min-height: 100vh;  
    height: auto;      
}

#about.card-image {
    position: sticky;    
    top: 75px; 
    min-width: 65%;
}

/* Map Section on home page */
.map-section {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 1rem;
    padding-left: clamp(1rem, 8vw, 3rem);
    background-color: var(--bg-color-light);
    min-height: 100vh; 
}

.map-summary {
    flex: 1 1 0px; 
    color: #555;
    text-align: right;
    display: grid;
    place-items: left;  
    padding-right: clamp(1rem, 8vw, 1rem);
}

.map-summary h2 {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    font-size: 2.5rem;
    font-weight: 600;
    font-family: var(--font-italiana);
    color: var(--text-color);
    letter-spacing: 0.1em;
    line-height: 1.3;
    margin-bottom: 1rem;
    padding-top: clamp(2rem, 16vw, 2rem);
    padding-bottom: clamp(1rem, 8vw, 1rem);
}

.country, .place {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: var(--font-italiana);
    line-height: 1.3;
    letter-spacing: 0.15em;
    color: var(--text-color);
}

.greece {
    font-size: 1.5rem;
    font-weight: 500;
    font-family: var(--font-m-plus);
    line-height: 1.3;
    letter-spacing: 0.05em;
    color: var(--text-color);
    padding-bottom: clamp(1rem, 8vw, 1rem);
}

.lefkada {
    font-size: 2.3rem;
    font-weight: 400;
    font-family: var(--font-m-plus);
    line-height: 1.6;
    color: var(--text-color);
    padding-bottom: clamp(1rem, 8vw, 1rem);
}

.summary {
    font-size: clamp(0.8rem, 2.2vw, 1rem);
    font-family: var(--font-m-plus);
    font-weight: 400;
    color: #555;
    line-height: 1.4;
    line-height: 1.3;
    margin-bottom: 2rem;
    padding-bottom: clamp(1rem, 8vw, 1rem);
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}

.map-container {
  flex: 1 1 536px;
  min-height: 500px;
  position: relative;
  overflow: hidden;
}

/* Footer on all pages */
.site-footer {
    background-color: var(--text-color);
    padding: 4rem 0;
    text-align: center;
}

.footer-content {
    max-width: 55%;
    margin: 0 auto;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo img {
    width: 20%;
    min-width: 150px;
    margin: 0 auto;
}

.footer-links p {
    margin-bottom: 0.75rem;
    color: #f3f3f3;
}

.footer-links a {
    margin: 0 0.5rem;
    color: #f3f3f3;
}

.small-text {
    font-size: 0.9rem;
    color: #f3f3f3;
}

.small-text-header a, .small-text-header span {
    font-size: 0.9rem;
    color: var(--text-color);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.footer-social svg {
    fill: #f3f3f3;
}

/* Navigation arrow */
.scroll-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: rgba(0,0,0,0.5);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.scroll-top-btn.visible {
    opacity: 1;
    pointer-events: auto;
}

/* Cookies popup */
.cookie-consent {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    width: clamp(320px, 90vw, 700px);
    background-color: var(--bg-color);
    border-radius: 0.2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    z-index: 9000;
    transition: all 0.3s ease;
}

.cookie-consent.hidden {
    opacity: 0;
    visibility: hidden;
}

.cookie-consent p {
    font-size: clamp(0.8rem, 2.2vw, 1rem);
    font-weight: 400;
    padding-bottom: 1rem;
    color: var(--text-color);
}

.cookie-header {
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.close-btn-construction {
    position: absolute;
    top: 1rem;
    right: 1rem;

    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    background: none;
    border: none;
    cursor: pointer;
    color: #333;
}

.cookie-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    font-family: var(--font-italiana);
    line-height: 1.3;
    padding-bottom: 1rem;
}

.cookie-header button {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
}

.cookie-section {
    margin-top: 0.75rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    background-color: #3333330c;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
}

.cookie-toggle-btn {
    font-family: var(--font-m-plus);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.6;
    text-align: left;
    width: 100%;
    background: none;
    border: none;
    padding: 0.5rem 0;
    cursor: pointer;
}

.cookie-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.cookie-section-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.cookie-section-content.visible {
    max-height: 500px;
    opacity: 1;
}

.cookie-section-content p {
    font-size: 0.9rem;
}

/* Hide default checkbox but keep it accessible */
.cookie-toggle input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* Toggle track */
.cookie-toggle-ui {
    position: relative;
    width: 42px;
    height: 22px;
    background-color: #ccc;
    border-radius: 999px;
    transition: background-color 0.25s ease;
}

/* Toggle knob */
.cookie-toggle-ui::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    background-color: #fff;
    border-radius: 50%;
    transition: transform 0.25s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Checked state */
.cookie-toggle input:checked + .cookie-toggle-ui {
    background-color: #6fad6d;
}

.cookie-toggle input:checked + .cookie-toggle-ui::before {
    transform: translateX(20px);
}

/* Keyboard focus */
.cookie-toggle input:focus-visible + .cookie-toggle-ui {
    outline: 2px solid #333;
    outline-offset: 2px;
}

.cookie-toggle.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    font-size: 0.8rem;
    font-family: var(--font-m-plus);
    font-weight: 500;
    letter-spacing: .1em;
}

.cookie-toggle.disabled .cookie-toggle-ui {
    background-color: #999;
}

.cookie-section label {
    display: flex;
    align-items: center; 
    justify-content: space-between;
    text-align: right;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.6;
    cursor: pointer;
}

.cookie-toggle-content {
    margin-bottom: 0.5rem;
}

.cookie-toggle-content p {
    font-size: 0.85rem;
}

.cookie-toggle-label {
    opacity: 0.9;
    cursor: not-allowed;
    font-size: 0.8rem;
    font-family: var(--font-m-plus);
    font-weight: 500;
    letter-spacing: .1em;
}

.cookie-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 0.75rem;
}

.cookie-actions button, .cookie-actions a {
    font-family: var(--font-m-plus);
    padding: 0.4rem 0.6rem;
    border: none;
    border-radius: 0.1rem;
    cursor: pointer;
}

#accept-all, #save-preferences, #deny-all, #cookies {
    font-size: 0.9rem;
    font-family: var(--font-m-plus);
    font-weight: 500;
    letter-spacing: .1em;
    color: #333;
    background-color: var(--bg-color);
    line-height: 1.6;
    opacity: 1;
}

#accept-all:hover, #save-preferences:hover, #deny-all:hover, #cookies:hover {
    background-color: #33333394;
    transition: background-color 0.2s ease, color 0.2s ease;
    color: #fff;
}


/* Responsive Styles */
@media screen and (min-width: 1025px){
    .header-nav {
        display: none;
        position: absolute;
        top: 100%; 
        left: 0;
        right: 0;
        height: calc(100vh - 75px);
        background-color: var(--bg-color-overlay); 
        flex-direction: row;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .header-nav.active {
        display: flex;
    }

    .mainheader.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-slideshow {
        margin-top: 0px;
    }

    .content-card {
        flex-direction: row;
        gap: 2rem;
    }

    .content-card.reverse {
        flex-direction: row-reverse;
        gap: 2rem;
        padding: clamp(2rem, 2vw, 4rem);
        padding-left: clamp(0.5rem, 4vw, 1.5rem);
        padding-right: clamp(0.5rem, 4vw, 1.5rem);
    }

    .card-content h2 {
        font-size: 1.5rem;
        margin-top: 1rem;
    }

    .large-text {
        font-size: 1rem;
    }

    .footer-content {
        max-width: 90%;
    }

    .footer-logo img {
        width: 40%;
    }
}

@media screen and (max-width: 1024px) {

    .header-nav {
        background-color: var(--bg-color-overlay); 
    }

    .hero-slideshow {
        height: 60hv;
    }

    .main-content {
        padding: 0vw 0vw;
    }

    .card-content h2 {
        font-size: 1.3rem;
    }

    .content-card,
    .content-card.reverse {
        flex-direction: column;
        gap: 2rem;
    }

    .content-card-suite {
        grid-template-columns: 1fr;
    }

    .content-card-suite-1.slider, .content-card-suite-2.slider, .content-card-suite-3.slider {
        padding-bottom: 3rem;
    }

    .suites-layout {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .slider { 
        grid-template-columns: 1fr !important; 
    }

    .suite-specs {
        max-width: 420px;
    }

    .map-section {
        padding-left: 0rem;
    }

    .experiences-row:hover #ro {
        opacity: 0;
        visibility: hidden;
    }

    .experiences-row:hover #ro1 {
        opacity: 0;
        visibility: hidden;
    }

    .experiences-row:hover #ro2 {
        opacity: 0;
        visibility: hidden;
    }

    .experiences-row {
        grid-template-columns: 1fr;
    }

    .experiences-section {
        grid-template-columns: 3fr 5fr;
        gap: 1rem;
        padding-bottom: 2rem;
        padding-top: 2rem;
        height: auto;
        min-height: auto;
    }

    .hide-on-mobile {
        display: none;
    }

    .experiences-row.four-columns {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .experiences-right {
        gap: clamp(1rem, 8vw, 1.5rem);
        min-height: auto;
    }

    #about-click.content-card {
        height: auto;
        min-height: auto;
    }

    #about.card-image {
        position:static;
    }
}

/* Translation widget */
.language-switcher {
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.language-switcher a {
    text-decoration: none;
    color: var(--text-color);
}

.language-switcher a:hover {
    opacity: 0.6;
}

.language-switcher span {
    color: var(--text-color);
}

/* booking widget on slideshow */
.booking-widget {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    background-color: var(--bg-color-overlay); /* nearly solid */
}

/* Booking fields (left group) */
.booking-fields {
    display: flex;
    flex: 1;
    align-items: center;
    gap: clamp(1rem, 4vw, 2rem);
}

/* Divider */
.divider-line {
    width: 1px;
    height: 50%;
    min-height: 1.5rem;
    background-color: rgba(85, 85, 85, 0.5);
    align-self: center;
}

/* Booking inputs and submit */
.booking-submit,
.booking-field input {
    width: 100%;
    max-width: 15rem;
    height: 4rem;

    font-family: var(--font-m-plus);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.1em;

    color: #333;
    opacity: 0.8;

    background-color: transparent;
    border: none;
}

.booking-submit {
    display: block;
    margin: 0 auto;
    padding: 0.75rem 1rem;

    text-align: center;
    cursor: pointer;

    transition: background-color 0.3s ease;
}

.booking-field input {
    display: inline-block;
    padding: 0.4rem 2rem;

    text-align: center;
    margin-inline: 2rem;

    transition: all 0.3s ease;
}

.booking-field input::placeholder {
    color: #333;
    opacity: 0.8;
}

.booking-field input:hover,
.booking-field input:focus,
.booking-submit:hover {
    background-color: var(--text-color);
    opacity: 0.7;
    color: rgba(255, 255, 255, 0.696);
    outline: none;
}

.booking-field input:hover::placeholder,
.booking-field input:focus::placeholder {
    color: rgba(255, 255, 255, 0.696);
}

/* Flat-pickr modifications */
.flatpickr-calendar {
    border: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    background-color: var(--bg-color-overlay) !important;
}

.flatpickr-months {
    border-bottom: none;
}

.flatpickr-current-month {
    font-weight: 500;
}

.flatpickr-day {
    border-radius: 8px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.flatpickr-day:hover,
.flatpickr-day.inRange:hover {
    background: #f3f3f3;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.inRange,
.flatpickr-day.today.selected,
.flatpickr-day.selected:hover {
    background: #333;
    color: #fff;
}

.flatpickr-day.startRange,
.flatpickr-day.endRange {
    border-radius: 8px;
}

@media (max-width: 640px) {
   .header-logo img {
        height: 50px;
        padding-top: 5px;
        padding-bottom: 5px;
        margin-left: 1rem;
    }

    .btn-primary-header {
        margin-right: 1rem;
    }

    .header-nav a {
        font-size: 1.4rem;
        font-weight: 300;
    }

    .small-text-header a {
        font-size: 0.7rem !important;
    }

    .booking-widget {
        flex-direction: column;
        align-items: center;
        max-height: 10rem;
        gap: 0rem;
    }

    .booking-fields {
        flex-direction: column;
        align-items: center;
        gap: 0rem;
        max-height: 6rem;
    }

    .booking-fields:active {
        background-color: #33333347;
    }

    .booking-field, .booking-submit, .arrivals input, .departures input, .booking-submit input {
        max-height: 3rem;
    }

    .divider-line {
        display: none;
    }

    .booking-divider {
        display: block;
        width: 100%;
        height: 1px;
        background-color: rgba(85, 85, 85, 0.5);
    }

    .construction-popup-box {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: calc(50vh - (min(70vh, 60px) / 2));

        transform: translateY(0);

        width: 100vw;
        max-width: 100vw;
        max-height: 40vh;
        padding-bottom: env(safe-area-inset-bottom);
    }

    #cookie-consent {
        left: 1rem;
        width: auto; /* allow responsive width */
        max-height: 90vh; /* never taller than viewport */
        overflow-y: auto; /* enable scrolling if content is too tall */
        padding: 1rem; /* reduce padding for small screens */
        box-sizing: border-box; /* ensure padding is included in width/height */
    }

    /* Optional: scrollbar styling for mobile */
    #cookie-consent::-webkit-scrollbar {
        width: 6px;
    }

    #cookie-consent::-webkit-scrollbar-thumb {
        background-color: rgba(0,0,0,0.2);
        border-radius: 3px;
    }

    .cookie-toggle input:checked + .cookie-toggle-ui::before {
        transform: translateX(10px);
    }

    .index-container {
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }

    .index-hero-overlay {
        padding-top: 10rem !important;
        text-align: center !important;
        width: 100vw !important;

    }

    .slides {
        max-height: 300px;        
    }

    .suites-layout {
        display: flex;
        flex-direction: column;
        margin-left: 1rem;
        margin-right: 1rem;
    }

    #content-card-suites-index {
        padding-left: 0rem;
        padding-right: 0rem;
    }

    .experiences-section {
        grid-template-columns: 1fr;
        padding-left: 0rem;
        padding-right: 0rem;
    }

    .experiences-left, #suites.card-content {
        position: static; /* IMPORTANT */
        margin-left: 1rem;
        margin-right: 1rem;
    }

    #about-click {
        padding-left: 0rem;
        padding-right: 0rem;
    }

    .card-content {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .image-tile img {
        min-height: 300px;
    }
}

/* ===============================
   SUITES PAGE
================================ */

.suites-hero-image {
    position: absolute;
    inset: 0;
}

.suites-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.suites-container, .index-container {
    position: absolute;
    inset: 0;
    z-index: 2;
    height: 100%;
    width: 100%;
    display: flex;

    align-items: flex-end; 
    justify-content: flex-start; 

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.25),
        rgba(0, 0, 0, 0)
    );
}

.suites-hero-overlay, .index-hero-overlay {
    text-align: left;
    color: #fff;
    padding: 2rem 5rem;
}

.suites-hero-heading, .index-hero-heading {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-bottom: 3rem;
    color: #fff;
}

.suites-hero-scroll, .index-hero-scroll {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    font-weight: 400;
    cursor: pointer;
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.3s ease;
    outline: none;
    padding-bottom: 3rem;
}

.suites-hero-scroll:hover, .index-hero-scroll:hover {
    opacity: 1;
    transform: translateY(3px);
}

.suites-hero-scroll:focus-visible, .index-hero-scroll:focus-visible {
    outline: 1px solid rgba(255,255,255,0.6);
    outline-offset: 6px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

.suites-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.suite-specs-s {
    width: 100%;
    min-width: 300px;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    align-items: start;

    position: relative;
}

.suites-layout-s {
    display: grid;
    flex-direction: column;
    gap: 1rem;
}

.suite-specs-s::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background-color: rgba(0, 0, 0, 0.4);
    transform: translateX(-50%);
}

.suite-specs-s > * {
    min-width: 0;
}

.spec-item-s {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    justify-content: flex-start;
    align-items: start; 
    color: #555;
    min-width: 150px;
}

.spec-item-s::after {
    content: "";
    position: relative;
    width: 80%;
    left: 50%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.4);
    transform: translateX(-50%);
    margin-top: 1rem;
}

.spec-item-s:last-child::after, .spec-item-s:nth-last-child(2)::after {
    content: none;
}

.spec-label-s {
    font-size: 0.9rem; 
    font-weight: 700;   
    line-height: 1.2;  
    color: var(--text-color) !important;
    margin: 0rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.spec-value-s {
    font-size: 0.9rem;
    text-align: left;
    margin: 0rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.content-card-suite-1, 
.content-card-suite-2,
.content-card-suite-3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: flex-start;
    padding-top: clamp(5rem, 1.5vw, 10rem);
    padding-bottom: clamp(1rem, 1.5vw, 2rem);
    padding-left: clamp(1rem, 8vw, 2rem);
    padding-right: clamp(1rem, 8vw, 2rem);
    min-height: 100vh;
}

.slider-suites {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    position: relative;
    gap: clamp(2rem, 3vw, 4rem);
    padding-bottom: clamp(1rem, 4vw, 3rem);
    padding-left: clamp(1rem, 8vw, 2rem);
    padding-right: clamp(1rem, 8vw, 2rem);
}

/* Slider container */
.slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: relative;
    gap: clamp(2rem, 3vw, 4rem);
    padding-bottom: clamp(1rem, 4vw, 3rem);
    padding-left: clamp(1rem, 8vw, 2rem);
    padding-right: clamp(1rem, 8vw, 2rem);
}

.content-card-suite.slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 8vw, 1.5rem);
    padding-top: clamp(4rem, 8vw, 10rem);
    padding-bottom: clamp(2rem, 6vw, 4rem);
    padding-left: clamp(0.5rem, 8vw, 1rem);
    padding-right: clamp(0.5rem, 8vw, 1rem);
    min-height: 100vh;
    align-items: center;      /* vertical centering */
    justify-items: center;    /* horizontal centering */
}

/* Suite cards */
.suite-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    cursor: pointer;
    max-height: clamp(320px, 50vw, 700px);
}

/* Image fills card */
.suite-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

/* Slider overlay */
.suite-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem;
    text-align: center;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.25),
        rgba(0, 0, 0, 0)
    );
    transition: background 0.6s ease;
    pointer-events: none;
}

/* Title */
.suite-overlay h3 {
    font-family: var(--font-italiana);
    letter-spacing: 0.1em;
    font-size: clamp(1.4em, 4.5vw, 2.6em);
    font-weight: 500;
    margin: 0;
    transform: translateY(10px);
    transition: transform 0.6s ease;
    color: #fff !important;
    text-shadow:
        0.4px 0 0 currentColor,
       -0.4px 0 0 currentColor;
}

/* Hidden description */
.suite-overlay p {
    font-size: 1.05rem;
    line-height: 1.4;
    max-width: 80%;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 1s ease, transform 1s ease;
    color: #fff !important;
    padding-top: 1rem;
}

/* Hover reveal */
.suite-card:hover .suite-overlay h3 {
    transform: translateY(0);
}

.suite-card:hover .suite-overlay p {
    opacity: 1;
    transform: translateY(0);
}

/* Slides wrapper */
.slides {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 500px;
    overflow: hidden;
    margin: 0 auto;
}

/* Each slide */
.slide-card {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    transition: opacity 1s ease;
}

.slide-card.active {
    display: block;
}

/* Slide images */
.slide-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; 
    display: block;
    padding-bottom: 2rem;
}

/* Arrows */
.arrow, .arrow.prev, .arrow.next {
    position: absolute;
    top: 50%;                       /* vertically center */
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0);  /* semi-transparent */
    color: var(--bg-color-light);
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 2rem;
    z-index: 20;                     /* above the slides */
    border-radius: 50%;
    transition: background-color 0.3s;
}

.arrow.prev {
    left: 1rem;                      /* distance from left edge of slide */
}

.arrow.next {
    right: 1rem;                     /* distance from right edge of slide */
}

.arrow:hover, .arrow.prev:hover, .arrow.next:hover {
    opacity: 0.7;
}

.suites-features {
    list-style: none;
    padding-left: 0;
    margin: 0 auto;          /* centers the block */
    display: flex;
    justify-content: center;
}

#suites1.card-contents p, #suites2.card-contents p, #suites3.card-contents p {
    margin: 0rem;
    padding-bottom: 1rem;
    position: static;
}

.suites-text h2 {
    font-family: var(--font-italiana);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-top: 0rem;
    padding-bottom: 1rem;
}

.suites-text h3 {
    color: var(--text-color);
    font-family: var(--font-italiana);
    font-size: clamp(1rem, 4vw, 1.2rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-top: 0rem;
    padding-bottom: 1rem;
}

.suites-text p {
    font-size: 0.9rem;
}

.card-content p {
    font-size: clamp(0.8rem, 2.2vw, 1rem);
    font-weight: 400;
    line-height: 1.4;   /* tighter */
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    padding-bottom: 2rem;
}

.card-contents.suites-layout {
    gap: 1rem;
}

/* Slide loader over suites page images */
.slider-loader {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.slider-loader.hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.btn-suites-s {
    display: inline-block;
    width: fit-content;
    font-size: 1rem;
    font-weight: 500;
    line-height: 2;
    padding-top: 1rem;
    padding-bottom: 0.3rem;
    border-bottom: 0.6px solid var(--text-color);
    color: #555;
}

.suites-tabs {
    display: grid;
    grid-template-columns:
        clamp(140px, 16vw, 200px)
        minmax(0, 1fr);
    gap: clamp(0.75rem, 2vw, 1rem);
    align-items: start;
    width: 100%;
}

.suites-tabs nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    padding-top: clamp(5rem, 1.5vw, 10rem);
    padding-left: clamp(1.5rem, 4vw, 2rem) !important;
    padding-right: clamp(1.5rem, 4vw, 2rem) !important;
}

.suites-tabs button {
    font-family: var(--font-italiana);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    padding-bottom: 0.3rem;
    opacity: 0.5;
}

.suite-tab {
    background: none;
    border: none;
    text-align: left;
    letter-spacing: 0.12em;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s ease;
    width: fit-content;
    display: inline-block;
}

.suite-tab.active {
    font-weight: bold;
    opacity: 1;
    border-bottom: 0.6px solid #333333ad;
}

.suites-tabs-content {
    position: relative;
}

.suites-tabs-content::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3rem;
    bottom: 3rem;
    width: 0.2px;
    background-color: #333333c5;
}

.suite-panel {
    display: none;
}

/* Active panel */
.suite-panel.active {
    display: grid;
}

/* Default: always show text on touch devices */
@media (hover: none) {
    .suite-overlay p {
        opacity: 1;
        transform: none;
    }
}

/* Hover devices: animate on hover */
@media (hover: hover) {
    .suite-tab:hover {
        opacity: 1;
    }
    
    .suite-overlay p {
        opacity: 0;
        transform: translateY(12px);
    }

    .suite-card:hover .suite-overlay p {
        opacity: 1;
        transform: translateY(0);
    }

    .suite-card:hover .suite-overlay h3 {
        transform: translateY(-4px);
    }
}

@media screen and (max-width: 1500px) {
    .content-card-suite-1, .content-card-suite-2, .content-card-suite-3 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-card-suite-1, .content-card-suite-2, .content-card-suite-3 > * {
        width: 100%
    }

    .content-card-suite.slider {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .suite-card {
        width: 100%;
        aspect-ratio: 16 / 10;
    }

    /* Make text visible without hover on touch devices */
    .suite-overlay p {
        content-visibility: hidden;
    }
}

@media (max-width: 900px) {

    .suite-overlay h3 {
        letter-spacing: 0.03em;
    }

    .suites-tabs {
        grid-template-columns: 1fr;
    }

    /* Hide left column (tabs) */
    .suites-tabs nav {
        display: none;
    }

    /* Stack content vertically */
    .suites-tabs-content {
        display: block;
    }

    /* Show all suite panels */
    .suite-panel {
        display: block !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    /* Remove active-only logic */
    .suite-panel:not(.active) {
        display: block;
    }

    .btn-suites-s {
        margin-left:8px;
    }
}

@media (max-width: 1024px) {

    .suite-tab {
        background: none;
        border: none;
        text-align: left;
        font-family: var(--font-italiana);
        font-size: 1.2rem;
        letter-spacing: 0.12em;
        color: #777;
        cursor: pointer;
        padding: 0;
        transition: color 0.3s ease;
    }

    .suite-tab.active {
        color: #111;
    }

    /* Right column */
    .suites-tabs-content {
        position: relative;
    }

    /* Override your existing grid stacking */
    .content-card-suite-1,
    .content-card-suite-2,
    .content-card-suite-3 {
        min-height: auto;
    }
}

@media (min-width: 640px) {
    .suites-content-grid {
        grid-template-columns: 2fr 1fr;
        align-items: start;
    }

    .suites-content-grid > .suites-features {
        justify-self: center; 
        text-align: center;
    }
}


#about-card-content {
    position: sticky;  
    top: 100px; 
}

#about-card-image {
    position: sticky; 
    top: 100px;
    opacity: 0.8;
}

/* ===============================
   CONTACT PAGE
================================ */

.contact-page {
    background-color: var(--bg-color-light);
    padding: clamp(3rem, 8vw, 6rem) 0;
}

.contact-section {
    max-width: 1100px;
    margin: 0 auto;
    grid-template-columns: 1fr;
    padding: 0 clamp(1rem, 6vw, 10rem);
    padding-top: clamp(1rem, 6vw, 10rem);
    padding-bottom: clamp(1rem, 6vw, 10rem);
}

@media (max-width: 900px) {
    .contact-section {
        grid-template-columns: 1fr;
    }
}

.contact-header {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* Intro text */
.contact-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.contact-intro .summary {
    font-size: 1.1rem;
    line-height: 1.4;
    color: #444;
}

/* Form */
.contact-form {
    background-color: #ffffff;
    padding: clamp(2rem, 5vw, 3rem);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-field label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #444;
}

.form-field input,
.form-field textarea {
    font-size: 1rem;
    padding: 0.7rem 0.9rem;
    border: 1px solid #ccc;
    background-color: #fff;
    transition: border-color 0.25s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #726659;
}

/* Button */
.contact-submit {
    margin-top: 1rem;
    align-self: flex-start;
    background-color: rgba(50, 42, 30, 0.97);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 0.75rem 2rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-submit:hover {
    background-color: #555146;
}

/* Flash messages */
.alert {
    padding: 0.75rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

.alert.success {
    background-color: #e6f4ea;
    color: #31864f;
}

.alert.error {
    background-color: #fdecea;
    color: #b43221;
}

/* ===============================
   ABOUT PAGE
================================ */

.large-text-about {
    font-size: 1.1rem;
    line-height: 1.3;
    padding-bottom: 0rem !important;
    color: var(--text-color);
}

/* Mobile first: stack image and text */
#suites-click.content-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
}

#about-card-image {
    flex: 1;
    margin-top: 75px;
    min-height: 700px;
}

#about-card-content {
    flex: 1;
    position: relative;
}

/* Desktop: side by side */
@media (min-width: 768px) {
    #suites-click.content-card {
        flex-direction: row;
        align-items: flex-start;
        gap: 2rem;
        min-height: 100vh;
    }
}

@media (max-width: 768px) {
    #about-card-image {
        min-height: auto !important; 
        top: 0 !important
    }

    #about-card-content {
        top: 0 !important
    }
}

/* Remove fixed positioning */
#about-card-image {
    position: static;
}

/* ===============================
   LEGAL & SUSTAINABILITY PAGE
================================ */

.legal-page, .sustainability-page, .cookies-page {
    width: 100%;
}

.legal-content, .sustainability-content, .cookies-content {
    max-width: 1025px;
    margin: 0 auto;
    padding-left: clamp(0.5rem, 2vw, 1rem);
    padding-right: clamp(0.5rem, 2vw, 1rem);
}

.legal-content h2, .sustainability-content h2, .cookies-content h2 {
    padding-top: clamp(6rem, 8vw, 10rem);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
}

.legal-content h3, .sustainability-content h3, .cookies-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h4, .sustainability-content h4, .cookies-content h4 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-content p,
.legal-content li,
.sustainability-content p,
.sustainability-content li,
.cookies-content p,
.cookies-content li {
    line-height: 1.7;
    color: #555;
    padding-bottom: 1rem;
}

.legal-content li, .sustainability-content li, .cookies-content li {
    line-height: 1 !important;
}

.legal-content ul, .sustainability-content ul, .cookies-content ul {
    padding-left: 1.2rem;
    margin-bottom: 1.5rem;
}

.legal-footer, .sustainability-footer, .cookies-footer {
    font-style: italic;
}