/* ============================================================
   style.css — Unified stylesheet
   Sections:
   01. Font Face
   02. Reset & CSS Variables
   03. Typography
   04. Header
   05. Slide Menu
   06. Slide Menu — Submenu (Accordion)
   07. Hero Video
   08. Page Hero
   09. Philosophy Section
   10. Features Section
   11. Gallery Grid
   12. Houses Page
   13. Activities Section (grid)
   14. Activities Carousel
   15. Carousel — Shared Arrows & Dots
   16. Activities Page Main
   17. Activity Detail Pages
   18. Alternating Sections (activities & our-story)
   19. Activities Note
   20. Our Story Page
   21. CTA Section
   22. Buttons
   23. Page Intro
   24. FAQ Sections
   25. Footer
   26. Book Page
   27. WhatsApp Notice & Button
   28. Benefits Section
   29. FAQ Mini
   30. Offers Page
   31. Gallery Carousel (single-slide)
   32. Houses Carousel (single-slide)
   33. Activities Carousel — 2-per-view
   34. Kidoni Specific Styles
   35. Responsive Breakpoints
   36. Utilities & Performance
   ============================================================ */


/* ============================================================
   01. FONT FACE
   ============================================================ */

/* Utility classes for alignment */
.text-center {
    text-align: center;
}

@font-face {
    font-family: 'Water Lemon';
    src: url('../fonts/Lekha.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PlaypenSans';
    src: url('../fonts/Lekha.otf') format('opentype');
    font-weight: 100 800;
    font-style: normal;
    font-display: swap;
}


/* ============================================================
   02. RESET & CSS VARIABLES
   ============================================================ */

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

/* FIX: prevent horizontal overflow on all screen sizes */
html, body {
    overflow-x: hidden;
    /* Smooth scrolling everywhere */
    scroll-behavior: smooth;
}

:root {
    /* Colours */
    --primary-bg:         #EEE7DD;
    --secondary-bg:       #CEB298;
    --accent-terracotta:  #9F6C52;
    --accent-cool:        #A7B9C6;
    --text-dark:          #2e2e2e;
    --white-bg:           #FFFFFF;
    --border-light:       rgba(159, 108, 82, 0.15);  /* used by Kidoni styles */

    /* Shadows */
    --shadow-sm:  0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-md:  0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg:  0 20px 40px rgba(159, 108, 82, 0.2);

    /* Misc */
    --transition:     all 0.3s ease;
    --border-radius:  30px;
    --section-spacing: 6rem;
}

body {
    background-color:     var(--white-bg);
}

.white-bg-section {
    background-color: var(--white-bg);
    position: relative;
    z-index: 2;
    padding-top: 1px;
}

/* Stack all major sections above the background image */
.hero, .page-hero, .philosophy-section, .features-section, .gallery-section,
.rooms-section, .activities-section, .instagram-section,
.cta-section, .book-grid-modern, .benefits-section, .faq-mini, .page-intro,
.faq-section, footer, .activities-hero, .activity-hero, .story-hero,
.activity-card, .activity-gallery, .activity-info-grid {
    position: relative;
    z-index: 2;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}


/* ============================================================
   03. TYPOGRAPHY
   ============================================================ */

/* Serif / display headings */
h1, h2, h3, h4,
.hero-slogan, .poetic-text, .section-title,
.page-hero-overlay h1, .page-hero-overlay p,
.activity-content h3, .timeline-content h2, .house-details h2,
.booking-form-modern h2, .contact-info-modern h2,
.benefit-card h3, .faq-item h3, .faq-mini-item h3,
.activity-card-content h3, .info-card h3, .activity-content h2 {
    font-family: 'Water Lemon', 'Playfair Display', serif;
    font-weight: 400;
    letter-spacing: -0.02em;
}

/* Body copy (small text default) */
p,
.room-features span, .house-amenities span,
.timeline-meta span, .contact-text p,
.footer-col p, .footer-col li, .credits,
.whatsapp-notice p, .intro-text,
.house-description, .room-content p,
.activity-content p, .timeline-content p,
.benefit-card p, .faq-item p, .faq-mini-item p,
.activity-card-content p, .info-card p, .back-link,
.activity-meta span, .info-list li {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    line-height: 1.5;
}

/* Philosophy description paragraphs */
.philosophy-description {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 2rem !important;
}

/* Slide menu flavors remain original */
.slide-menu,
.slide-menu .menu-nav > ul > li,
.slide-menu .menu-nav > ul > li > a,
.slide-menu .menu-nav > ul > li a .link-text {
    font-family: 'Cormorant Garamond', serif !important;
    color: #6e3f28 !important;
    font-size: 2rem !important;
}

/* Global title/paragraph colors (enforced) */
h1, h2, h3, h4, h5, h6 {
    color: #6e3f28 !important;
}

p,
li {
    color: #9F6C52 !important;
}

label,
.form-group label,
.input-label,
.label {
    color: #6e3f28 !important;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 3rem;
}


/* ============================================================
   04. HEADER
   ============================================================ */

header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: transparent;
    transition: background-color 0.3s ease, padding 0.3s ease;
    padding: 1.5rem 0;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 0.8rem 0;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Hamburger — left */
.header-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Logo centre — visible only after scroll */
.header-logo-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 110px;
    width: auto;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

header.scrolled .header-logo-center {
    opacity: 1;
    visibility: visible;
}

.header-logo-center img {
    height: 100%;
    width: auto;
    max-height: 110px;
    object-fit: contain;
}

/* Book Now — right */
.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.book-now-btn {
    background: var(--accent-terracotta);
    color: white;
    text-decoration: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(159, 108, 82, 0.3);
}

.book-now-btn:hover {
    background: #b07c62;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(159, 108, 82, 0.4);
}

.hamburger {
    background: transparent;
    border: none;
    font-size: 2.2rem;
    color: var(--accent-terracotta);
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger:hover {
    color: #b07c62;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .header-logo-center {
        height: 45px;
    }

    .header-logo-center img {
        max-height: 45px;
    }

    .hamburger {
        font-size: 1.8rem;
    }

    .book-now-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}


/* ============================================================
   05. SLIDE MENU
   ============================================================ */

.slide-menu {
    position: fixed;
    top: 0;
    left: -420px;
    width: 380px;
    height: 100vh;
    background: #ffffff;
    z-index: 1001;
    transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.1);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
}

.slide-menu.open {
    left: 0;
}

.close-menu {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(159, 108, 82, 0.1);
    border: 1px solid rgba(159, 108, 82, 0.2);
    font-size: 1.5rem;
    color: var(--accent-terracotta);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.close-menu:hover {
    background: var(--accent-terracotta);
    color: white;
    transform: rotate(180deg);
    border-color: transparent;
}

.menu-nav {
    margin-top: 4rem;
    flex: 1;
    overflow-y: auto;
}

.menu-nav::-webkit-scrollbar { width: 4px; }
.menu-nav::-webkit-scrollbar-track { background: rgba(159, 108, 82, 0.1); }
.menu-nav::-webkit-scrollbar-thumb { background: var(--accent-terracotta); border-radius: 4px; }

.menu-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Top-level items */
.menu-nav > ul > li {
    margin-bottom: 1.8rem;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.4s ease;
    transition-delay: calc(0.1s * var(--item-index, 0));
}

.slide-menu.open > .menu-nav > ul > li {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delays */
.menu-nav > ul > li:nth-child(1) { --item-index: 1; }
.menu-nav > ul > li:nth-child(2) { --item-index: 2; }
.menu-nav > ul > li:nth-child(3) { --item-index: 3; }
.menu-nav > ul > li:nth-child(4) { --item-index: 4; }
.menu-nav > ul > li:nth-child(5) { --item-index: 5; }
.menu-nav > ul > li:nth-child(6) { --item-index: 6; }

/* Top-level links */
.menu-nav > ul > li > a {
    text-decoration: none;
    color: #6e3f28;
    font-size: 2rem;
    font-family: 'Cormorant Garamond', serif;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0.5rem 0;
}

.menu-nav > ul > li > a .link-text {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-nav > ul > li > a .link-text::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--accent-terracotta);
    font-size: 1.5rem;
}

.menu-nav > ul > li > a:hover .link-text::before {
    opacity: 1;
    transform: translateX(0);
}

/* Underline animation for top-level links */
.menu-nav > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-terracotta), var(--accent-cool));
    transition: width 0.4s ease;
}

