/* ============================================
   HOMEPAGE STYLES - Earthy, Calm Design
   ============================================ */

:root {
    /* Earthy Color Palette */
    --color-bg-primary: #FDFCFA;
    --color-bg-secondary: #F5F3EF;
    --color-bg-warm: #F0EDE6;
    --color-accent-sage: #7D8B6A;
    --color-accent-sage-dark: #5F6B50;
    --color-accent-brown: #A68B5B;
    --color-accent-brown-light: #C9B896;
    --color-text-primary: #3D3D3D;
    --color-text-secondary: #5A5A5A;
    --color-text-muted: #7A7A7A;
    --color-white: #FFFFFF;
    --color-border: rgba(125, 139, 106, 0.2);
}

.homepage-body {
    font-family: 'Inter', sans-serif;
    color: var(--color-text-primary);
    background: var(--color-bg-primary);
    line-height: 1.8;
}

/* Container */
.container-wide {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Organic Wave Divider */
.section-wave {
    position: relative;
}

.section-wave::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    height: 120px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%23F5F3EF' d='M0,64 C480,120 960,0 1440,64 L1440,120 L0,120 Z'/%3E%3C/svg%3E") no-repeat center;
    background-size: cover;
    z-index: 1;
    pointer-events: none;
}

/* ============================================
   SECTION A: HERO
   ============================================ */

.hero-section-full {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-video,
.hero-fallback-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay-dark {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-content-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
    letter-spacing: 0.02em;
}

.hero-subheadline {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-hero-primary {
    background: var(--color-accent-sage);
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(125, 139, 106, 0.3);
    border: none;
}

.btn-hero-primary:hover {
    background: var(--color-accent-sage-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(125, 139, 106, 0.4);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

/* ============================================
   SECTION B: ABOUT THE LAND
   ============================================ */

.section-about {
    padding: 10rem 0 8rem;
    background: var(--color-bg-secondary);
    position: relative;
}

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

.about-media {
    position: relative;
}

.about-image-collage {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-image-main {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.about-image-overlay {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 40%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 4px solid #ffffff;
}

.about-content {
    padding: 2rem 0;
}

.section-title-large {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--color-text-primary);
    line-height: 1.3;
}

.about-text {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    line-height: 2;
}

.about-features {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.about-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4a4a4a;
    font-size: 1.1rem;
}

.about-features li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--color-accent-sage);
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1;
}

/* ============================================
   SECTION C: SERVICES GRID
   ============================================ */

.section-services {
    padding: 8rem 0 10rem;
    background: var(--color-bg-primary);
}

.section-title-center {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--color-text-primary);
    letter-spacing: 0.02em;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 5rem;
    letter-spacing: 0.05em;
}

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

.service-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    border: 1px solid var(--color-border);
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card:nth-child(5) {
    animation-delay: 0.5s;
}

.service-card:nth-child(6) {
    animation-delay: 0.6s;
}

.service-card:nth-child(7) {
    animation-delay: 0.7s;
}

.service-card:nth-child(8) {
    animation-delay: 0.8s;
}

.service-card:nth-child(9) {
    animation-delay: 0.9s;
}

.service-card:nth-child(10) {
    animation-delay: 1s;
}

.service-card:nth-child(11) {
    animation-delay: 1.1s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

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

.service-card-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

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

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-card-overlay {
    opacity: 1;
}

.service-card-content {
    padding: 2rem;
}

.service-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.service-card-description {
    color: #6a6a6a;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-card-cta {
    color: #8DAA85;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-card-cta {
    color: #758E75;
}

/* ============================================
   SECTION D: VIDEO STRIP
   ============================================ */

.section-video {
    padding: 0;
    margin: 6rem 0;
}

.video-strip-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.video-strip {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-strip-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.video-strip-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    text-align: center;
}

.video-strip-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.btn-video-play {
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-video-play:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    z-index: 2;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    z-index: 3;
}

.video-modal-player {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* ============================================
   SECTION E: GALLERY
   ============================================ */

.section-gallery {
    padding: 6rem 0;
    background: #f9f9f9;
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    grid-auto-rows: 10px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: #ffffff;
    padding: 1.5rem 1rem 1rem;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Gallery Lightbox */
.gallery-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
}

.gallery-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 2;
}

.lightbox-close {
    top: 2rem;
    right: 2rem;
}

.lightbox-prev {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
}

.lightbox-caption {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-size: 1.1rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
}

/* ============================================
   SECTION F: SEASONAL HIGHLIGHT
   ============================================ */

.section-seasonal {
    padding: 8rem 0;
    background: var(--color-bg-warm);
}

.seasonal-card {
    background: var(--color-white);
    border-radius: 8px;
    padding: 5rem 4rem;
    text-align: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--color-border);
}

.seasonal-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--color-text-primary);
}

