/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Photo Gallery Section */
.photo-gallery-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-header h2 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.gallery-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-main {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.gallery-main img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

/* Gallery Navigation inside image */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.gallery-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    pointer-events: all;
    transition: all 0.3s ease;
    color: #27ae60;
}

.gallery-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.gallery-btn:active {
    transform: scale(0.95);
}

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

/* Gallery Dots inside image */
.gallery-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    justify-content: center;
    padding: 0 20px;
    width: calc(100% - 40px);
    box-sizing: border-box;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.gallery-dot:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

.gallery-dot.active {
    background: #27ae60;
    border-color: #27ae60;
    transform: scale(1.3);
}

/* Mobile Responsive */
/* Mobile Responsive - Gallery */
@media (max-width: 768px) {
    .photo-gallery-section {
        padding: 60px 0;
    }
    
    .gallery-header {
        margin-bottom: 40px;
    }
    
    .gallery-main img {
        height: 250px;
    }
    
    .gallery-dots {
        gap: 10px;
        bottom: 15px;
    }
    
    .gallery-dot {
        width: 14px;
        height: 14px;
    }
    
    .gallery-btn {
        width: 40px;
        height: 40px;
    }
    
    .gallery-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .gallery-nav {
        padding: 0 15px;
    }
    
    /* About Gallery */
    .about-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }
    
    .about-gallery-item img {
        height: 250px;
    }
    
    /* Scroll Arrow Mobile Styles - HIDDEN */
    .scroll-arrow-container {
        display: none;
    }
    
    
    /* Prevent text overflow */
    h1, h2, h3, h4, h5, h6, p, li, span, div {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        max-width: 100%;
        overflow: hidden;
    }
    
    /* Ensure images don't overflow */
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.25rem;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.7;
}

/* Color Variables */
:root {
    --primary-orange: #18716c;
    --text-black: #000;
    --text-gray: #666;
    --white: #fff;
    --light-gray: #f5f2eb;
    --border-gray: #e5e5e5;
}

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

/* Navigation */
.nav-transparent {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

.nav-transparent.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.nav-transparent.scrolled .nav-logo h3 {
    color: var(--text-black);
}

.nav-transparent.scrolled .nav-logo .logo-img {
    filter: none;
}

.nav-transparent.scrolled .nav-link {
    color: var(--text-black);
}

.nav-transparent.scrolled .nav-toggle span {
    background: var(--text-black);
}

.nav-container {
    width: 100%;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-logo h3 {
    margin: 0;
    font-size: 2rem;
    color: var(--white);
    font-weight: 400;
    letter-spacing: 2px;
}

.nav-logo .logo-img {
    height: 68px;
    width: auto;
    max-width: 270px;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.nav-logo .logo-img[src$=".svg"] {
    filter: brightness(0) invert(1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    font-size: 0.9rem;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 300;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-link:hover,
.nav-link.active {
    color: #f5f2eb;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-book-btn {
    background: var(--primary-orange);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-book-btn:hover {
    background: #003d2a;
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
    transform-origin: center;
    position: absolute;
}

.nav-toggle span:nth-child(1) {
    top: 8px;
}

.nav-toggle span:nth-child(2) {
    top: 14px;
}

.nav-toggle span:nth-child(3) {
    top: 20px;
}

/* Animated hamburger to cross */
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 14px;
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 14px;
}

/* Change hamburger color when scrolled or when menu is active */
.nav-transparent.scrolled .nav-toggle span,
.nav-toggle.active span {
    background: var(--text-black);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('outdoor_01.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    white-space: nowrap;
    font-size: clamp(2.4rem, 4.8vw, 3.6rem);
}

.hero-title-normal {
    font-family: 'IBM Plex Sans', sans-serif;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 0.95em;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
}

.scroll-arrow-container {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    cursor: pointer;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 0.25px solid white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.scroll-arrow svg {
    width: 20px;
    height: 20px;
    stroke: white;
    stroke-width: 0.25;
}

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

.hero-cta-btn {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: transparent;
    color: var(--white);
    border: 0.25px solid var(--white);
    border-radius: 0;
    padding: 1rem 2rem;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    position: relative;
    overflow: hidden;
}

.hero-cta-btn.experience-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--white);
    transition: left 0.5s ease;
    z-index: -1;
}

.hero-cta-btn.experience-btn:hover::before {
    left: 0;
}

.hero-cta-btn.experience-btn:hover {
    color: var(--text-black);
    transform: translateY(-2px);
}

.hero-cta-btn.experience-btn {
    border-radius: 0 !important;
}

.hero-cta-btn:hover {
    background: var(--white);
    color: var(--text-black);
    transform: translateY(-2px);
}

.hero-cta-btn.green {
    background: transparent;
    color: var(--text-black);
    border: 0.25px solid var(--text-black);
    font-weight: 200;
    position: static;
    display: inline-block;
    text-decoration: none;
}

.hero-cta-btn.green:hover {
    background: var(--text-black);
    color: var(--white);
    transform: translateY(-2px);
}

/* Bike Package Pulse Button - Bewährte Methode */
.pulse-button-container {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 1001;
}

.pulse-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--primary-orange);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(24, 113, 108, 0.4);
}

/* Puls-Animation */
.pulse-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-orange);
    border-radius: 50px;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.button-text {
    color: white;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    opacity: 0;
    width: 0;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pulse-button:hover {
    width: 160px;
    height: 45px;
    border-radius: 25px;
    background: var(--primary-orange);
    box-shadow: 0 6px 20px rgba(24, 113, 108, 0.5);
    transform: translateY(-2px);
}

.pulse-button:hover::before {
    animation: none;
    opacity: 0;
}

.pulse-button:hover .button-text {
    opacity: 1;
    width: auto;
    margin: 0 20px;
}

.pulse-button:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(24, 113, 108, 0.4);
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 0;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.cta-button.primary {
    background: var(--primary-orange);
    color: var(--white);
}

.cta-button.primary:hover {
    background: var(--text-black);
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    color: var(--white);
    border: 0.25px solid var(--white);
}

.cta-button.secondary:hover {
    background: var(--white);
    color: var(--text-black);
    transform: translateY(-2px);
}

/* Booking Section */
.booking-section {
    padding: 8rem 0;
    background: var(--light-gray);
}

.booking-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.booking-content h2 {
    margin-bottom: 1rem;
    color: var(--text-black);
}

.booking-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.booking-section .booking-form {
    background: var(--white);
    padding: 3rem;
    margin-top: 2rem;
}

.booking-section .booking-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Introduction Section */
.introduction {
    padding: 8rem 0;
    background: var(--white);
}

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

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

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

.intro-content h2 {
    margin-bottom: 2rem;
    color: var(--text-black);
}

.intro-description {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.intro-highlight {
    font-style: italic;
    color: var(--text-black);
    font-size: 1rem;
    margin-bottom: 3rem;
    padding-left: 2rem;
    border-left: 0.25px solid var(--primary-orange);
}




/* Mobile Slider - EXACT from slider-page.html */
/* Container */
.mobile-slider-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

/* Viewport */
.mobile-slider-viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Track */
.mobile-slider-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    will-change: transform;
}

/* Slides */
.mobile-slide {
    flex: 0 0 100%;
    width: 100%;
    position: relative;
}

/* Images */
.mobile-slide img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* Navigation Buttons */
.mobile-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
}

.mobile-slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    pointer-events: all;
    transition: transform 0.2s;
}

.mobile-slider-btn:hover {
    transform: scale(1.1);
}

.mobile-slider-btn:active {
    transform: scale(0.95);
}

/* Dots */
.mobile-slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

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

.mobile-dot.active {
    background: white;
    width: 24px;
    border-radius: 4px;
}

/* Counter */
.mobile-slider-counter {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .mobile-slide img {
        height: 350px;
    }
    
    .mobile-slider-btn {
        width: 50px;
        height: 50px;
    }
    
    .mobile-dot {
        width: 10px;
        height: 10px;
    }
    
    .mobile-dot.active {
        width: 30px;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .mobile-slide img {
        height: 450px;
    }
    
    .mobile-slider-btn {
        width: 60px;
        height: 60px;
    }
    
    .mobile-dot {
        width: 12px;
        height: 12px;
    }
    
    .mobile-dot.active {
        width: 36px;
    }
}

/* About Gallery Section - 5 Images Side by Side */
.about-gallery-section {
    padding: 40px 0 80px 0;
    background: var(--white);
}

.about-gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-gallery-header h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--text-black);
}