.menu-nav > ul > li > a:hover::after {
    width: 100%;
}

.menu-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(159, 108, 82, 0.2);
    margin-top: auto;
}

.menu-footer .social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.menu-footer .social-links a {
    color: var(--accent-terracotta);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    background: rgba(159, 108, 82, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(159, 108, 82, 0.2);
}

.menu-footer .social-links a:hover {
    color: white;
    background: var(--accent-terracotta);
    transform: translateY(-5px);
    border-color: transparent;
}

.menu-footer p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    color: #9F6C52;
    margin: 0;
}

/* ============================================================
   06. SLIDE MENU — SUBMENU (HOVER ONLY)
   ============================================================ */

/* Parent item with submenu */
.menu-nav .has-submenu {
    position: relative;
}

/* Submenu list — visible on hover (χωρίς .open class) */
.menu-nav .submenu {
    list-style: none;
    padding: 0.0rem 0 0.5rem 1.5rem;
    margin: 0.5rem 0 0 0;
    background: rgb(255, 255, 255);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

/* Show submenu on hover (μόνο hover, όχι click) */
.menu-nav .has-submenu:hover .submenu {
    max-height: 200px;
}

/* Submenu items */
.menu-nav .submenu li {
    margin: 0;
    padding: 0;
    opacity: 1;
    transform: none;
}

.menu-nav .submenu a {
    display: block;
    padding: 0.7rem 1rem 0.7rem 1rem;
    font-size: 1.2rem;
    font-family: 'PlaypenSans', 'Inter', sans-serif;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 6px;
}

.menu-nav .submenu a:hover {
    color: var(--accent-terracotta);
    background: rgba(159, 108, 82, 0.1);
    transform: translateX(5px);
}

/* Suppress conflicting pseudo-elements on submenu links */
.menu-nav .submenu a::before,
.menu-nav .submenu a::after {
    display: none !important;
}

/* Αφαιρούμε το βελάκι από το Accommodations */
.menu-nav .has-submenu > a .submenu-arrow {
    display: none !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .slide-menu { width: 300px; }
    .menu-nav > ul > li > a { font-size: 1.8rem; }
    .menu-nav .submenu a { font-size: 1.1rem; }
}

@media (max-width: 480px) {
    .slide-menu { width: 280px; }
    .menu-nav > ul > li > a { font-size: 1.6rem; }
    .menu-nav .submenu a { font-size: 1rem; }
}

/* ============================================================
   07. HERO VIDEO
   ============================================================ */

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    z-index: 1;
}

.parallax-hero {
    will-change: transform;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.7);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 1;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    max-width: 500px;
    height: auto;
    animation: fadeIn 1.5s ease;
    margin-bottom: 2rem;
}

.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    cursor: pointer;
    animation: bounce 2s infinite;
    margin-top: 1rem;
}

.hero-scroll .explore-text {
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
    font-family: 'Inter', sans-serif;
}

.hero-scroll i { font-size: 1.8rem; }

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to   { opacity: 1; transform: scale(1); }
}


/* ============================================================
   08. PAGE HERO
   ============================================================ */

.page-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2px);
}

.page-hero-overlay {
    position: relative;
    text-align: center;
    color: white;
    z-index: 2;
}

.page-hero-overlay h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: white;
    margin-bottom: 1rem;
}

.page-hero-overlay p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: #9F6C52;
    font-style: italic;
}


/* ============================================================
   09. PHILOSOPHY SECTION
   ============================================================ */

.philosophy-section {
    margin: var(--section-spacing) auto;
    text-align: center;
    max-width: 1100px;
}

.poetic-text {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    line-height: 1.4;
    color: #000000;
    margin-bottom: 2rem;
    font-family: 'PlaypenSans', 'Inter', sans-serif;
    font-weight: 500;
}

.philosophy-description {
    font-size: 2rem;
    line-height: 1.5;
    color: #000000;
    opacity: 0.9;
    max-width: 1000px;
    margin: 0 auto;
    font-family: 'PlaypenSans', 'Inter', sans-serif;
    font-weight: 400;
}

@media (max-width: 768px) {
    .philosophy-section { margin: 3rem auto; }
    .poetic-text { font-size: 2rem; padding: 0 1rem; }
    .philosophy-description { font-size: 1.5rem; padding: 0 1rem; }
}


/* ============================================================
   10. FEATURES SECTION
   ============================================================ */

.features-section {
    margin: var(--section-spacing) auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin: 3rem auto;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--accent-terracotta);
    margin-bottom: 1.5rem;
}

.feature-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}


/* ============================================================
   11. GALLERY GRID
   ============================================================ */

.gallery-section {
    margin: var(--section-spacing) auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item.wide  { grid-column: span 2; aspect-ratio: 2/1; }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(159, 108, 82, 0.8), transparent);
    padding: 2rem 1rem 1rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }


/* ============================================================
   12. HOUSES PAGE - ΔΙΟΡΘΩΜΕΝΟ
   ============================================================ */

.houses-grid-full {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    margin: 4rem auto;
}

.house-card-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(5px);
    border-radius: 60px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.house-card-full.reverse { 
    direction: rtl; 
}

.house-card-full.reverse .house-details { 
    direction: ltr; 
}

.house-card-full:hover {
    box-shadow: 0 30px 60px -15px var(--accent-terracotta);
}

.house-image {
    position: relative;
    height: 500px;
    overflow: hidden;
}

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

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

.house-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-cool);
    color: var(--text-dark);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    z-index: 2;
}

.house-details {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.house-details h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--accent-terracotta);
}

.house-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.house-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.house-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.house-amenities span {
    background: rgba(255, 0, 0, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.house-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.price {
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent-terracotta);
}

/* Responsive */
@media (max-width: 992px) {
    .house-card-full {
        grid-template-columns: 1fr;
    }
    
    .house-card-full.reverse {
        direction: ltr;
    }
    
    .house-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .house-image {
        height: 300px;
    }
    
    .house-details {
        padding: 2rem;
    }
    
    .house-details h2 {
        font-size: 2.2rem;
    }
    
    .house-meta {
        flex-wrap: wrap;
        gap: 1rem;
    }
}
/* ============================================================
   13. ACTIVITIES SECTION (grid — homepage)
   ============================================================ */

.activities-section { margin: var(--section-spacing) auto; }

.activities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.activity-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: center;
}

.activity-image {
    height: 200px;
    overflow: hidden;
    border-radius: 20px;
}

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

.activity-item:hover .activity-image img { transform: scale(1.05); }

.activity-content { padding: 1rem; }

.activity-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--accent-terracotta);
}


