/*
 * ==============================================================================
 * BASE & UTILITIES
 * ==============================================================================
 */
:root {
    --primary-font: 'Montserrat', sans-serif;
    --heading-font: 'Source Serif 4', sans-serif;

    /* Colors */
    --color-white: #ffffff;
    --color-light-gray: #ebebeb;
    --color-stone-dark: #23201f; /* Santorini Stone */
    --color-stone-hover: #2c302f;
    --color-overlay: rgba(0, 0, 0, 0.3);
    --color-text-dark: #333;
    --color-text-muted: #555;
    --color-text-light-gray: #aaa;
    --color-text-gray: #888;
    --color-border-light: rgba(255, 255, 255, 0.1);
    --color-border-dark: rgba(0, 0, 0, 0.1);
    --color-light-bg: #f9f9f9;
    --color-warm-bg: #f5f4f3;
}

/* Global Reset & Base Styles (Mobile First) */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--primary-font);
    overflow-x: hidden;
    color: var(--color-text-dark);
    background-color: var(--color-light-bg);
}

main {
    width: 100%;
}

/* Typography Base */
h1, h2, h3 {
    margin: 0 0 20px 0;
    font-family: var(--heading-font);
    line-height: 1.2;
}

h1 {
    font-size: 1.5rem;
    color: var(--color-white);
    letter-spacing: 6px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

h2 {
    font-size: 1.5rem;
    color: var(--color-stone-dark);
    letter-spacing: 2px;
    font-weight: 400;
}

h3 {
    font-size: 1.2rem;
    color: var(--color-light-bg);
}

p {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    font-weight: 300;
}

.subtitle {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 3px;
    opacity: 0.9;
    text-align: center;
    color: var(--color-white);
}

.btn {
    display: inline-block;
    background-color: var(--color-stone-dark);
    border: 1px solid var(--color-stone-dark);
    color: var(--color-white);
    padding: 15px 20px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    min-width: 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--color-stone-hover);
    border-color: var(--color-stone-hover);
    box-shadow: none;
}

.btn-large {
    padding: 15px 40px;
    font-size: 0.9rem;
}

/* Animations & Utilities */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.animate-on-scroll {
    opacity: 0;
    transition: opacity 1.5s ease, transform 1.5s ease;
}

.fade-in-up {
    transform: translateY(50px);
}
.fade-in-left {
    transform: translateX(-50px);
}
.fade-in-right {
    transform: translateX(50px);
}

.visible {
    opacity: 1;
    transform: translateX(0);
}

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

@media (min-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.2rem;
        margin-bottom:40px;
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 4rem;
    }

    .btn {
        padding: 15px 35px;
        font-size: 0.8rem;
        min-width: 120px;
    }
}

/*
 * ==============================================================================
 * HEADER & NAVIGATION
 * ==============================================================================
 */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 30px 20px;
    box-sizing: border-box;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-bottom: 1px solid var(--color-border-light);
    transition: all 0.4s ease;
    flex-direction: row;
}

header.scrolled {
    background: var(--color-light-bg);
    border-bottom: 1px solid var(--color-border-dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header.scrolled .logo-white { display: none; }
header.scrolled .logo-dark { display: block; }
header.scrolled .burger-toggle span { background-color: var(--color-stone-dark); }
header.scrolled nav ul li a { color: var(--color-stone-dark); }

header.scrolled .btn {
    background-color: var(--color-stone-dark);
    color: var(--color-white);
    border: 1px solid var(--color-stone-dark);
}

header.scrolled .btn:hover {
    background-color: var(--color-white);
    color: var(--color-stone-dark);
}

.logo {
    order: 2;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1002;
    margin-right: 0;
}

.logo img {
    height: 70px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo-dark {
    display: none;
}

.burger-toggle {
    display: block;
    order: 1;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
    width: 30px;
    height: 30px;
    position: relative;
}

.burger-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--color-white);
    margin: 5px auto;
    transition: all 0.3s ease;
}

.mobile-book-now {
    display: inline-block;
    order: 3;
    padding: 10px;
    font-size: 0.7rem;
    min-width: auto;
    z-index: 1002;
    background-color: var(--color-light-bg);
    color: var(--color-stone-dark);
    border: 1px solid var(--color-stone-dark);
}

nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s linear 0.4s;
    z-index: 1000;
    padding-top: 80px;
    visibility: hidden;
}