.about-gallery-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.about-gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    width: 100%;
    margin: 0;
}

.about-gallery-item {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.about-gallery-item:hover {
    transform: scale(1.02);
}

.about-gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

/* Fix any potential width issues */
* {
    box-sizing: border-box;
        max-width: 100%;
    }
    
@media (max-width: 768px) {
    /* Specific mobile text handling */
    .hero-title {
        font-size: clamp(1.5rem, 4vw, 3rem) !important;
        line-height: 1.2 !important;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 2.5vw, 1.2rem) !important;
    }
    
    /* Section titles */
    .introduction-text h2,
    .section-header h2,
    .experiences-header h2 {
        font-size: clamp(1.5rem, 3vw, 2.5rem) !important;
        line-height: 1.3 !important;
        hyphens: auto;
    }
    
    /* Long titles that might overflow */
    .guesthouse-overview-section h2,
    .stellenbosch-text h2 {
        font-size: clamp(1.3rem, 2.8vw, 2.2rem) !important;
        line-height: 1.3 !important;
        hyphens: auto;
    }
    
    /* Introduction Section - Mobile Only */
    .introduction-content {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
        display: grid !important;
    }
    
    .introduction-image {
        order: 2 !important;
    }
    
    .introduction-text {
        order: 1 !important;
    }

    .introduction-text h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .introduction-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .introduction-image {
        height: 300px;
    }

    
    /* Guesthouse Overview Section */
    .guesthouse-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        display: flex;
        flex-direction: column;
    }
    
    .guesthouse-categories {
        order: 1;
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100%;
        padding: 2rem 0 !important;
    }
    
    .guesthouse-details {
        order: 2;
        width: 100%;
    }
    
    .category-item {
        padding: 1.2rem 1.5rem !important;
        margin-bottom: 0.5rem !important;
        border-radius: 0 !important;
        border-left: 1px solid var(--border-gray) !important;
        text-align: center !important;
        width: 100%;
        max-width: 280px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .category-item.active {
        border-left-color: var(--primary-orange) !important;
        background: rgba(0, 31, 21, 0.05) !important;
    }
    
    .category-item h3 {
        font-size: 1rem !important;
        line-height: 1.4 !important;
    }
    
    /* Rooms Grid */
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    /* Room Content */
    .room-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    /* Family Parents */
    .family-parents {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    /* Contact Content */
    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
        display: block !important;
    }
    
    .contact-info {
        order: 1 !important;
        margin-bottom: 4rem !important;
    }
    
    .contact-form-container {
        order: 2 !important;
    }
    
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
    
    .full-width {
        grid-column: span 1;
    }
    
    /* Story Content */
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    /* Activities Grid 2x2 */
    .activities-grid-2x2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Experience Card Large - Mobile: 1x1 Grid with Text Below Image */
    .experience-card-large {
        grid-template-columns: 1fr !important;
        height: auto !important;
        display: block !important;
    }
    
    .experience-card-large .experience-image {
        width: 100%;
        height: 300px !important;
        order: 1 !important;
    }
    
    .experience-card-large .experience-overlay {
        width: 100%;
        height: auto !important;
        padding: 2rem !important;
        order: 2 !important;
        text-align: center !important;
    }
    
    .experience-card-large .experience-btn {
        align-self: center !important;
        margin: 0 auto !important;
    }
    
    /* Booking Form Grid */
    .booking-section .booking-form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Price Controls */
    .price-controls {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Intro Grid */
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 480px) {
    .about-gallery-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .about-gallery-item img {
        height: 200px;
    }
    
    /* Scroll Arrow Small Mobile Styles - HIDDEN */
    .scroll-arrow-container {
        display: none;
    }
    
    /* Container padding for small mobile */
    .container {
        padding: 0 0.5rem;
    }
    
    /* Enhanced overflow protection for small screens */
    h1, h2, h3, h4, h5, h6 {
        font-size: clamp(1.2rem, 2.5vw, 2rem) !important;
        line-height: 1.2 !important;
        word-break: break-word !important;
        hyphens: auto !important;
        overflow: hidden !important;
    }
    
    /* Hero title for small screens */
    .hero-title {
        font-size: clamp(1.3rem, 3.5vw, 2.5rem) !important;
        line-height: 1.1 !important;
    }
    
    /* Long section titles */
    .guesthouse-overview-section h2,
    .stellenbosch-text h2 {
        font-size: clamp(1.1rem, 2.2vw, 1.8rem) !important;
        line-height: 1.2 !important;
    }
    
    /* Ensure all text elements don't overflow */
    p, li, span, div, a {
        word-break: break-word !important;
    }
    
    /* EXPERIENCES GRID - SMALL MOBILE: 1 BOX PER ROW */
    .experiences-grid {
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
        gap: 1.5rem !important;
    }
    
    .experiences-grid .experience-card,
    .experiences-grid a.experience-card {
        display: block !important;
        width: 100%;
        height: 350px !important;
        margin-bottom: 0 !important;
        position: relative !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .experiences-activities-section .experiences-grid {
        display: block !important;
    }
    
    .experiences-activities-section .experiences-grid .experience-card {
        display: block !important;
        width: 100%;
        margin-bottom: 1.5rem !important;
    }
    
    /* ACTIVITIES GRID 2X2 - SMALL MOBILE: 1 BOX PER ROW */
    .activities-grid-2x2 {
        display: block !important;
    }
    
    .activities-grid-2x2 .activity-card {
        display: block !important;
        width: 100%;
        margin-bottom: 1.5rem !important;
    }
    
    
    
    /* Reduce gaps for small screens */
    .introduction-content,
    .guesthouse-content,
    .rooms-grid,
    .room-content,
    .family-parents,
    .contact-content,
    .story-content,
    .intro-grid {
        gap: 2rem;
    }
    
    .activities-grid-2x2 {
        gap: 1.5rem;
    }
}


/* Divider Section */
.divider {
    width: 100vw;
    height: calc(100vh - 100px);
    background-image: url('location_photo_ubuntu.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.divider-title {
    color: var(--white);
    text-align: center;
    z-index: 1;
}

.divider-title h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0;
}

/* Rooms Section */
.rooms {
    padding: 8rem 0;
    background: var(--white);
}

.rooms-header {
    text-align: center;
    margin-bottom: 5rem;
}

.rooms-header h2 {
    margin-bottom: 1rem;
}

.rooms-header p {
    font-size: 1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

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

.rooms-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-between;
}

.room-item {
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 0.25px solid transparent;
}

.room-item:hover,
.room-item.active {
    background: var(--light-gray);
    border-color: var(--primary-orange);
    transform: translateX(10px);
}

.room-item h3 {
    margin-bottom: 0.5rem;
    color: var(--text-black);
}

.room-item p {
    color: var(--text-gray);
    margin: 0;
    font-size: 1rem;
}

.rooms-image {
    position: sticky;
    top: 2rem;
    height: 100%;
}

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

/* Experiences Section */
.experiences {
    padding: 8rem 0;
    background: var(--white);
}

.experiences-header {
    text-align: center;
    margin-bottom: 3rem;
}

.experiences-header h2 {
    margin-bottom: 1rem;
}

.experiences-header p {
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    height: 550px;
    max-width: 1200px;
    margin: 0 auto;
}

.experience-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.experience-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

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

.experience-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 3rem 2rem;
    color: var(--white);
}

.experience-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.experience-badge {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 1rem;
}

.experience-center h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.experience-center p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0;
    opacity: 0.95;
}