/* ============================================================
   14. ACTIVITIES CAROUSEL (multi-slide scroll)
   ============================================================ */

.activities-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    margin: 2rem 0;
}

.activities-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0.5rem;
    flex: 1;
    /* FIX: snap-scrolling was missing — gallery/houses had it but activities didn't */
    scroll-snap-type: x mandatory;
}

.activities-carousel::-webkit-scrollbar { display: none; }

.carousel-slide {
    flex: 0 0 calc(33.333% - 1.33rem);
    min-width: 280px;
}


/* ============================================================
   15. CAROUSEL — SHARED ARROWS & DOTS
   (single definition — referenced by all carousels)
   ============================================================ */

.carousel-arrow {
    background: white;
    border: 2px solid var(--accent-terracotta);
    color: var(--accent-terracotta);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
    flex-shrink: 0;
    margin: 0 0.5rem;
    font-size: 1.2rem;
}

.carousel-arrow:hover {
    background: var(--accent-terracotta);
    color: white;
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(159, 108, 82, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots .dot.active {
    background: var(--accent-terracotta);
    transform: scale(1.2);
    width: 24px;
    border-radius: 10px;
}


/* ============================================================
   16. ACTIVITIES PAGE — MAIN GRID
   ============================================================ */

.activities-hero {
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
    position: relative;
}

.activities-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.activities-hero h1 {
    color: white;
    font-size: clamp(3rem, 8vw, 5rem);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.activities-hero p {
    font-family: 'Cormorant Garamond', serif;
    color: #9F6C52;
    font-size: 1.3rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.activities-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 4rem auto;
}

.activity-card {
    background: transparent;
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.activity-card:hover { transform: translateY(-10px); }

.activity-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: 30px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.activity-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.activity-card:hover .activity-card-image img { transform: scale(1.1); }

.activity-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-terracotta);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.activity-card-content { padding: 0 0.5rem; }

.activity-card-content h3 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: var(--accent-terracotta);
}

.activity-card-content p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    line-height: 1.4;
    color: #9F6C52;
    margin-bottom: 1.5rem;
}

.activity-meta {
    display: flex;
    gap: 1.5rem;
    color: #666;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.activity-meta i {
    color: var(--accent-terracotta);
    margin-right: 0.3rem;
}


/* ============================================================
   17. ACTIVITY DETAIL PAGES
   ============================================================ */

.activity-hero {
    height: 60vh;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
    position: relative;
}

.activity-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2px);
}

.activity-hero h1 {
    color: white;
    font-size: clamp(3rem, 8vw, 5rem);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    text-align: center;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-terracotta);
    text-decoration: none;
    font-size: 1.1rem;
    margin: 2rem 0 1rem;
    transition: gap 0.3s ease;
}

.back-link:hover { gap: 1rem; color: #b07c62; }

.activity-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    margin: 3rem auto;
}

.gallery-main {
    grid-column: span 2;
    height: 450px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-main:hover img { transform: scale(1.05); }

.gallery-thumb {
    height: 200px;
    border-radius: 0px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.gallery-thumb:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-thumb:hover img { transform: scale(1.05); }

.activity-info-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin: 4rem auto;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 2.5rem;
    border-radius: 30px;
    border: 1px solid rgba(159, 108, 82, 0.2);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(159, 108, 82, 0.4);
}

.info-card h3 { font-size: 2rem; color: var(--accent-terracotta); margin-bottom: 1.5rem; }
.info-card p  { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; line-height: 1.5; color: #9F6C52; margin-bottom: 1.5rem; }

.activity-badge {
    display: inline-block;
    background: var(--accent-terracotta);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.info-list { list-style: none; padding: 0; }

.info-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 1rem;
}

.info-list li:last-child { border-bottom: none; }
.info-list i { color: var(--accent-terracotta); font-size: 1.2rem; width: 30px; text-align: center; }


/* ============================================================
   18. ALTERNATING SECTIONS (activities & our-story shared)
   ============================================================ */

.activity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: var(--section-spacing);
}

.activity-grid.even          { direction: rtl; }
.activity-grid.even .activity-content { direction: ltr; }

.activity-content { padding: 2rem; }

.activity-content h2 {
    font-size: 2.5rem;
    color: var(--accent-terracotta);
    margin-bottom: 1.5rem;
    position: relative;
}

.activity-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-terracotta), var(--accent-cool));
}

.activity-content p { font-family: 'Cormorant Garamond', serif; font-size: 1rem; line-height: 1.5; color: #9F6C52; margin-bottom: 1.5rem; }

.activity-content .quote {
    font-style: italic;
    font-size: 1.3rem;
    color: var(--accent-terracotta);
    border-left: 4px solid var(--accent-cool);
    padding-left: 2rem;
    margin: 2rem 0;
}

.activity-image {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.5s ease;
    border-radius: 0; /* Κανένα στρογγύλεμα */
}

.activity-image:hover { transform: scale(1.02); }

.activity-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.activity-image:hover img { transform: scale(1.1); }

/* Αφαίρεση του δεύτερου mini box που εμφανιζόταν */
.activity-image::after {
    display: none;
}

/* ============================================================
   19. ACTIVITIES NOTE
   ============================================================ */

.activities-note {
    text-align: center;
    background: linear-gradient(135deg, var(--secondary-bg), var(--accent-cool));
    padding: 3rem;
    border-radius: 60px;
    margin: 4rem auto;
    color: white;
    max-width: 800px;
}

.activities-note i  { font-size: 3rem; margin-bottom: 1rem; }
.activities-note p  { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: #9F6C52; margin-bottom: 0.5rem; }
.activities-note .small { font-size: 1rem; opacity: 0.9; margin-top: 1rem; }


/* ============================================================
   20. OUR STORY PAGE - ΕΝΟΠΟΙΗΜΕΝΟ
   ============================================================ */

/* Story Hero Section */
.story-hero {
    height: 50vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
    position: relative;
}

.story-hero::before { 
    content: ''; 
    position: absolute; 
    inset: 0; 
    background: rgba(0, 0, 0, 0.3); 
}

.story-hero h1 {
    color: white;
    font-size: clamp(3rem, 8vw, 5rem);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

/* Story Grid - Εναλλασσόμενο μοτίβο */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

/* Για τα ζυγά sections (2ο, 4ο, 6ο) - εικόνα αριστερά, κείμενο δεξιά */
.story-grid.even {
    direction: rtl;
}

.story-grid.even .story-content {
    direction: ltr;
}

/* Story Content */
.story-content {
    padding: 2rem;
}

.story-content h2 {
    font-size: 2.5rem;
    color: var(--accent-terracotta);
    margin-bottom: 1.5rem;
    position: relative;
}

.story-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-terracotta), var(--accent-cool));
}

.story-content p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    line-height: 1.5;
    color: #9F6C52;
    margin-bottom: 1.5rem;
}

.story-content .quote {
    font-style: italic;
    font-size: 1.3rem;
    color: var(--accent-terracotta);
    border-left: 4px solid var(--accent-cool);
    padding-left: 2rem;
    margin: 2rem 0;
}

/* Story Image - με τετράγωνες γωνίες */
.story-image {
    position: relative;
    border-radius: 0; /* Τετράγωνες γωνίες */
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.5s ease;
}