nav.nav-open {
    left: 0;
    visibility: visible;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body.menu-open {
    overflow: hidden;
}

nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0;
    margin: 0;
}

nav ul li a {
    color: var(--color-stone-dark);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--color-stone-dark);
    transition: width 0.3s ease;
}

nav .locale-switcher {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

nav .locale-switcher li:first-child::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 12px;
    background-color: currentColor;
    opacity: 0.3;
    margin-left: 10px;
    vertical-align: middle;
}

nav .book-now {
    display: none;
}

.book-text-short {
    display: inline;
}

.book-text-long {
    display: none;
}

@media (min-width: 425px) {
    .book-text-short {
        display: none;
    }

    .book-text-long {
        display: inline;
    }
}

.menu-open .logo-white { display: none; }
.menu-open .logo-dark { display: block; }
.menu-open .burger-toggle span {
    background-color: var(--color-stone-dark);
}

@media (min-width: 768px) {
    header {
        padding: 30px 40px;
    }
}

@media (min-width: 1024px) {
    .burger-toggle,
    .mobile-book-now {
        display: none;
    }

    .logo {
        margin-right: 40px;
        order: initial;
        position: initial;
        transform: none;
    }

    .logo img {
        height: 80px;
    }

    nav {
        position: initial;
        top: initial;
        left: initial;
        height: initial;
        background-color: initial;
        flex-direction: row;
        justify-content: space-between;
        padding-top: 0;
        visibility: visible;
        width: 100%;
    }

    nav ul {
        flex-direction: row;
        gap: 20px;
        align-items: center;
    }

    nav ul li a {
        color: var(--color-white);
        font-size: 0.6rem;
        font-weight: 400;
    }

    nav ul li a::after {
        background-color: var(--color-white);
    }

    nav ul li a:hover {
        opacity: 1;
        text-shadow: 0 0 10px rgba(255,255,255,0.5);
    }

    nav ul li a:hover::after {
        width: 100%;
    }

    nav .locale-switcher {
        margin-top: 0px;
    }

    nav .book-now {
        display: block;
        margin-left: 20px;
    }

    nav .book-now .btn {
        font-size: 0.6rem;
        padding: 15px 25px;
    }

    header.scrolled nav ul li a {
        color: var(--color-stone-dark);
    }
    header.scrolled nav ul li a::after {
        background-color: var(--color-stone-dark);
    }

    .footer-content {
        grid-template-columns: 1fr 1.5fr 1fr 1fr;
    }
}

@media (min-width: 1200px) {
    .logo {
        margin-right: 80px;
    }
    .logo img {
        height: 100px;
    }
    nav ul {
        gap: 40px;
    }
    nav ul li a {
        font-size: 0.8rem;
    }
    nav .book-now .btn {
        font-size: 0.8rem;
        padding: 15px 35px;
    }
}

/*
 * ==============================================================================
 * Split Screen Section
 * ==============================================================================
 */
 .undermenu {
    height: 95px;
    background-color: var(--color-stone-dark);
 }

.destinations-wrapper {
    display: flex;
    height: 100vh;
    width: 100%;
    flex-direction: column;
}

.destination {
    width: 100%;
    height: 50vh;
    flex: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.destination:first-child {
    padding-top: 95px;
}

@media (min-width: 768px) {
    .destination:hover {
        flex: none;
    }
}

.destination-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.destination-content h2 {
    color: var(--color-white);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: background 0.5s;
}

.destination:hover .overlay {
    background: var(--color-border-dark);
}

.destination-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

#santorini {
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('https://images.unsplash.com/photo-1570077188670-e3a8d69ac5ff?q=80&w=2938&auto=format&fit=crop') center/cover no-repeat;
}

#lagonisi {
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=2946&auto=format&fit=crop') center/cover no-repeat;
}

@media (min-width: 768px) {
    .destination:first-child {
        padding-top: 0;
    }

    .undermenu {
        display: none;
    }

    .destinations-wrapper {
        flex-direction: row;
    }

    .destination {
        flex: 1;
        height: 100%;
        transition: flex 0.8s ease;
    }

    .destination:hover {
        flex: 1.3;
    }
}

/*
 * ==============================================================================
 * Full Height Hero Section
 * ==============================================================================
 */