.experience-btn {
    display: inline-block;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.2);
    border: 0.25px solid var(--white);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    margin-top: 0;
    text-transform: uppercase;
}

.experience-btn:hover {
    background: var(--white);
    color: var(--text-black);
    transform: translateY(-2px);
}

.experience-btn span {
    opacity: 0.7;
    margin: 0 0.5rem;
}

/* Activities List Section */
.activities-list {
    padding: 4rem 2rem;
    background: var(--white);
}

.activities-header {
    text-align: center;
    margin-bottom: 3rem;
}

.activities-header h2 {
    margin-bottom: 1rem;
}

.activities-header p {
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.activity-category {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 0;
}

.activity-category h3 {
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 500;
}

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

.activity-list li {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-gray);
}

.activity-list li strong {
    color: var(--text-black);
    font-weight: 500;
}

/* Room Section */
.room-section {
    padding: 8rem 0;
    background: var(--white);
}

.room-header {
    text-align: center;
    margin-bottom: 4rem;
}

.room-header h2 {
    margin-bottom: 1rem;
    color: var(--text-black);
}

.room-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

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

.room-tab {
    background: transparent;
    color: var(--text-gray);
    border: 0.25px solid var(--border-gray);
    padding: 1rem 2rem;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.room-tab:hover {
    border-color: var(--primary-orange);
    color: var(--text-black);
}

.room-tab.active {
    background: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
}

.room-tab-content {
    display: none;
}

.room-tab-content.active {
    display: block;
}

.room-subheader {
    text-align: center;
    margin-bottom: 3rem;
}

.room-subheader h3 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    color: var(--text-black);
}

.room-subheader p {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Price Calculator */
.price-calculator {
    margin-top: 4rem;
    margin-bottom: 4rem;
    padding: 1.5rem;
    background: var(--white);
    border-left: 0.25px solid var(--primary-orange);
}

.price-calculator h3 {
    margin-bottom: 1.5rem;
    color: var(--text-black);
    font-size: 1.3rem;
    text-align: center;
}

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

.guest-selector label,
.date-selector label {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--text-black);
    font-weight: 500;
    font-size: 0.8rem;
}

.guest-buttons {
    display: flex;
    gap: 0.3rem;
}