.story-image:hover {
    transform: scale(1.02);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.story-image:hover img {
    transform: scale(1.1);
}

/* Αφαίρεση του δεύτερου box */
.story-image::after {
    display: none;
}
/* Experience Section Styles */
.experience-section {
    margin: 6rem auto;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.experience-item {
    background: rgba(159, 108, 82, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(159, 108, 82, 0.1);
}

.experience-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    background: rgba(159, 108, 82, 0.08);
}

.experience-number {
    font-size: 3rem;
    font-weight: 300;
    color: var(--accent-terracotta);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    right: 20px;
    font-family: 'Water Lemon', serif;
}

.experience-text {
    font-size: 1.3rem;
    line-height: 1.4;
    color: #9F6C52;
    font-style: italic;
    margin: 0;
    padding-right: 2rem;
}

/* Experience List (για την Πρόταση 2) */
.experience-highlights {
    margin: 2rem 0;
}

.experience-highlights h3 {
    font-size: 1.8rem;
    color: var(--accent-terracotta);
    margin-bottom: 1.5rem;
}

.experience-list {
    list-style: none;
    padding: 0;
}

.experience-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    line-height: 1.4;
    color: #9F6C52;
}

.experience-list i {
    color: var(--accent-terracotta);
    font-size: 1.3rem;
    min-width: 2rem;
    margin-top: 0.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .experience-text {
        font-size: 1.1rem;
    }
    
    .experience-number {
        font-size: 2.5rem;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }
    
    .story-grid.even {
        direction: ltr;
    }
    
    .story-content {
        padding: 1rem 0;
    }
    
    .story-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .story-hero {
        height: 35vh;
        min-height: 250px;
    }
    
    .story-hero h1 {
        font-size: 2.5rem;
    }
    
    .story-section {
        padding: 1rem 0;
    }
    
    .story-grid {
        margin-bottom: 3rem;
    }
}

/* ============================================================
   21. CTA SECTION
   ============================================================ */

.cta-section { margin: var(--section-spacing) auto; text-align: center; }

.cta-content h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--text-dark); margin-bottom: 1.5rem; }
.cta-content p  { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; margin-bottom: 2rem; color: #9F6C52; }

.cta-button {
    background: var(--accent-terracotta);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(159, 108, 82, 0.3);
}

.cta-button:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(159, 108, 82, 0.4); }


/* ============================================================
   22. BUTTONS
   ============================================================ */

.btn-3d {
    background: var(--accent-terracotta);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(159, 108, 82, 0.3);
}

.btn-3d:hover { background: #b07c62; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(159, 108, 82, 0.4); }
.btn-3d.small { padding: 0.6rem 1.5rem; font-size: 0.9rem; }


/* ============================================================
   23. PAGE INTRO
   ============================================================ */

.page-intro { max-width: 800px; margin: 2rem auto 4rem; text-align: center; }
.intro-text  { font-size: 1.3rem; font-style: italic; color: var(--accent-terracotta); }


/* ============================================================
   24. FAQ SECTIONS
   ============================================================ */
/* Bed Types FAQ - Centered and First */
.faq-bed-types-wrapper {
    max-width: 1000px;
    margin: 0 auto 2rem;
    width: 100%;
}

.faq-mini-item.faq-bed-types {
    background: rgba(206, 178, 152, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(159, 108, 82, 0.2);
    border-radius: 0;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-mini-item.faq-bed-types:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-terracotta);
}

.faq-mini-item.faq-bed-types h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--accent-terracotta);
    text-align: center;
}

.bed-types-answer > p {
    text-align: center;
    margin-bottom: 2rem;
    font-style: italic;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.bed-types-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.bed-type-card {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 0;
    padding: 1.8rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(159, 108, 82, 0.2);
}

.bed-type-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent-terracotta);
    background: rgba(255, 255, 255, 0.7);
}

.bed-type-title {
    font-weight: 600;
    color: var(--accent-terracotta);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.bed-type-title i {
    font-size: 1.2rem;
}

.bed-type-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark);
}

/* Divider between centered FAQ and grid FAQs */
.faq-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-terracotta), var(--accent-cool), var(--accent-terracotta), transparent);
    margin: 3rem 0 2.5rem;
    opacity: 0.4;
}

/* Regular FAQ Grid - 4 HOTTEST FAQs */
.faq-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 0;
}

.faq-mini-item {
    background: rgba(206, 178, 152, 0.1);
    backdrop-filter: blur(5px);
    padding: 2rem;
    border-radius: 0;
    border-left: 4px solid var(--accent-cool);
    transition: all 0.3s ease;
}

.faq-mini-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    background: rgba(206, 178, 152, 0.2);
}

.faq-mini-item h3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--accent-terracotta);
    font-size: 1.3rem;
}

.faq-mini-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
}

/* FAQ Carousel Styles */
.faq-carousel-section {
    margin: 4rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
}

.faq-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    margin: 2rem 0;
    gap: 1rem;
    width: 100%;
}

.faq-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0.5rem;
    flex: 1;
    scroll-snap-type: x mandatory;
}

.faq-carousel::-webkit-scrollbar {
    display: none;
}

.faq-carousel-slide {
    flex: 0 0 calc(33.333% - 1.33rem);
    min-width: 280px;
    scroll-snap-align: start;
}

.faq-carousel-item {
    background: rgba(206, 178, 152, 0.1);
    backdrop-filter: blur(5px);
    padding: 2rem;
    border-radius: 0;
    border: 1px solid rgba(159, 108, 82, 0.15);
    height: 100%;
    transition: transform 0.3s ease;
}

.faq-carousel-item:hover {
    transform: translateY(-5px);
    background: rgba(206, 178, 152, 0.15);
}

.faq-carousel-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--accent-terracotta);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.faq-carousel-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(159, 108, 82, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots .dot.active {
    background: var(--accent-terracotta);
    transform: scale(1.2);
    width: 24px;
    border-radius: 10px;
}

/* Carousel Arrows */
.carousel-arrow {
    background: white;
    border: 2px solid var(--accent-terracotta);
    color: var(--accent-terracotta);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.carousel-arrow:hover {
    background: var(--accent-terracotta);
    color: white;
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
    .bed-types-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-carousel-slide {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .faq-mini-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-bed-types-wrapper {
        margin-bottom: 1.5rem;
    }
    
    .faq-mini-item.faq-bed-types {
        padding: 1.5rem;
    }
    
    .faq-mini-item.faq-bed-types h3 {
        font-size: 1.3rem;
    }
    
    .bed-type-card {
        padding: 1.2rem;
    }
    
    .bed-type-title {
        font-size: 1.1rem;
    }
    
    .faq-divider {
        margin: 2rem 0 1.8rem;
    }
    
    .faq-carousel-slide {
        flex: 0 0 calc(100% - 2rem);
    }
    
    .faq-carousel-item {
        padding: 1.5rem;
    }
    
    .faq-carousel-item h3 {
        font-size: 1.2rem;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}


/* ============================================================
   25. FOOTER - ΒΕΛΤΙΩΜΕΝΟ
   ============================================================ */

footer {
    background: linear-gradient(135deg, var(--secondary-bg), #b99f86);
    color: var(--text-dark);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto 2.5rem;
}

.footer-col {
    padding: 1rem 0.5rem;
}

.footer-col:first-child {
    max-width: 240px;
}

.footer-col h1,
.footer-col h2,
.footer-col h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: var(--accent-terracotta);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.footer-col p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    line-height: 1.4;
    color: #9F6C52;
    opacity: 0.9;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-col ul li i {
    flex-shrink: 0;
    min-width: 1.2rem;
}

.footer-col a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
    display: inline-block;
    position: relative;
}

.footer-col a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-terracotta);
    transition: width 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent-terracotta);
}

.footer-col a:hover::after {
    width: 100%;
}

.social-links-3d {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.2rem;
}

.social-links-3d a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-terracotta);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(159, 108, 82, 0.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.social-links-3d a:hover {
    background: var(--accent-terracotta);
    color: white;
    transform: translateY(-5px);
    border-color: transparent;
    box-shadow: 0 6px 12px rgba(159, 108, 82, 0.3);
}

.map-3d {
    border-radius: 20px;
    overflow: hidden;
    margin-top: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.map-3d:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.map-3d iframe {
    transition: var(--transition);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(159, 108, 82, 0.2);
    max-width: 1300px;
    margin: 0 auto;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.footer-bottom p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: #9F6C52;
    opacity: 0.8;
}

/* Quote styling for standalone quote divs */
.quote {
    font-style: italic;
    font-size: 1.3rem;
    font-family: 'Cormorant Garamond', serif;
    color: var(--accent-terracotta);
    border-left: 4px solid var(--accent-cool);
    padding: 1rem 0 1rem 2rem;
    margin: 2rem 0;
    line-height: 1.4;
}

/* Special Offers Page Styles */
.under-construction {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem;
}

.construction-content {
    max-width: 700px;
    margin: 0 auto;
}

.construction-icon {
    font-size: 5rem;
    color: var(--accent-terracotta);
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

.construction-content h1 {
    font-size: 3.5rem;
    color: var(--accent-terracotta);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.construction-content .coming-soon {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    opacity: 0.8;
}

.construction-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-terracotta), var(--accent-cool));
    margin: 2rem auto;
}

.construction-notice {
    background: rgba(206, 178, 152, 0.1);
    padding: 2rem;
    border-radius: 30px;
    margin-top: 2rem;
    border: 1px solid rgba(159, 108, 82, 0.2);
}

.construction-notice p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.construction-notice i {
    color: var(--accent-terracotta);
    margin-right: 0.5rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    min-width: 80px;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent-terracotta);
    font-family: 'Playfair Display', serif;
}