.hero-full-height {
    width: 100%;
    height: 100vh;
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1570077188670-e3a8d69ac5ff?q=80&w=2938&auto=format&fit=crop') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    padding: 60px 20px;
    text-align: center;
    max-width: 800px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.3s;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--color-white);
    margin: 0;
    letter-spacing: 4px;
    font-weight: 300;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-overlay {
        padding: 60px 40px;
    }
}

/*
 * ==============================================================================
 * Centered Content Section
 * ==============================================================================
 */
.centered-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.centered-intro h2 {
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .centered-intro {
        padding: 60px 40px;
    }
}

@media (min-width: 1024px) {
    .centered-intro {
        margin-bottom: 60px;
    }
}

/*
 * ==============================================================================
 * Content Section
 * ==============================================================================
 */
.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.content-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.text-block {
    flex: 1;
}

.text-block p {
    margin-bottom: 30px;
}

.text-block h2 {
    font-size: 24px;
}

.image-block {
    flex: 1;
    height: 400px;
    border-radius: 4px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.image-block:hover {
    transform: scale(1.02);
    filter: brightness(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (min-width: 768px) {
    .content-section {
        padding: 80px 40px;
    }
}

@media (min-width: 1024px) {
    .content-section {
        gap: 80px;
    }

    .content-row {
        flex-direction: row;
    }

    .content-row:nth-child(even) {
    flex-direction: row-reverse;
    }
}

/*
 * ==============================================================================
 * FOOTER
 * ==============================================================================
 */
footer {
    background-color: var(--color-stone-dark);
    color: var(--color-light-bg);
    padding: 60px 20px 20px;
    margin-top: 0;
    font-size: 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto 40px;
}

.footer-logo {
    display: block;
    text-align: center;
    margin-bottom: 60px;
}

.footer-logo img {
    height: 120px;
    width: auto;
}

.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.contact-hotel h4 {
    margin-bottom: 10px;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-hotel p,
.footer-links a {
    margin: 5px 0;
    color: var(--color-text-light-gray);
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.6rem;
}

.footer-section a {
    color: var(--color-text-light-gray);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-section a:hover {
    color: white;
    transform: translateY(-2px);
}

.social-section {
    margin-top: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 24px;
    height: 24px;
    fill: var(--color-text-light-gray);
    transition: fill 0.3s ease, transform 0.3s ease;
}

.social-links a:hover .social-icon {
    fill: white;
    transform: translateY(-2px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--color-text-light-gray);
    font-size: 0.8rem;
}

@media (min-width: 600px) {
    .grid {
        grid-template-columns: 1fr 1fr;
    }
    .social-section {
        margin-top: 0px;
    }
}

@media (min-width: 768px) {
    footer {
        padding: 60px 40px 20px;
    }
}

@media (min-width: 1024px) {
    .footer-logo img {
        height: 150px;
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}
/**
 * =============================================================================
 * Newsletter Section
 * =============================================================================
 */
.newsletter-section {
    background-color: var(--color-warm-bg);
    padding: 80px 20px;
    text-align: center;
    color: var(--color-stone-dark);
}

.newsletter-content {
    max-width: 1000px;
    margin: 0 auto;
}

.newsletter-description {
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.form-group {
    flex: 1;
    width: 100%;
    max-width: 100%;
}

.newsletter-form input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    background-color: #eee9e6;
    font-family: var(--primary-font);
    font-size: 0.9rem;
    color: var(--color-stone-dark);
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    background-color: white;
    border-color: var(--color-stone-dark);
}

.newsletter-btn {
    background-color: transparent;
    color: var(--color-stone-dark);
    border: 1px solid var(--color-stone-dark);
    min-width: auto;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
}

.newsletter-btn:hover {
    background-color: var(--color-stone-dark);
    color: white;
}

.newsletter-disclaimer {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-disclaimer strong {
    color: var(--color-stone-dark);
    font-weight: 600;
}

@media (min-width: 768px) {
    .newsletter-section {
        padding: 80px 40px;
    }

    .newsletter-form {
        flex-direction: row;
        align-items: center;
    }

    .newsletter-btn {
        width: auto;
        padding: 15px 40px;
    }
}

/**
 * =============================================================================
 * Suite Blocks Design
 * =============================================================================
 */
.suite-row {
    margin-bottom: 80px;
}

.suite-row .text-block {
    margin-bottom: 40px;
    max-width: 800px;
}

.suites-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.suite-card {
    background-color: var(--color-warm-bg);
}

.suite-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.suite-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.suite-card:hover .suite-image img {
    transform: scale(1.05);
}

.suite-details {
    padding: 25px;
}

.suite-details h3 {
    color: var(--color-stone-dark);
    font-weight: 400;
}

.suite-info-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 15px;
    margin-top: 15px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.suite-info-item {
    display: flex;
    flex: 0 0 calc(50% - 10px);
    gap: 5px;
}

.suite-info-label {
    color: var(--color-text-muted);
}

.suite-info-value {
    color: var(--color-stone-dark);
    font-weight: 500;
}

@media (min-width: 768px) {
    .suites-block {
        grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    }

    .suite-image {
        height: 400px;
    }

    .suite-info-row {
        flex-wrap: nowrap;
        gap: 0px;
    }

    .suite-info-item {
        flex: auto;
    }
}

.suite-card-link {
    text-decoration: none;
}

.suite-card-link .suite-card {
    cursor: pointer;
}

/**
 * =============================================================================
 * Suite Detail Page Styles
 * =============================================================================
 */

.suite-content {
    padding: 0 20px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.suite-image-large {
    height: 300px;
    margin: 40px 0;
    width: 100%;
    object-fit: cover;
}

.suite-text-section {
    text-align: center;
    margin: 20px auto;
    max-width: 700px;
}

.suite-text-section h2 {
    margin-bottom: 30px;
}

.suite-text-section p {
    margin-bottom: 20px;
}

.suite-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
    margin: 60px 0;
    text-align: center;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    stroke: var(--color-text-muted);
    stroke-width: 1.5;
}

.feature-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-muted);
    font-weight: 400;
}

.features-summary {
    font-size: 0.8rem;
    text-align: center;
    font-style: italic;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .suite-content {
        padding: 0 40px 100px;
    }

    .suite-image-large {
        height: 500px;
        margin: 80px 0;
    }

    .suite-text-section {
        margin: 80px auto;
    }

    .suite-features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 60px 40px;
    }
}

/**
 * =============================================================================
 * Suite Photo Carousel
 * =============================================================================
 */
.suite-carousel {
    position: relative;
    width: 100%;
    height: 300px;
    margin: 40px 0;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
}

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

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.suite-carousel:hover .carousel-nav {
    opacity: 1;
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 1);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-nav svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-stone-dark);
    stroke-width: 2;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: rgba(255, 255, 255, 1);
    width: 10px;
    height: 10px;
}

.carousel-counter {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    z-index: 10;
}

@media (min-width: 768px) {
    .suite-carousel {
        height: 500px;
        margin: 80px 0;
    }

    .carousel-nav {
        width: 50px;
        height: 50px;
    }

    .carousel-prev {
        left: 20px;
    }

    .carousel-next {
        right: 20px;
    }
}

/**
 * =============================================================================
 * Booking CTA Section
 * =============================================================================
 */
.booking-cta {
    text-align: center;
    padding: 80px 20px;
    background-color: var(--color-stone-dark);
}

.booking-cta h2 {
    margin-bottom: 15px;
    color: white;
}

.booking-cta p {
    font-size: 1rem;
    margin-bottom: 30px;
    color: var(--color-text-light-gray);
    opacity: 0.9;
}

.booking-cta .btn {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.booking-cta .btn:hover {
    background-color: white;
    color: var(--color-stone-dark);
}

/**
 * =============================================================================
 * Editorial Layout
 * =============================================================================
 */
.editorial-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 100vh;
    margin-top: 40px;
}

.sticky-image-container {
    position: relative;
    height: 100%;
}

.sticky-image {
    position: relative;
    height: 60vh;
    top: 0;
    width: 100%;
    object-fit: cover;
}

.scrolling-content {
    padding: 60px 20px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.editorial-section {
    max-width: 600px;
}

.editorial-section h2 {
    margin-bottom: 30px;
    font-weight: 300;
}

.editorial-section p {
    margin-bottom: 20px;
}

.editorial-divider {
    width: 140px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.15);
    margin: 60px 0;
}

.pull-quote {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    line-height: 1.5;
    color: var(--color-text-gray);
    font-style: italic;
    font-weight: 300;
    margin: 40px 0;
    padding-left: 40px;
    border-left: 3px solid var(--color-stone-dark);
}

.image-caption {
    position: absolute;
    bottom: 30px;
    left: 30px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
}

@media (min-width: 768px) {
    .editorial-layout {
        grid-template-columns: 1fr 1fr;
    }

    .sticky-image {
        position: sticky;
        height: 100vh;
    }

    .scrolling-content {
        padding: 60px 40px;
    }
}

/**
 * =============================================================================
 * Services Grid
 * =============================================================================
 */
.services-grid-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.service-card {
    text-align: center;
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    margin-bottom: 20px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card h3 {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--color-stone-dark);
    font-weight: 400;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

@media (min-width: 768px) {
    .services-grid-container {
        padding: 0 40px;
        margin: 60px auto;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .service-image {
        height: 220px;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

.service-card {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.service-card.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delay for service cards */
.service-card:nth-child(1) { transition-delay: 0s; }
.service-card:nth-child(2) { transition-delay: 0.1s; }
.service-card:nth-child(3) { transition-delay: 0.2s; }
.service-card:nth-child(4) { transition-delay: 0.3s; }
.service-card:nth-child(5) { transition-delay: 0.4s; }
.service-card:nth-child(6) { transition-delay: 0.5s; }


/**
 * =============================================================================
 * Homepage Checkerboard
 * =============================================================================
 */
.homepage-checkerboard {
    padding: 40px 20px;
    max-width: 1400px;
    margin: 40px auto;
    overflow: hidden;
}

.checker-part-1 {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 80px;
}

.checker-part-1 .text-content {
    order: 1;
}

.checker-part-1 .dual-images {
    order: 2;
    display: flex;
    gap: 15px;
    height: 400px;
}

.dual-images .image-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.dual-images .image-1 {
    margin-top: -20px;
}

.dual-images .image-2 {
    margin-top: 20px;
}

.dual-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.checker-part-2 {
    display: flex;
    flex-direction: column-reverse;
    gap: 60px;
}

.checker-part-2 .single-image {
    order: 1;
    position: relative;
    overflow: hidden;
    height: 400px;
    will-change: transform;
}

.checker-part-2 .text-content {
    order: 2;
}

.checker-part-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.homepage-checkerboard .text-content {
    will-change: transform;
}

.homepage-checkerboard h2 {
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .homepage-checkerboard {
        padding: 80px 40px;
        margin: 80px auto;
    }

    .checker-part-1,
    .checker-part-2 {
        margin-bottom: 120px;
    }

    .checker-part-1 .dual-images {
        height: 500px;
        gap: 20px;
    }

    .dual-images .image-1 {
        margin-top: 60px;
    }

    .dual-images .image-2 {
        margin-top: -60px;
    }

    .checker-part-2 .single-image {
        height: 500px;
    }

    .homepage-checkerboard h2 {
        margin-bottom: 30px;
    }
}

@media (min-width: 1024px) {
    .checker-part-1 {
        flex-direction: row;
        align-items: center;
        gap: 80px;
        margin-bottom: 180px;
    }

    .checker-part-1 .text-content {
        flex: 0 0 40%;
        max-width: 500px;
        order: 1;
    }

    .checker-part-1 .dual-images {
        flex: 0 0 55%;
        height: 700px;
        gap: 30px;
        order: 2;
    }

    .dual-images .image-1 {
        margin-top: 100px;
    }

    .dual-images .image-2 {
        margin-top: -100px;
    }

    .checker-part-2 {
        flex-direction: row;
        align-items: center;
        gap: 80px;
    }

    .checker-part-2 .single-image {
        flex: 0 0 55%;
        height: 600px;
        order: 1;
    }

    .checker-part-2 .text-content {
        flex: 0 0 40%;
        max-width: 500px;
        order: 2;
    }

    .homepage-checkerboard h2 {
        margin-bottom: 40px;
    }
}

/**
 * =============================================================================
 * Full Width Banner
 * =============================================================================
 */
.full-width-banner {
    height: 90vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-align: center;
    margin-top: 60px;
}

.full-width-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.banner-content h2 {
    color: var(--color-white);
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: -1px;
}