.seasonal-description {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    margin-bottom: 2.5rem;
    line-height: 2;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-seasonal {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--color-accent-sage);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.btn-seasonal:hover {
    background: var(--color-accent-sage-dark);
    transform: translateY(-2px);
}

/* ============================================
   SECTION G: TESTIMONIALS
   ============================================ */

.section-testimonials {
    padding: 8rem 0;
    background: var(--color-bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: var(--color-white);
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--color-border);
}

.testimonial-stars {
    color: var(--color-accent-brown);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.2em;
}

.testimonial-quote {
    font-size: 1rem;
    color: var(--color-text-secondary);
    font-style: italic;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 500;
    color: var(--color-text-primary);
    font-size: 0.9rem;
}

/* ============================================
   SECTION H: NEWSLETTER
   ============================================ */

.section-newsletter {
    padding: 8rem 0;
    background: var(--color-bg-primary);
}

.newsletter-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--color-bg-secondary);
    padding: 4rem 3rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--color-border);
}

.newsletter-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
}

.newsletter-description {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.newsletter-form {
    margin-top: 2rem;
}

.newsletter-input-group {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.9rem 1.25rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
    background: var(--color-white);
}

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

.btn-newsletter {
    padding: 0.9rem 2rem;
    background: var(--color-accent-sage);
    color: var(--color-white);
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.btn-newsletter:hover {
    background: var(--color-accent-sage-dark);
    transform: translateY(-1px);
}

.newsletter-success {
    color: var(--color-accent-sage);
    font-weight: 500;
    margin-top: 1rem;
}

.newsletter-error {
    color: #c33;
    margin-top: 1rem;
}

/* ============================================
   SECTION I: FOOTER
   ============================================ */

.site-footer-homepage {
    padding: 4rem 0 2rem;
    background: #1a1a1a;
    color: #ffffff;
}

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

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #8DAA85;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #8DAA85;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-amenity {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #8DAA85;
    font-weight: 600;
}

.footer-copyright {
    color: #999999;
    font-size: 0.9rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* ============================================
   BOOKING BUTTONS
   ============================================ */

.booking-buttons-section {
    margin: 2rem 0;
    padding: 2rem 0;
}

.booking-buttons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.booking-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.booking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    filter: brightness(1.1);
}

.booking-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.booking-text {
    white-space: nowrap;
}

/* Small size for homepage cards */
.booking-buttons-small {
    gap: 0.5rem;
}

.booking-btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    gap: 0.5rem;
}

.booking-icon-small {
    width: 16px;
    height: 16px;
}

.booking-text-small {
    font-size: 0.85rem;
}

/* Default size for service pages */
.booking-buttons-default {
    gap: 1rem;
}

.booking-btn-default {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.booking-icon-default {
    width: 20px;
    height: 20px;
}

.booking-text-default {
    font-size: 1rem;
}

/* Fallback message */
.booking-fallback {
    text-align: center;
    font-size: 0.9rem;
    color: #6a6a6a;
    font-style: italic;
    padding: 1rem;
}

/* Service card booking buttons on homepage */
.service-card-booking {
    padding: 1rem 2rem 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card-booking .booking-buttons-container {
    justify-content: flex-start;
}

/* ============================================
   NAVIGATION DROPDOWN
   ============================================ */

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 280px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
}

.nav-dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #1a1a1a;
    text-decoration: none;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
}

.nav-dropdown-item:last-child {
    border-bottom: none;
}

.nav-dropdown-item:hover {
    background-color: #f5f5f5;
    opacity: 1;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-subheadline {
        font-size: 1.2rem;
    }

    .hero-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
    }

    .section-title-large,
    .section-title-center {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .newsletter-input-group {
        flex-direction: column;
    }

    .btn-newsletter {
        width: 100%;
    }

    .video-strip-title {
        font-size: 2rem;
    }

    .seasonal-card {
        padding: 2.5rem;
    }

    .newsletter-card {
        padding: 2.5rem;
    }

    /* Booking buttons mobile */
    .booking-buttons-container {
        flex-direction: column;
        width: 100%;
    }

    .booking-btn {
        width: 100%;
        justify-content: center;
    }

    .service-card-booking .booking-buttons-container {
        flex-direction: column;
    }

    .service-card-booking .booking-btn {
        width: 100%;
    }

    /* Navigation dropdown mobile */
    .nav-dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 0;
        margin-top: 0;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
        max-height: none;
    }
}

@media (max-width: 480px) {
    .container-wide {
        padding: 0 1rem;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .gallery-masonry {
        grid-template-columns: 1fr;
    }
}