.countdown-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dark);
    opacity: 0.7;
}

.newsletter-signup {
    margin-top: 3rem;
}

.newsletter-signup h3 {
    font-size: 1.3rem;
    color: var(--accent-terracotta);
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: 1rem;
    background: white;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-cool);
}

.newsletter-form button {
    background: var(--accent-terracotta);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #b07c62;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .construction-content h1 {
        font-size: 2.5rem;
    }
    
    .countdown-timer {
        gap: 1rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .footer-col h1,
    .footer-col h2,
    .footer-col h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }
    
    .footer-col:first-child {
        grid-column: span 2;
        max-width: 100%;
        text-align: center;
    }
    
    .footer-col h1,
    .footer-col h2,
    .footer-col h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-col:first-child {
        grid-column: auto;
        text-align: left;
    }
    
    .footer-col h1,
    .footer-col h2,
    .footer-col h3 {
        font-size: 1.4rem;
    }
}

/* ============================================================
   26. BOOK PAGE
   ============================================================ */

.book-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 4rem auto;
    border-radius: 0;
}

.booking-form-modern h2 { 
    font-size: 2.5rem; 
    margin-bottom: 2rem; 
    color: var(--accent-terracotta); 
}

.form-row { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 1.5rem; 
    margin-bottom: 1.5rem; 
}

.form-group { 
    position: relative; 
    margin-bottom: 1.5rem; 
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(159, 108, 82, 0.2);
    font-family: 'PlaypenSans', 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239F6C52' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-bottom-color: var(--accent-terracotta);
}

.form-group label {
    position: absolute;
    left: 1.5rem;
    top: 1rem;
    color: var(--accent-terracotta);
    font-weight: 500;
    transition: var(--transition);
    pointer-events: none;
    background: transparent;
    padding: 0;
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label {
    top: -1.2rem;
    left: 0;
    font-size: 0.85rem;
    color: var(--accent-terracotta);
}

.contact-info-modern {
    padding: 2rem 0;
}

.contact-info-modern h2 { 
    font-size: 2.5rem; 
    margin-bottom: 2rem; 
    color: var(--accent-terracotta); 
}

.contact-card-modern { 
    display: flex; 
    flex-direction: column; 
    gap: 1.5rem; 
    margin-bottom: 2rem; 
}

.contact-item-3d {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(159, 108, 82, 0.1);
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-terracotta);
    font-size: 1.5rem;
    background: transparent;
}

.contact-text h3 { 
    font-size: 1.3rem; 
    margin-bottom: 0.2rem; 
    color: var(--text-dark); 
    font-weight: 400;
}

.contact-text p  { 
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem; 
    color: #9F6C52; 
    opacity: 0.7;
}

.contact-text .small { 
    font-size: 0.85rem; 
    opacity: 0.5; 
}

.social-3d-modern { 
    margin-top: 2rem; 
}

.social-3d-modern h3 { 
    font-size: 1.5rem; 
    margin-bottom: 1.5rem; 
    color: var(--accent-terracotta); 
}

.social-links-3d {
    display: flex;
    gap: 1.5rem;
}

.social-links-3d a {
    color: var(--accent-terracotta);
    font-size: 1.5rem;
    transition: var(--transition);
    opacity: 0.7;
}

.social-links-3d a:hover {
    opacity: 1;
    transform: translateY(-3px);
}

/* Minimal submit button */
.btn-submit {
    background: transparent;
    color: var(--accent-terracotta);
    border: 2px solid var(--accent-terracotta);
    padding: 1rem 2rem;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    margin-top: 2rem;
}

.btn-submit:hover {
    background: var(--accent-terracotta);
    color: white;
}

/* ============================================================
   28. BENEFITS SECTION
   ============================================================ */

.benefits-section { margin: var(--section-spacing) auto; }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: var(--secondary-bg);
    padding: 2.5rem;
    border-radius: 40px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.benefit-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }

.benefit-icon { font-size: 3rem; color: var(--accent-terracotta); margin-bottom: 1rem; }
.benefit-card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.benefit-card p  { font-family: 'Cormorant Garamond', serif; font-size: 0.95rem; color: #9F6C52; }


/* ============================================================
   29. FAQ MINI
   ============================================================ */

.faq-mini { margin: var(--section-spacing) auto; }

.faq-mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }

.faq-mini-item {
    background: rgba(206, 178, 152, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 2rem;
    border-radius: 30px;
    border-left: 4px solid var(--accent-cool);
    transition: var(--transition);
}

.faq-mini-item:hover { transform: translateX(10px); box-shadow: var(--shadow-md); }

.faq-mini-item h3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--accent-terracotta);
    font-size: 1.3rem;
}

.faq-mini-item p { font-family: 'Cormorant Garamond', serif; font-size: 0.95rem; color: #9F6C52; }


/* ============================================================
   30. OFFERS PAGE
   ============================================================ */

.offers-hero {
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url('https://images.pexels.com/photos/1285625/pexels-photo-1285625.jpeg?auto=compress&cs=tinysrgb&w=1600');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
}

.offers-hero h1 { color: white; font-size: clamp(3rem, 8vw, 5rem); text-shadow: 0 2px 20px rgba(0,0,0,0.5); text-align: center; }
.offers-hero p  { font-family: 'Cormorant Garamond', serif; color: #9F6C52; font-size: 1.3rem; text-align: center; max-width: 600px; margin: 1rem auto 0; font-style: italic; opacity: 0.9; }

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 4rem auto;
}

.offer-card {
    background: rgba(206, 178, 152, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 40px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-md);
}

.offer-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }

.offer-image { height: 250px; overflow: hidden; position: relative; }
.offer-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.offer-card:hover .offer-image img { transform: scale(1.1); }

.offer-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-terracotta);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.offer-content { padding: 2rem; }
.offer-content h3 { font-size: 2rem; margin-bottom: 1rem; color: var(--accent-terracotta); }
.offer-content p  { font-family: 'Cormorant Garamond', serif; font-size: 1rem; line-height: 1.4; color: #9F6C52; margin-bottom: 1.5rem; }

.offer-meta { display: flex; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }

.offer-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
}

.offer-meta i { color: var(--accent-terracotta); }

.offer-price { font-size: 2rem; font-weight: 600; color: var(--accent-terracotta); margin-bottom: 1.5rem; }
.offer-price small { font-size: 1rem; font-weight: 400; color: #666; }

.offer-badge {
    display: inline-block;
    background: var(--accent-cool);
    color: var(--text-dark);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.offer-cta { display: flex; gap: 1rem; align-items: center; justify-content: space-between; }


/* ============================================================
   31. GALLERY CAROUSEL (single-slide)
   ============================================================ */

.gallery-carousel-section { margin: var(--section-spacing) auto; overflow: hidden; }

.gallery-carousel-container { position: relative; display: flex; align-items: center; margin: 2rem 0; }

.gallery-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
    scroll-snap-type: x mandatory;
}

.gallery-carousel::-webkit-scrollbar { display: none; }

.gallery-carousel-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    padding: 0 5px;
    box-sizing: border-box;
}

.gallery-carousel-image {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    aspect-ratio: 16/9;
    width: 100%;
    box-shadow: var(--shadow-lg);
}

.gallery-carousel-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-carousel-slide:hover .gallery-carousel-image img { transform: scale(1.05); }

.gallery-carousel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(159,108,82,0.9), transparent);
    padding: 3rem 2rem 2rem;
    color: white;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-carousel-slide:hover .gallery-carousel-overlay { opacity: 1; }

.gallery-carousel-overlay h3 { color: white; font-size: 2.2rem; margin-bottom: 0.5rem; }
.gallery-carousel-overlay p  { font-family: 'Cormorant Garamond', serif; color: #9F6C52; font-size: 1.1rem; opacity: 0.9; }


/* ============================================================
   32. HOUSES CAROUSEL (single-slide)
   ============================================================ */

.houses-carousel-section { margin: var(--section-spacing) auto; overflow: hidden; }

.houses-carousel-container { position: relative; display: flex; align-items: center; margin: 2rem 0; }

.houses-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
    scroll-snap-type: x mandatory;
}

.houses-carousel::-webkit-scrollbar { display: none; }

.houses-carousel-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    padding: 0 5px;
    box-sizing: border-box;
}

.houses-carousel-image {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    aspect-ratio: 16/9;
    width: 100%;
    box-shadow: var(--shadow-lg);
}

.houses-carousel-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.houses-carousel-slide:hover .houses-carousel-image img { transform: scale(1.05); }

.houses-carousel-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.houses-carousel-slide:hover .houses-carousel-overlay { opacity: 1; }

/*
 * FIX: On touch devices hover never fires → the "View More" button is
 *      completely unreachable. Solution: anchor overlay to the bottom of
 *      the image and keep it always visible on touch screens.
 */
@media (hover: none) {
    .houses-carousel-overlay {
        opacity: 1;
        top: auto;
        bottom: 0;
        left: 0;
        transform: none;
        width: 100%;
        padding: 2.5rem 2rem 1.5rem;
        background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
        pointer-events: auto;
    }
    /* Also always show gallery overlay text on touch */
    .gallery-carousel-overlay { opacity: 1; }
}

.houses-carousel-overlay h3 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-family: 'Water Lemon', serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.houses-carousel-overlay p {
    font-family: 'Cormorant Garamond', serif;
    color: #9F6C52;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.houses-carousel-overlay .btn-3d {
    background: var(--accent-terracotta);
    color: white;
    border: none;
    font-weight: 500;
    padding: 0.8rem 2.5rem;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
    transition: all 0.3s ease;
}

.houses-carousel-overlay .btn-3d:hover {
    background: #b07c62;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(159, 108, 82, 0.4);
}


/* ======================================== */
/* 14. ACTIVITIES CAROUSEL (2 per view) */
/* ======================================== */

.activities-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    margin: 2rem 0;
}

.activities-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0.5rem;
    flex: 1;
    scroll-snap-type: x mandatory;
}

.activities-carousel::-webkit-scrollbar {
    display: none;
}

/* 2 items per view on desktop */
.activities-carousel .carousel-slide {
    flex: 0 0 calc(50% - 1rem);
    min-width: 280px;
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}

.activities-carousel .carousel-slide:hover {
    transform: translateY(-8px);
}

/* Activity card styling */
.activity-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.activity-card-link:hover {
    box-shadow: var(--shadow-md);
}

.activity-card-link .activity-image {
    height: 220px;
    overflow: hidden;
}

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

.activity-card-link:hover .activity-image img {
    transform: scale(1.1);
}

.activity-card-link .activity-content {
    padding: 1.8rem 1.5rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(159,108,82,0.1);
}

.activity-card-link h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--accent-terracotta);
    font-family: 'Water Lemon', serif;
}

.activity-card-link p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: #9F6C52;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    opacity: 0.8;
}