.guest-btn {
    flex: 1;
    padding: 0.6rem 0.8rem;
    background: transparent;
    color: var(--text-gray);
    border: 0.25px solid var(--border-gray);
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.guest-btn:hover {
    border-color: var(--primary-orange);
    color: var(--text-black);
}

.guest-btn.active {
    background: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
}

.date-selector input {
    width: 100%;
    padding: 0.6rem;
    border: 0.25px solid var(--border-gray);
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.8rem;
    background: var(--white);
    color: var(--text-black);
}

.date-selector input:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.price-result {
    text-align: center;
    padding: 1rem;
    background: rgba(0, 31, 21, 0.05);
    border-radius: 0;
    position: relative;
}

.price-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.price-amount {
    color: var(--primary-orange);
    font-size: 1.4rem;
    font-weight: 600;
}

.book-now-btn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 0.6rem 1.2rem;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-now-btn:hover {
    background: var(--text-black);
    transform: translateY(-2px);
}

/* Amenities Section */
.amenities-section {
    margin-top: 0;
    padding-top: 0;
    border-top: 0.25px solid var(--border-gray);
}

.amenities-section:not(:first-of-type) {
    margin-top: 0;
}

.amenities-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 1rem 0;
    border-bottom: 0.25px solid var(--border-gray);
    transition: all 0.3s ease;
}

.amenities-header:hover {
    background: rgba(0, 31, 21, 0.05);
}

.amenities-header h3 {
    margin: 0;
    color: var(--text-black);
    font-size: 1.5rem;
}

.amenities-icon {
    position: relative;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    transition: all 0.3s ease;
}

.amenities-icon::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 20px;
    background: currentColor;
    transition: all 0.3s ease;
}

.amenities-icon::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: currentColor;
    transition: all 0.3s ease;
}

.amenities-icon.rotated::before {
    transform: rotate(45deg);
}

.amenities-icon.rotated::after {
    transform: rotate(45deg);
}

.amenities-table {
    background: var(--white);
    padding: 2rem;
    border-left: 0.25px solid var(--primary-orange);
}

.amenities-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 0.25px solid var(--border-gray);
    align-items: center;
}

.amenities-row:last-child {
    border-bottom: none;
}

.amenities-label {
    color: var(--text-black);
    font-size: 0.95rem;
    line-height: 1.4;
}

.amenities-value {
    color: var(--primary-orange);
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    min-width: 30px;
}

.room-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
    margin-bottom: 6rem;
}

.room-table {
    background: var(--white);
    padding: 2rem;
    border-left: 0.25px solid var(--primary-orange);
    height: 100%;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1rem;
    padding: 1.2rem 0;
    border-bottom: 0.25px solid var(--border-gray);
}

.table-row:last-child {
    border-bottom: none;
}

.table-label {
    font-weight: 500;
    color: var(--text-black);
    font-size: 0.95rem;
}

.table-value {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.room-gallery h3 {
    margin-bottom: 2rem;
    color: var(--text-black);
    font-size: 1.5rem;
}

.gallery-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.main-image {
    flex: 1;
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 0;
}

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

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

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

.thumbnail-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    border-radius: 0;
}

.thumbnail-item:hover {
    transform: scale(1.05);
    border-color: var(--primary-orange);
}

.thumbnail-item.active {
    border-color: var(--primary-orange);
    transform: scale(1.05);
}

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

/* About Us Section */
.about-us-section {
    padding: 6rem 2rem;
    background: var(--white);
}

.about-page .about-us-section {
    padding: 4rem 2rem 6rem 2rem;
}

.about-us-section h2 {
    text-transform: uppercase !important;
}

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


.about-us-main {
    text-align: center;
}

.about-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: var(--text-black);
    letter-spacing: 1.5px;
}

.about-intro {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 6rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.family-picture-section {
    margin: 6rem 0;
    width: 100%;
}

.family-picture-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.family-picture-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.family-picture-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.family-section {
    text-align: left;
    margin-top: 6rem;
}

.family-section-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 400;
    text-align: center;
    margin-bottom: 5rem;
    color: var(--text-black);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 2rem;
}

.family-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--primary-orange);
}

.family-parents {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.family-member {
    padding: 3rem 2.5rem;
    background: var(--white);
    border-left: 3px solid var(--primary-orange);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.family-member-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem auto;
    border: 3px solid var(--primary-orange);
}

.family-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.family-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,31,21,0.05) 0%, rgba(0,31,21,0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.family-member:hover::before {
    opacity: 1;
}

.family-member:hover {
    transform: translateY(-8px);
    border-left-width: 3px;
    box-shadow: 0 15px 40px rgba(0,31,21,0.2);
}

.family-member h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-black);
    font-weight: 400;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.family-member:hover h3 {
    color: var(--primary-orange);
}

.family-member p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin: 0;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.family-member:hover p {
    color: var(--text-black);
}

.family-children {
    text-align: center;
}

.family-children h4 {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-black);
    font-weight: 300;
}

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

.child-member {
    padding: 2.5rem 2rem;
    background: var(--white);
    border-top: 3px solid var(--primary-orange);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.child-member-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem auto;
    border: 2px solid var(--primary-orange);
}

.child-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.child-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,31,21,0.05) 0%, rgba(0,31,21,0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.child-member:hover::before {
    opacity: 1;
}

.child-member:hover {
    transform: translateY(-6px);
    border-top-width: 3px;
    box-shadow: 0 12px 30px rgba(0,31,21,0.15);
}

.child-member h5 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: var(--text-black);
    font-weight: 400;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.child-member:hover h5 {
    color: var(--primary-orange);
}

.child-member p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin: 0;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.child-member:hover p {
    color: var(--text-black);
}

.child-member a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.child-member a:hover {
    color: var(--text-black);
    text-decoration: underline;
}

/* Location Map Section */
.location-map {
    padding: 6rem 2rem;
    background: var(--white);
}

.map-header {
    text-align: center;
    margin-bottom: 4rem;
}

.map-header h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--text-black);
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.map-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.map-placeholder {
    position: relative;
    height: 500px;
    width: 100%;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0,31,21,0.1);
    transition: box-shadow 0.3s ease;
    overflow: hidden;
}

.map-placeholder:hover {
    box-shadow: 0 15px 40px rgba(0,31,21,0.15);
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,31,21,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-marker {
    text-align: center;
    color: var(--white);
}

.marker-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    border: 0.25px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.marker-label {
    font-size: 1.2rem;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}


.map-info {
    padding: 2rem;
    background: var(--light-gray);
    border-left: 0.25px solid var(--primary-orange);
}

.map-details h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
    color: var(--text-black);
    margin-bottom: 1rem;
    font-weight: 400;
}