.explore-btn {
    display: inline-block;
    background: transparent;
    color: var(--accent-terracotta);
    padding: 0.7rem 2rem;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.explore-btn:hover {
    background: var(--accent-terracotta);
    color: white;
    transform: translateY(-2px);
}

/* Carousel arrows */
.carousel-arrow {
    background: white;
    border: 2px solid var(--accent-terracotta);
    color: var(--accent-terracotta);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
    flex-shrink: 0;
    margin: 0 0.5rem;
    font-size: 1.2rem;
}

.carousel-arrow:hover {
    background: var(--accent-terracotta);
    color: white;
    transform: scale(1.1);
}

.carousel-arrow:active {
    transform: scale(0.95);
}

/* Dots navigation */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2.5rem;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(159, 108, 82, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots .dot.active {
    background: var(--accent-terracotta);
    transform: scale(1.2);
    width: 24px;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .activities-carousel .carousel-slide {
        flex: 0 0 calc(100% - 2rem);
    }
    
    .activity-card-link .activity-image {
        height: 200px;
    }
    
    .activity-card-link h3 {
        font-size: 1.6rem;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .activity-card-link .activity-content {
        padding: 1.5rem 1rem 1.8rem;
    }
    
    .explore-btn {
        padding: 0.6rem 1.5rem;
    }
}

/* ============================================================
   34. KIDONI SPECIFIC STYLES
   ============================================================ */

/* Portrait grid */
.portrait-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.portrait-item {
    overflow: hidden;
    min-height: 240px;
}
.portrait-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.portrait-item:hover img {
    transform: scale(1.005);
}

/* Specs grid */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin: 4rem 0;
    padding: 4rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.spec-item         { text-align: center; }
.spec-item h3      { font-size: 2.2rem; font-weight: 300; margin: 0.5rem 0 0.3rem; }
.spec-item p       { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: #9F6C52; text-transform: uppercase; letter-spacing: 2px; }

/* Asymmetric gallery */
.gallery-asymmetric { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; }
.gallery-large      { overflow: hidden; min-height: 240px; }
.gallery-large img  { width: 100%; height: auto; object-fit: contain; transition: transform 0.6s ease; }
.gallery-large:hover img,
.gallery-vertical:hover img { transform: scale(1.005); }
.gallery-vertical   { overflow: hidden; min-height: 240px; margin-bottom: 2rem; }
.gallery-vertical:last-child { margin-bottom: 0; }
.gallery-vertical img { width: 100%; height: auto; object-fit: contain; transition: transform 0.6s ease; }

/* Amenities grid */
.amenities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.amenities-category { margin-bottom: 3rem; background-color: white; padding: 2rem; }

.amenities-category h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    color: #9F6C52;
    position: relative;
}

.amenities-category h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 1px;
    background: var(--accent-terracotta);
}

.amenities-list { list-style: none; }

.amenities-list li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 1.2rem;
    color: #6B6B6B;
}

.amenities-list li:last-child { border-bottom: none; }
.amenities-list i { color: var(--accent-terracotta); font-size: 1.2rem; width: 24px; opacity: 0.7; }

/* Highlight cards */
.highlight-card {
    padding: 3rem;
    margin: 3rem 0;
    background: transparent;
    border: 2px solid #9F6C52;
}

.highlight-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; margin-bottom: 1.5rem; letter-spacing: 2px; color: #9F6C52; }
.highlight-card p  { font-family: 'Cormorant Garamond', serif; font-size: 1rem; line-height: 1.5; color: #9F6C52; }

.beach-card          { background: transparent; border: 2px solid #9F6C52; }
.beach-card h4,
.beach-card p        { font-family: 'Cormorant Garamond', serif; color: #9F6C52; }

/* Kidoni hero box */
.kidoni-hero-box { background-color: rgba(159, 108, 82, 0.4); padding: 0.3rem 1rem; margin: 1rem 0; text-align: center; width: 100%; }
.kidoni-hero-box h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 300; color: white; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.kidoni-hero-box .subtitle { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 300; color: #a39171; letter-spacing: 0.05em; text-transform: uppercase; }

.kidoni-two-column { display: grid; grid-template-columns: 60% 40%; gap: 4rem; margin: var(--section-spacing) auto; }

/* Kidoni carousel */
.kidoni-carousel { width: 100%; }
.carousel-container { position: relative; width: 100%; overflow: hidden; }
.carousel-track     { display: flex; transition: transform 0.5s ease; }
.carousel-slide     { flex: 0 0 100%; aspect-ratio: 4/3; overflow: hidden; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.carousel-nav       { display: flex; justify-content: space-between; margin-top: 1rem; }
.carousel-dot       { width: 8px; height: 8px; border-radius: 50%; background: #ccc; margin: 0 4px; cursor: pointer; transition: background 0.3s ease; }
.carousel-dot.active { background: #a39171; }

/* Kidoni property details */
.kidoni-details    { padding-right: 2rem; }
.kidoni-description { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; line-height: 1.4; color: #9F6C52; margin-bottom: 3rem; font-weight: 300; }

.specs-grid-rooster { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-bottom: 3rem; }
.specs-item-rooster { display: flex; align-items: center; gap: 1rem; }
.specs-item-rooster i    { font-size: 1.5rem; color: #a39171; width: 2rem; }
.specs-item-rooster span { font-family: 'Montserrat', sans-serif; font-size: 1rem; color: #2c2c2c; font-weight: 300; }

.view-more-btn {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #2c2c2c;
    text-decoration: none;
    padding: 1rem 3rem;
    border: 1px solid #a39171;
    background: transparent;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    margin-top: 2rem;
}

.view-more-btn:hover { background: #a39171; color: white; }


/* ============================================================
   35. RESPONSIVE BREAKPOINTS
   ============================================================

   Breakpoints:
     1200px  – large desktop → tighten grids
     1024px  – tablet landscape (NEW)
      992px  – tablet portrait
      768px  – large phone / small tablet
      480px  – small phone
   ============================================================ */


/* ── 1200px – Large desktop ───────────────────────────────── */
@media (max-width: 1200px) {
    .gallery-grid          { grid-template-columns: repeat(3, 1fr); }
    .instagram-grid        { grid-template-columns: repeat(4, 1fr); }
    /*
     * FIX: the footer HTML has an inline style="grid-template-columns:repeat(5,1fr)"
     * which has higher specificity than a plain CSS rule, so !important is needed
     * to let breakpoints take effect. Applied consistently from here downwards.
     */
    .footer-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

/* ── 1024px – Tablet landscape (NEW breakpoint) ───────────── */
@media (max-width: 1024px) {

    /* Container */
    .container             { padding: 0 24px; }

    /* Header logo — still large but not 130px */
    .header-logo-center    { height: 80px; }
    .header-logo-center img { max-height: 80px; }

    /* Grids */
    .benefits-grid         { grid-template-columns: repeat(2, 1fr); }
    .specs-grid            { grid-template-columns: repeat(2, 1fr); }
    .portrait-grid         { grid-template-columns: repeat(2, 1fr); }
    .amenities-grid        { grid-template-columns: 1fr; gap: 2rem; }
    .footer-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    /* Houses & gallery carousels stay full-width — nothing to change */

    /* Activities: still 2-per-view is fine at 1024px */

    /* Philosophy text — small scale-down */
    .philosophy-description { font-size: 1.7rem; }
}


/* ── 992px – Tablet portrait ──────────────────────────────── */
@media (max-width: 992px) {
    .features-grid,
    .rooms-grid,
    .activities-grid,
    .book-grid-modern      { grid-template-columns: 1fr; gap: 1.5rem; }

    /* FIX: !important needed because of inline style on footer-grid */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem;
    }

    .gallery-grid          { grid-template-columns: repeat(2, 1fr); }
    .instagram-grid        { grid-template-columns: repeat(3, 1fr); }
    .benefits-grid         { grid-template-columns: repeat(2, 1fr); }
    .faq-mini-grid,
    .faq-grid              { grid-template-columns: 1fr; }

    .activity-item         { grid-template-columns: 1fr; text-align: center; }
    .activity-image        { width: 100%; }

    .carousel-slide        { flex: 0 0 calc(50% - 1rem); }

    .house-card-full       { grid-template-columns: 1fr; }
    .house-card-full.reverse { direction: ltr; }

    .activity-info-grid,
    .activity-gallery      { grid-template-columns: 1fr; gap: 2rem; }

    .gallery-main          { grid-column: auto; height: 350px; }
    .gallery-thumb         { height: 150px; }

    .activity-grid,
    .activity-grid.even,
    .story-grid,
    .story-grid.even       { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 4rem; direction: ltr; }

    .activity-content,
    .story-content         { padding: 1rem 0; }

    .activity-content h2,
    .story-content h2      { font-size: 2rem; }

    .kidoni-two-column     { grid-template-columns: 1fr; gap: 3rem; }
    .kidoni-details        { padding-right: 0; }
    .specs-grid-rooster    { grid-template-columns: repeat(2, 1fr); }

    /* Kidoni-specific grids */
    .specs-grid            { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .portrait-grid         { grid-template-columns: repeat(2, 1fr); }
    .gallery-asymmetric    { grid-template-columns: 1fr; }
    .amenities-grid        { grid-template-columns: 1fr; gap: 2rem; }
}


/* ── 768px – Large phone / small tablet ──────────────────── */
@media (max-width: 768px) {

    /* ── Header ── */
    header                 { padding: 1rem 0; }
    .slide-menu            { width: 300px; }
    .menu-nav > ul > li > a { font-size: 1.8rem; }
    .menu-nav .submenu a   { font-size: 1.1rem; }

    /* ── Hero ── */
    .hero                  { min-height: 450px; height: 60vh; }
    .hero-logo             { max-width: 200px; }

    /* ── Page heroes ── */
    .activities-hero,
    .activity-hero,
    .story-hero,
    .page-hero             { height: 40vh; min-height: 300px; }

    .activities-hero h1,
    .activity-hero h1,
    .story-hero h1,
    .page-hero-overlay h1  { font-size: 2.5rem; }

    .activities-hero p,
    .page-hero-overlay p   { font-size: 1.1rem; }

    /* ── Grids ── */
    .gallery-grid,
    .offers-grid           { grid-template-columns: 1fr; gap: 1.5rem; }
    .instagram-grid        { grid-template-columns: repeat(2, 1fr); }
    .gallery-item.large,
    .gallery-item.wide     { grid-column: auto; grid-row: auto; aspect-ratio: 1/1; }

    .activities-grid-main  { grid-template-columns: 1fr; gap: 2rem; }
    .benefits-grid,
    .faq-mini-grid         { grid-template-columns: 1fr; }

    /* FIX: !important to override inline style on footer-grid */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    /* ── Images / card heights ── */
    .room-image,
    .house-image,
    .offer-image           { height: 200px; }
    .activity-card-image   { height: 220px; }
    .gallery-main          { height: 250px; }
    .gallery-thumb         { height: 120px; }

    /* ── Carousels ── */
    .houses-carousel-image { aspect-ratio: 4/3; }
    .houses-carousel-overlay h3 { font-size: 2.5rem; }
    .houses-carousel-overlay p  { font-size: 1.1rem; margin-bottom: 1.5rem; }

    .gallery-carousel-image { aspect-ratio: 4/3; }
    .gallery-carousel-overlay h3 { font-size: 1.8rem; }
    .gallery-carousel-overlay p  { font-size: 1rem; }

    /* Activities: 1 card per view on mobile */
    .carousel-slide-2perview {
        flex: 0 0 calc(100% - 2rem);
        min-width: unset;       /* FIX: remove 280px min so it can shrink */
    }

    .carousel-slide        { flex: 0 0 calc(100% - 2rem); }
    .carousel-arrow        { width: 40px; height: 40px; font-size: 1rem; }
    .activity-card-link .activity-image { height: 200px; }
    .activity-card-link h3 { font-size: 1.6rem; }

    /* ── Typography ── */
    .philosophy-section    { margin: 3rem auto; }
    .poetic-text           { font-size: 2rem; padding: 0 1rem; }
    .philosophy-description { font-size: 1.5rem; padding: 0 1rem; }

    .house-details         { padding: 1.5rem; }
    .house-details h2      { font-size: 2rem; }
    .activity-card-content h3 { font-size: 1.8rem; }
    .info-card             { padding: 1.5rem; }
    .info-card h3          { font-size: 1.8rem; }
    .activities-note       { padding: 2rem; margin: 2rem auto; }
    .activities-note p     { font-size: 1.2rem; }
    .cta-section           { margin: 3rem auto; padding: 0 1rem; }

    /* ── Layout ── */
    .container             { padding: 0 20px; }

    /* ── Forms ── */
    .booking-form-modern,
    .contact-info-modern   { padding: 2rem; }
    .booking-form-modern h2,
    .contact-info-modern h2 { font-size: 2rem; }
    .form-row              { grid-template-columns: 1fr; gap: 0; }
    .contact-item-3d       { flex-direction: column; text-align: center; gap: 1rem; }
    .whatsapp-notice       { flex-direction: column; text-align: center; }

    /* ── Meta tags ── */
    .activity-meta,
    .offer-meta            { flex-direction: column; gap: 0.5rem; }

    /* ── Kidoni ── */
    .specs-grid-rooster    { grid-template-columns: 1fr; gap: 1rem; }
    .kidoni-hero-box       { padding: 3rem 1rem; }
    .specs-grid            { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; padding: 2rem 0; }
    .portrait-grid         { grid-template-columns: 1fr; }
    .amenities-grid        { grid-template-columns: 1fr; }
    .gallery-asymmetric    { grid-template-columns: 1fr; }
    .gallery-vertical:last-child { margin-bottom: 0; }
}

/* ── 480px – Small phone ──────────────────────────────────── */
@media (max-width: 480px) {

    /* ── Header ── */
    .hero-logo             { max-width: 150px; }
    .book-now-btn          { padding: 0.5rem 1rem; font-size: 0.85rem; }
    .slide-menu            { width: 280px; }
    .menu-nav > ul > li > a { font-size: 1.6rem; }
    .menu-nav .submenu a   { font-size: 1rem; }

    /* ── Type ── */
    .section-title         { font-size: 2rem; }
    .philosophy-description { font-size: 1.3rem; }
    .poetic-text           { font-size: 1.7rem; }

    /* ── Feature grid ── */
    .instagram-grid        { grid-template-columns: 1fr; }
    .feature-icon          { font-size: 2.8rem; }
    .feature-item h3       { font-size: 1.5rem; }

    /* ── Carousels ── */
    .gallery-carousel-image { aspect-ratio: 1/1; }
    .gallery-carousel-overlay { padding: 2rem 1.5rem 1.5rem; }
    .gallery-carousel-overlay h3 { font-size: 1.5rem; }

    .houses-carousel-image { aspect-ratio: 1/1; }
    .houses-carousel-overlay h3 { font-size: 2rem; }
    .houses-carousel-overlay p  { font-size: 1rem; }
    .houses-carousel-overlay .btn-3d { padding: 0.7rem 2rem; font-size: 1rem; }

    .activity-card-link .activity-content { padding: 1.5rem 1rem 1.8rem; }
    .explore-btn           { padding: 0.6rem 1.5rem; }
    .activity-card-badge   { padding: 0.4rem 1rem; font-size: 0.8rem; }

    /* ── Forms ── */
    .booking-form-modern,
    .contact-info-modern   { padding: 1.5rem; }
    .contact-icon          { width: 60px; height: 60px; font-size: 1.5rem; }
    .contact-text h3       { font-size: 1.3rem; }

    /* ── Kidoni ── */
    .specs-grid            { grid-template-columns: 1fr; gap: 1rem; }
    .kidoni-description    { font-size: 1.2rem; }
    .kidoni-hero-box h1    { font-size: 3rem; }
}


/* ── Accessibility: respect reduced-motion preference ─────── */
@media (prefers-reduced-motion: reduce) {
    /* Stop parallax on hero */
    .parallax-hero         { transform: none !important; will-change: unset; }

    /* Stop all CSS animations and transitions */
    *, *::before, *::after {
        animation-duration:   0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration:  0.01ms !important;
        scroll-behavior:      auto !important;
    }
}


/* ============================================================
   36. UTILITIES & PERFORMANCE
   ============================================================ */

/* Prevent tap flash on interactive elements */
.btn-3d,
.cta-button,
.hamburger,
.close-menu,
.gallery-item,
.room-item,
.feature-item,
.activity-card,
.gallery-thumb {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

html { -webkit-overflow-scrolling: touch; }

/* Lazy-render hints for large off-screen sections only.
 * FIX: was applied to ALL img tags which causes CLS (layout shift) because
 *      the browser skips computing image size until they scroll into view.
 *      Restrict to the section containers instead. */
.gallery-grid,
.rooms-grid,
.activities-grid-main {
    content-visibility: auto;
    contain-intrinsic-size: 1000px;
}