.map-details > p {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-style: italic;
}

.map-contact p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.map-contact strong {
    color: var(--text-black);
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: var(--light-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
}

.contact-description {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h4 {
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-black);
    font-size: 1rem;
    margin: 0;
}

.contact-link {
    color: var(--primary-orange);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-link:hover {
    color: var(--text-black);
    text-decoration: underline;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
}

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

.full-width {
    grid-column: span 2;
}

/* Form Styles */
.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-black);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 0.25px solid var(--border-gray);
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--white);
}

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

.booking-form-grid .cta-button {
    grid-column: span 2;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--text-black);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-logo .logo-img {
    height: 90px;
    width: auto;
    max-width: 375px;
    display: block;
    margin-bottom: 1rem;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-logo p {
    color: #ccc;
    font-style: italic;
}

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

.footer-column h4 {
    font-family: 'DM Serif Display', serif;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--white);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-orange);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .experiences-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        height: 500px;
    }
    
    .experience-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
    
    
    .guesthouse-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    /* Keep 2-column layout for Introduction on tablets */
    .introduction-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}


@media (max-width: 768px) {
    /* EXPERIENCES GRID - MOBILE: 1 BOX PER ROW */
    .experiences-grid {
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
        gap: 2rem !important;
    }
    
    .experiences-grid .experience-card,
    .experiences-grid a.experience-card {
        display: block !important;
        width: 100%;
        height: 400px !important;
        margin-bottom: 0 !important;
        position: relative !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* EXPERIENCES & ACTIVITIES - ALTERNATIVE APPROACH */
    .experiences-activities-section .experiences-grid {
        display: block !important;
    }
    
    .experiences-activities-section .experiences-grid .experience-card {
        display: block !important;
        width: 100%;
        margin-bottom: 2rem !important;
        height: 400px !important;
    }
    
    /* ACTIVITIES GRID 2X2 - MOBILE: 1 BOX PER ROW */
    .activities-grid-2x2 {
        display: block !important;
    }
    
    .activities-grid-2x2 .activity-card {
        display: block !important;
        width: 100%;
        margin-bottom: 2rem !important;
    }
    
    /* Navigation */
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        opacity: 0;
        transform: translateY(-100%);
        transition: all 0.4s ease;
        gap: 3rem;
        pointer-events: none;
    }
    
    .nav-menu.active {
        pointer-events: auto;
    }
    
    
    /* ALL OTHER MOBILE STYLES */
    .hero-header {
        height: 100vh;
        background-attachment: scroll;
    }

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

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .intro-text {
        text-align: center;
    }

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

    .rooms-image {
        height: 300px;
    }

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

    .contact-form-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .full-width {
        grid-column: span 1 !important;
    }
    
    .contact-form .form-group {
        margin-bottom: 1.5rem !important;
    }
    
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        width: 100%;
        padding: 1rem !important;
    }

    .booking-form {
        padding: 3rem;
    }

    .contact-form {
        padding: 3rem;
    }

    .introduction,
    .rooms,
    .contact {
        padding: 6rem 0;
    }

    .intro-highlight {
        padding-left: 1.5rem;
    }

    .category-item h3 {
        font-size: 1rem;
    }

    .experiences-activities-section .card-front,
    .experiences-activities-section .card-back {
        padding: 1.5rem;
    }

    .experiences-activities-section .card-front h3,
    .experiences-activities-section .card-back h3 {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .experiences-activities-section .card-back li {
        font-size: 0.85rem;
    }

    .introduction-text h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .introduction-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .introduction-image {
        height: 300px;
    }


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

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

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

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

    .experience-card-large {
        grid-template-columns: 1fr !important;
        height: auto !important;
        display: block !important;
    }
    
    .experience-card-large .experience-image {
        width: 100%;
        height: 250px !important;
        order: 1 !important;
    }
    
    .experience-card-large .experience-overlay {
        width: 100%;
        height: auto !important;
        padding: 1.5rem !important;
        order: 2 !important;
        text-align: center !important;
    }
    
    .experience-card-large .experience-btn {
        align-self: center !important;
        margin: 0 auto !important;
    }

    .booking-section .booking-form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .price-controls {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .nav-menu.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu .nav-link {
        color: var(--text-black);
        font-size: 1.5rem;
        font-weight: 300;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .nav-menu .nav-book-btn {
        margin-top: 4rem;
        text-align: center;
        font-size: 1.5rem;
        font-weight: 300;
        padding: 1rem 2rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        border-radius: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 10000;
        position: relative;
        cursor: pointer;
    }

    /* Ensure navigation toggle stays on top of full-screen menu */
    .nav-container {
        position: relative;
        z-index: 1002;
    }

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

    .intro-image {
        order: 2;
    }

    .intro-content {
        order: 1;
    }

    .booking-section .booking-form-grid {
        grid-template-columns: 1fr;
    }

    .booking-section .booking-form {
        padding: 2rem;
    }




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

    .rooms-image {
        position: static;
        order: 1;
    }

    .rooms-list {
        order: 2;
    }

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

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem;
    }

    .booking-section,
    .introduction,
    .rooms,
    .contact {
        padding: 4rem 0;
    }
    
    

    .hero-background {
        background-attachment: scroll;
    }

    .hero-cta-btn {
        bottom: 1rem;
        right: 1rem;
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }


    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
    }

    .footer-links {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
    }
    
    .footer-column {
        margin-bottom: 2rem !important;
        text-align: center !important;
    }
    
    .footer-column h4 {
        margin-bottom: 1rem !important;
    }
    
    .footer-column ul {
        text-align: center !important;
    }

    .intro-highlight {
        padding-left: 1rem;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .activity-category {
        padding: 1.5rem;
    }

    .about-us-section {
        padding: 4rem 1.5rem;
    }


    .about-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .about-intro {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    .family-picture-section {
        margin: 3rem 0;
    }

    .family-section {
        margin-top: 3rem;
    }

    .family-section-title {
        font-size: 1.8rem;
        margin-bottom: 3rem;
    }

    .family-parents {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .family-member {
        padding: 2rem;
    }

    .family-member h3 {
        font-size: 1.6rem;
    }

    .family-children h4 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .children-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .child-member {
        padding: 1.5rem;
    }

    .child-member h5 {
        font-size: 1.3rem;
    }

    .location-map {
        padding: 4rem 1.5rem;
    }

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

    .map-placeholder {
        height: 300px;
    }
    
    
    .marker-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .marker-label {
        font-size: 1rem;
    }

    .map-info {
        padding: 1.5rem;
    }

    .map-details h3 {
        font-size: 1.6rem;
    }

    .room-section {
        padding: 4rem 0;
    }

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

    .room-table {
        padding: 1.5rem;
    }

    .table-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 0.8rem 0;
    }

    .main-image img {
        height: 300px;
    }

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

    .thumbnail-item img {
        height: 100px;
    }

    .room-tabs {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1.5rem;
    }

    .room-tab {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }

    .amenities-section {
        margin-top: 0;
        padding-top: 1rem;
    }

    .amenities-table {
        padding: 1.5rem;
    }

    .amenities-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 0.6rem 0;
        text-align: center;
    }

    .amenities-value {
        font-size: 1rem;
    }

    .amenities-header {
        padding: 0.8rem 0;
    }

    .amenities-header h3 {
        font-size: 1.3rem;
    }

    .amenities-icon {
        width: 25px;
        height: 25px;
    }

    .amenities-icon::before {
        height: 16px;
        width: 1.5px;
    }

    .amenities-icon::after {
        width: 16px;
        height: 1.5px;
    }

    .price-controls {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .price-calculator {
        padding: 1rem;
        margin-bottom: 3rem;
    }

    .price-amount {
        font-size: 1.2rem;
    }

    .book-now-btn {
        position: static;
        margin-top: 1rem;
        width: 100%;
    }



    .category-item {
        padding: 1rem 1.5rem;
        border-left: 1px solid var(--border-gray);
        border-radius: 0;
    }

    .category-item h3 {
        font-size: 1rem;
    }


    .experiences-activities-section .card-front,
    .experiences-activities-section .card-back {
        padding: 1.5rem;
    }

    .experiences-activities-section .card-front h3,
    .experiences-activities-section .card-back h3 {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .experiences-activities-section .card-back li {
        font-size: 0.85rem;
    }


    .introduction-text h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .introduction-text p {
        font-size: 1rem;
    }

    .introduction-image {
        height: 300px;
    }

    

    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    .contact-cta-content h2 {
        font-size: 2rem;
    }

    .contact-cta-content p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
        display: block !important;
    }
    
    .contact-info {
        order: 1 !important;
        margin-bottom: 4rem !important;
    }
    
    .contact-form-container {
        order: 2 !important;
    }

    .contact-form {
        padding: 2rem;
    }
    
    .contact-form-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .full-width {
        grid-column: span 1 !important;
    }
    
    .contact-form .form-group {
        margin-bottom: 1.5rem !important;
    }
    
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        width: 100%;
        padding: 1rem !important;
    }

    .map-container {
        height: 300px;
    }

    .map-overlay {
        padding: 1.5rem;
    }

    .map-marker h3 {
        font-size: 1.2rem;
    }

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

    .story-image {
        height: 300px;
    }

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

    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
        text-align: center !important;
    }

    .footer-links {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
    }
    
    .footer-column {
        margin-bottom: 2rem !important;
        text-align: center !important;
    }
    
    .footer-column h4 {
        margin-bottom: 1rem !important;
    }
    
    .footer-column ul {
        text-align: center !important;
    }

    /* Force mobile layout for Guesthouse section (late override) */
    .guesthouse-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }
    .guesthouse-categories {
        order: 1 !important;
    }
    .guesthouse-details {
        order: 2 !important;
        width: 100% !important;
    }
}

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

    .nav-container {
        padding: 1rem;
    }

    .hero-content {
        padding: 0 1rem;
    }
    
    /* Guesthouse Categories - Extra Small Mobile */
    .guesthouse-categories {
        padding: 1.5rem 0 !important;
        gap: 0.8rem !important;
    }
    
    .category-item {
        padding: 1rem 1.2rem !important;
        max-width: 260px !important;
        font-size: 0.95rem !important;
    }
    }

    .booking-form {
        padding: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .introduction,
    .rooms,
    .contact {
        padding: 4rem 0;
    }

    .intro-highlight {
        padding-left: 1rem;
    }

/* Smooth Scrolling and Performance */
html {
    scroll-behavior: smooth;
}

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

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* Focus States for Accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #003d2a;
}

/* Page Header */
.page-header {
    padding: 8rem 0 0 0;
    background: var(--white);
    text-align: center;
    position: relative;
    height: 72vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('zPhoto_About_Us.jpg');
    background-size: cover;
    background-position: center 25%;
    background-attachment: scroll;
    z-index: 1;
}

/* Spezifisches Bild für Rooms-Seite */
.rooms-page .page-header-background {
    background-image: url('price_information.png') !important;
    background-position: center center;
    background-size: cover;
}

/* Guest Information specific header image */
.guest-info-page .page-header-background {
    background-image: url('price_information.png') !important;
    background-position: center center;
    background-size: cover;
}

/* About page header - text only, no background image */
.about-page-header {
    height: auto !important;
    min-height: auto !important;
    padding: 8rem 0 5rem 0 !important;
    background: var(--white) !important;
}

.about-page-header .page-header-content {
    position: relative !important;
    z-index: 1 !important;
    color: var(--text-black) !important;
}

.about-page-header .page-header-content h1 {
    color: var(--text-black) !important;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.about-page-header .page-header-content p {
    color: var(--text-gray) !important;
    font-size: 1.2rem;
    font-weight: 300;
}

/* About Page Navigation - dunkle Schrift für bessere Sichtbarkeit */
.about-page .nav-transparent {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.about-page .nav-transparent .nav-logo h3 {
    color: var(--text-black);
}

.about-page .nav-transparent .nav-logo .logo-img {
    filter: none;
}

.about-page .nav-transparent .nav-link {
    color: var(--text-black);
}

.about-page .nav-transparent .nav-toggle span {
    background: var(--text-black);
}

/* Contact Page Navigation - immer weißer Hintergrund */
.contact-page .nav-transparent {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.contact-page .nav-transparent .nav-logo h3 {
    color: var(--text-black);
}

.contact-page .nav-transparent .nav-logo .logo-img {
    filter: none;
}

.contact-page .nav-transparent .nav-link {
    color: var(--text-black);
}

.contact-page .nav-transparent .nav-toggle span {
    background: var(--text-black);
}



.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.page-header-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    max-width: 800px;
    padding: 0 2rem;
}

.page-header h1 {
    color: var(--white);
    font-size: 3rem;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Contact CTA Section */
.contact-cta-section {
    padding: 8rem 0;
    background: var(--primary-orange);
    text-align: center;
}

.contact-cta-section h2 {
    text-transform: uppercase;
}

.contact-cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-cta-content p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

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

/* Contact Section */
.contact-section {
    padding: 8rem 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.contact-info h2 {
    color: var(--text-black);
    margin-bottom: 2rem;
}

.contact-info p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.contact-details {
    display: grid;
    gap: 2rem;
}

.contact-item h3 {
    color: var(--text-black);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.contact-form {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 0;
}

.contact-form .cta-button {
    border: none;
    border-radius: 0;
    font-family: 'IBM Plex Sans', sans-serif;
}

.contact-form .form-group {
    margin-bottom: 2rem;
}

.contact-form label {
    display: block;
    color: var(--text-black);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 0.25px solid var(--border-gray);
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1rem;
    background: var(--white);
    color: var(--text-black);
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Map Section */
.map-section {
    padding: 8rem 0;
    background: var(--light-gray);
    text-align: center;
}

.map-section h2 {
    color: var(--text-black);
    margin-bottom: 1rem;
}

.map-section p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.map-container {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 0;
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 31, 21, 0.9);
    color: var(--white);
    padding: 2rem;
    text-align: center;
    border-radius: 0;
}

.map-marker h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.map-marker p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

/* Our Story Section */
.our-story-section {
    padding: 8rem 0;
    background: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.story-text h2 {
    color: var(--text-black);
    margin-bottom: 2rem;
}

.story-text p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.story-text p:last-child {
    margin-bottom: 0;
}

.story-image {
    height: 500px;
    overflow: hidden;
}

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

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

/* Activities List Section */
.activities-list {
    padding: 8rem 0;
    background: var(--white);
}

.activities-header {
    text-align: center;
    margin-bottom: 4rem;
}

.activities-header h2 {
    color: var(--text-black);
    margin-bottom: 1rem;
}

.activities-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.activities-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.activity-card {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.activity-image {
    height: 250px;
    overflow: hidden;
}

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

/* Ensure important content near the top is visible (e.g., golf club) */
.activity-image img.object-top {
    object-position: center top;
}

/* Guest Information layout */
.guest-info-section {
    padding: 4rem 0;
}

.guest-info-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2rem;
}

.guest-info-toc {
    position: sticky;
    top: 100px;
    align-self: start;
    background: var(--light-gray);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    padding: 1rem;
}

.guest-info-toc h3 {
    margin-top: 0;
}

.guest-info-toc ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.guest-info-toc li {
    margin: 0.4rem 0;
}

.guest-info-toc a {
    color: var(--text-black);
    text-decoration: none;
}

.guest-info-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.guest-info-block h2 {
    font-family: 'DM Serif Display', serif;
    margin-bottom: 0.5rem;
}

.guest-info-block p, .guest-info-block ul {
    color: var(--text-gray);
}

@media (max-width: 900px) {
    .guest-info-layout {
        grid-template-columns: 1fr;
    }
    .guest-info-toc {
        position: static;
    }
}

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

.activity-content {
    padding: 2rem;
}

.activity-content h3 {
    color: var(--text-black);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: left;
}

/* Single Large Experience Card */
.experiences-grid-single {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.experience-card-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 100%;
    height: 500px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.experience-card-large .experience-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.experience-card-large .experience-overlay {
    position: relative;
    background: var(--white);
    color: var(--text-black);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.experience-card-large .experience-badge {
    color: var(--primary-orange);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.experience-card-large .experience-center h3 {
    color: var(--text-black);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.experience-card-large .experience-center p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.experience-card-large .experience-btn {
    background: var(--primary-orange);
    border: none;
    color: var(--white);
    padding: 1rem 2rem;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
}

.experience-card-large .experience-btn:hover {
    background: var(--text-black);
    transform: translateY(-2px);
}


.description-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.description-content p {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.description-content p:last-child {
    margin-bottom: 0;
}

.description-content strong {
    color: var(--primary-orange);
    font-weight: 600;
}

.activity-category h3 {
    color: var(--text-black);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 0.25px solid var(--border-gray);
}

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

.activity-list li {
    padding: 0.8rem 0;
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 0.25px solid rgba(0, 31, 21, 0.1);
}

.activity-list li:last-child {
    border-bottom: none;
}

.activity-list strong {
    color: var(--primary-orange);
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--text-black);
    color: var(--white);
    padding: 4rem 0 2rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo h3 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-logo .logo-img {
    height: 90px;
    width: auto;
    max-width: 375px;
    display: block;
    margin-bottom: 1rem;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-logo p {
    color: var(--text-gray);
    font-size: 1rem;
    margin: 0;
}

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

.footer-column h4 {
    font-family: 'DM Serif Display', serif;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.footer-column li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-orange);
}

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

.footer-bottom p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Introduction Section */
.introduction-section {
    padding: 8rem 0;
    background: var(--white);
}


.introduction-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.introduction-text {
    text-align: left;
}

.introduction-text h2 {
    color: var(--text-black);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.introduction-text p {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.introduction-text p:last-child {
    margin-bottom: 0;
}

.introduction-cta {
    margin-top: 2rem;
}

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

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

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


/* Guesthouse Overview Section */
.guesthouse-overview-section {
    padding: 8rem 0;
    background: var(--white);
}

.guesthouse-overview-section h2 {
    text-transform: uppercase;
    font-variant: small-caps;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.guesthouse-cta {
    margin-top: 2rem;
    text-align: center;
}

.guesthouse-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 4rem;
}

.guesthouse-categories {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.category-item {
    padding: 1.5rem 2rem;
    background: var(--white);
    border-left: 1px solid var(--border-gray);
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    max-width: 300px;
}

.category-item:hover {
    border-left-color: var(--primary-orange);
    background: rgba(0, 31, 21, 0.02);
}

.category-item.active {
    border-left-color: var(--primary-orange);
    background: rgba(0, 31, 21, 0.05);
}

.category-item h3 {
    color: var(--text-black);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    transition: color 0.3s ease;
}

.category-item:hover h3,
.category-item.active h3 {
    color: var(--primary-orange);
}

.guesthouse-details {
    background: var(--white);
    padding: 2rem;
    border-left: 0.25px solid var(--primary-orange);
    min-height: 400px;
}

.details-content {
    display: none;
}

.details-content.active {
    display: block;
}

.details-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.details-content li {
    padding: 0.8rem 0;
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 0.25px solid rgba(0, 31, 21, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.details-content li:last-child {
    border-bottom: none;
}

.details-content li::before {
    content: "•";
    color: var(--primary-orange);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Experiences & Activities Section */
.experiences-activities-section {
    padding: 8rem 0;
    background: var(--white);
}

.experiences-activities-section .experiences-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.experiences-activities-section .experience-card {
    height: 450px;
    perspective: 1000px;
    cursor: pointer;
}

.experiences-activities-section .card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.experiences-activities-section .experience-card.flipped .card-inner {
    transform: rotateY(180deg);
}

.experiences-activities-section .card-front,
.experiences-activities-section .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background: var(--white);
    border-left: 0.25px solid var(--primary-orange);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    box-sizing: border-box;
}

.experiences-activities-section .card-back {
    transform: rotateY(180deg);
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
}

.experiences-activities-section .card-front h3,
.experiences-activities-section .card-back h3 {
    color: var(--text-black);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.experiences-activities-section .card-back h3 {
    margin-bottom: 1.5rem;
    width: 100%;
}

.experiences-activities-section .card-back ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.experiences-activities-section .card-back li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.4;
    border-bottom: 0.25px solid rgba(0, 31, 21, 0.1);
    position: relative;
    padding-left: 1rem;
}

.experiences-activities-section .card-back li:last-child {
    border-bottom: none;
}

.experiences-activities-section .card-back li::before {
    content: "•";
    color: var(--primary-orange);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.experiences-activities-section .more-info-btn {
    background: transparent;
    color: var(--primary-orange);
    border: 0.25px solid var(--primary-orange);
    padding: 0.8rem 2rem;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.experiences-activities-section .more-info-btn:hover {
    background: var(--primary-orange);
    color: var(--white);
}

.experiences-activities-section .card-back .more-info-btn {
    margin-top: 1.5rem;
    align-self: center;
}

/* Ensure Introduction section is 2-column on desktop */
@media (min-width: 769px) {
    .introduction-content {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
    }
    
    .introduction-text,
    .introduction-image {
        order: 0 !important;
    }
}

/* Stellenbosch Page Styles */
.stellenbosch-page-section {
    padding: 8rem 0;
    background: var(--light-gray);
}

.stellenbosch-page-content {
    display: grid;
    grid-template-columns: 1fr 50%;
    gap: 0;
    align-items: start;
    width: 100%;
    max-width: none;
}

.stellenbosch-page-text {
    padding: 2rem 4rem 2rem 0;
}

.stellenbosch-page-text h2 {
    color: var(--text-black);
    margin-bottom: 3rem;
    line-height: 1.3;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.stellenbosch-page-description p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.8rem;
}

.stellenbosch-page-description p:last-of-type {
    margin-bottom: 3rem;
}

.stellenbosch-page-description strong {
    color: var(--primary-orange);
    font-weight: 600;
}

.stellenbosch-page-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.stellenbosch-page-image {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 8px 0 0 8px;
    box-shadow: 0 10px 30px rgba(0, 31, 21, 0.1);
    width: 100vw;
    margin-left: 0;
}

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

.stellenbosch-page-image:hover img {
    transform: scale(1.05);
}

/* Mobile Responsive for Stellenbosch Page */
@media (max-width: 768px) {
    .stellenbosch-page-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .stellenbosch-page-text {
        order: 1;
        padding: 1rem 0;
    }

    .stellenbosch-page-image {
        order: 2;
        height: 400px;
        width: 100%;
        border-radius: 8px;
        margin-left: 0;
    }

    .stellenbosch-page-cta {
        flex-direction: column;
        align-items: center;
    }

    .stellenbosch-page-cta .hero-cta-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    /* Match Intro section side margins on mobile */
    .stellenbosch-page-content {
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    /* Match Intro section side margins on extra small mobile */
    .stellenbosch-page-content {
        padding: 0 1rem;
    }
}

/* Mobile parity with Introduction image margins */
@media (max-width: 768px) {
    .stellenbosch-page-content { padding: 0 !important; }
    .stellenbosch-page-image { padding: 0 0.5rem; border-radius: 0; width: 100%; }
}
@media (max-width: 480px) {
    .stellenbosch-page-image { padding: 0 1rem; }
}

/* iOS-specific fixes for mobile menu */
@supports (-webkit-touch-callout: none) {
    body.menu-open {
        position: fixed;
        overflow: hidden;
        width: 100%;
        height: 100%;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        -webkit-transition: all 0.4s ease;
        transition: all 0.4s ease;
    }
    
    .nav-menu.active {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

/* Experiences page: first section spacing and beige background */
.stellenbosch-description-section {
    margin-top: 0; /* remove extra gap */
    padding: 6rem 0;
    background: var(--light-gray);
}

@media (max-width: 768px) {
    .stellenbosch-description-section {
        margin-top: 0;
        padding: 4rem 0;
    }
}

@media (min-width: 769px) {
    /* Force Contact section to two columns on desktop/tablet */
    .contact-content {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 4rem !important;
        align-items: start !important;
    }
    .contact-info { order: 1 !important; }
    .contact-form-container { order: 2 !important; }
}
