/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

p {
    margin-bottom: 1rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-primary {
    background-color: #2c5f2d;
    color: white;
    border: 2px solid #2c5f2d;
}

.btn-primary:hover {
    background-color: #1e451f;
    border-color: #1e451f;
}

.btn-secondary {
    background-color: transparent;
    color: #333;
    border: 2px solid #2c5f2d;
}

.btn-secondary:hover {
    background-color: #2c5f2d;
    color: white;
}

.btn-nav {
    background-color: #2c5f2d;
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 4px;
}

.btn-nav:hover {
    background-color: #1e451f;
}

.btn-text {
    color: #2c5f2d;
    text-decoration: none;
    font-weight: 600;
}

.btn-text:hover {
    text-decoration: underline;
}

/* ===== HEADER & NAVIGATION ===== */
img[src="tours.jpg"] {
    max-width: 100%;
    height: auto;
    display: block;
}

.header {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: #333;
}

.logo span {
    color: #2c5f2d;
    font-weight: normal;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2c5f2d;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* ===== HAMBURGER MENU STYLES ===== */
.hamburger-menu {
    position: relative;
}

#menu-toggle {
    display: none;
}

.menu-icon {
    font-size: 30px;
    cursor: pointer;
    padding: 10px;
    display: inline-block;
}

.menu-items {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1000;
}

.menu-items a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #eee;
}

.menu-items a:hover {
    background-color: #f5f5f5;
    color: #0066cc;
}

.menu-items .booking-link {
    background-color: #ffd700;
    font-weight: bold;
}

.menu-items .booking-link:hover {
    background-color: #ffed4a;
}

#menu-toggle:checked ~ .menu-items {
    display: block;
}

.desktop-booking {
    display: none;
}

.booking-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffd700;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.booking-button:hover {
    background-color: #ffed4a;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('https://source.unsplash.com/1600x900/?entebbe,uganda') center/cover;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content h1 span {
    display: block;
    font-size: 1.5rem;
    font-weight: 300;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 4rem 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 8px;
    background-color: #f9f9f9;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* ===== DRIVER & BRENDA SECTIONS ===== */
.driver-section,
.brenda-section {
    background-color: white;
    padding: 4rem 0;
    margin: 2rem 0;
}

.driver-flex,
.brenda-flex {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.driver-content,
.brenda-content {
    flex: 1;
}

.driver-content h2,
.brenda-content h2 {
    color: #2c5f2d;
    margin-bottom: 1.5rem;
    text-align: left;
}

.driver-content p,
.brenda-content p {
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.driver-name,
.brenda-name {
    color: #C6A15B;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.5rem;
    margin-top: 1.5rem;
}

.driver-image,
.brenda-image {
    flex: 1;
    max-width: 400px;
}

.driver-image img,
.brenda-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    border: 3px solid #C6A15B;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: block;
}

/* ===== OSLO GARDENS SECTION ===== */
.oslo-section {
    background: linear-gradient(rgba(44, 85, 48, 0.05), rgba(44, 85, 48, 0.1));
    padding: 4rem 0;
}

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

.oslo-content h2 {
    color: #2c5f2d;
    text-align: left;
}

.oslo-content p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.distance-badge {
    display: inline-block;
    background-color: #C6A15B;
    color: #1A3A1D;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.oslo-features {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.oslo-feature {
    text-align: center;
}

.oslo-feature .emoji {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.oslo-feature p {
    margin-bottom: 0;
    font-weight: 600;
    color: #2c5f2d;
}

.oslo-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

/* ===== NEEMA PLAINS SECTION ===== */
.neema-section {
    background: linear-gradient(135deg, #1A3A1D 0%, #2c5f2d 100%);
    color: white;
    padding: 4rem 0;
    margin: 3rem 0;
}

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

.neema-content h2 {
    color: #C6A15B;
    text-align: left;
}

.neema-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.neema-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    border: 3px solid #C6A15B;
}

.neema-badge {
    display: inline-block;
    background-color: #C6A15B;
    color: #1A3A1D;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.neema-quote {
    font-style: italic;
    font-size: 1.2rem;
    border-left: 4px solid #C6A15B;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    color: rgba(255,255,255,0.8);
}

/* ===== CAPACITY SECTION ===== */
.capacity-section {
    padding: 4rem 0;
    text-align: center;
}

.capacity-highlight {
    font-size: 4rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    color: #C6A15B;
    margin: 1rem 0;
}

.capacity-highlight span {
    font-size: 1.5rem;
    color: #2c5f2d;
}

.capacity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.capacity-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-bottom: 4px solid #C6A15B;
}

.capacity-card h3 {
    color: #2c5f2d;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.capacity-card .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #C6A15B;
    margin-bottom: 0.5rem;
}

/* ===== SUITE PREVIEW ===== */
.preview-suites {
    padding: 4rem 0;
}

.suite-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.suite-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    background: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.suite-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(44, 85, 48, 0.15);
}

.suite-image {
    line-height: 0;
    overflow: hidden;
}

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

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

.suite-card h3, .suite-card p {
    padding: 0 1rem;
}

.suite-card h3 {
    color: #2c5f2d;
    padding-top: 1.2rem;
    margin-bottom: 0.5rem;
}

.suite-card .btn-text {
    display: inline-block;
    margin: 1rem;
}

/* ===== WILDLIFE SHOWCASE (for experience.html) ===== */
.wildlife-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 200px;
}

.wildlife-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #C6A15B;
    color: #1A3A1D;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 10;
    max-width: calc(100% - 2rem);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* ===== TOURS SHOWCASE ===== */
.tours-showcase {
    padding: 5rem 0;
    background-color: white;
}

.tours-showcase h2 {
    text-align: center;
}

.tours-showcase > .container > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    font-size: 1.2rem;
    color: #555;
}

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

.tour-card {
    background: #FAF7F2;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid #C6A15B;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(44, 85, 48, 0.15);
}

.tour-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

.tour-image span {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: #C6A15B;
    color: #1A3A1D;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    z-index: 2;
}

.tour-content {
    padding: 1.5rem;
}

.tour-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: #2c5f2d;
}

.tour-content p {
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
}

.tour-duration {
    background-color: rgba(44, 85, 48, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    color: #2c5f2d;
}

.tour-price {
    color: #C6A15B;
    font-weight: 600;
}

.tour-link {
    display: inline-block;
    color: #2c5f2d;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.tour-link:hover {
    border-bottom-color: #C6A15B;
}

/* ===== TOURS TEASER ===== */
.tours-teaser {
    background-color: #2c5f2d;
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.teaser-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.teaser-item {
    background-color: rgba(255,255,255,0.2);
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.teaser-item:hover {
    background-color: #C6A15B;
    color: #1A3A1D;
    transform: scale(1.05);
}

.tours-teaser .btn-primary {
    background-color: white;
    color: #2c5f2d;
    border: 2px solid white;
}

.tours-teaser .btn-primary:hover {
    background-color: transparent;
    color: white;
}

/* ===== WHATSAPP BUTTON ===== */
.order-link[href*="wa.me"] {
    background-color: #25D366 !important;
    border-color: #128C7E !important;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    margin-top: 1rem;
    padding: 1rem 2rem;
    text-decoration: none;
    color: white;
    border-radius: 4px;
}

.order-link[href*="wa.me"]:hover {
    background-color: #128C7E !important;
    border-color: #075E54 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.order-link[href*="wa.me"] svg {
    transition: transform 0.3s ease;
    margin-right: 8px;
}

.order-link[href*="wa.me"]:hover svg {
    transform: scale(1.1);
}

/* ===== FOOTER ===== */
.footer {
    background-color: #222;
    color: white;
    padding: 4rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer h4 {
    color: #C6A15B;
    margin-bottom: 1rem;
}

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

.footer-links a {
    color: #ddd;
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s ease;
}

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

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

/* ===== MOBILE RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
    /* General */
    .container {
        width: 95%;
        padding: 0 10px;
    }

    /* Typography */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    p {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Navigation */
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        padding: 2rem 0;
        gap: 1rem;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    /* Hero */
    .hero {
        height: auto;
        min-height: 60vh;
        padding: 3rem 0;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content h1 span {
        font-size: 1.2rem;
    }

    .hero-content p {
        font-size: 1rem;
        padding: 0 15px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 80%;
        max-width: 280px;
        margin: 0 auto;
        text-align: center;
    }

    /* Feature grid */
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 10px;
    }

    .feature-card {
        padding: 1.5rem;
        margin: 0 auto;
        max-width: 400px;
        width: 100%;
    }

    /* Driver & Brenda */
    .driver-flex,
    .brenda-flex {
        flex-direction: column;
        gap: 2rem;
    }

    .driver-content,
    .brenda-content {
        text-align: center;
        padding: 0 15px;
    }

    .driver-content h2,
    .brenda-content h2 {
        text-align: center;
        font-size: 1.8rem;
    }

    .driver-content p,
    .brenda-content p {
        text-align: left;
    }

    .driver-image,
    .brenda-image {
        max-width: 100%;
        width: 100%;
        padding: 0 15px;
    }

    .driver-image img,
    .brenda-image img {
        height: 350px;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    /* Oslo Gardens */
    .oslo-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .oslo-content {
        padding: 0 15px;
        text-align: center;
    }

    .oslo-content h2 {
        text-align: center;
    }

    .oslo-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .oslo-image {
        max-width: 100%;
        padding: 0 15px;
    }

    .oslo-image img {
        height: 250px;
        width: 100%;
        object-fit: cover;
    }

    /* Neema Plains */
    .neema-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .neema-content {
        padding: 0 15px;
        text-align: center;
    }

    .neema-content h2 {
        text-align: center;
    }

    .neema-quote {
        text-align: left;
    }

    .neema-image {
        max-width: 100%;
        padding: 0 15px;
    }

    .neema-image img {
        height: 250px;
        width: 100%;
        object-fit: cover;
    }

    /* Capacity */
    .capacity-section {
        padding: 3rem 0;
    }

    .capacity-highlight {
        font-size: 2.5rem;
        line-height: 1.2;
        padding: 0 15px;
    }

    .capacity-highlight span {
        font-size: 1.2rem;
        display: block;
    }

    .capacity-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 15px;
    }

    .capacity-card {
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }

    /* Suite preview */
    .preview-suites {
        padding: 3rem 0;
    }

    .suite-preview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 15px;
    }

    .suite-card {
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }

    .suite-image img {
        height: 200px;
        width: 100%;
        object-fit: cover;
    }

    /* Wildlife showcase */
    .wildlife-image {
        height: 200px;
    }
    
    .wildlife-tag {
        top: 0.75rem;
        right: 0.75rem;
        padding: 0.25rem 0.75rem;
        font-size: 0.8rem;
        white-space: normal;
        max-width: 150px;
        text-align: center;
        line-height: 1.3;
        word-break: break-word;
    }

    /* Tours showcase */
    .tours-showcase {
        padding: 3rem 0;
    }

    .tours-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 15px;
    }

    .tour-card {
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }

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

    .tour-content {
        padding: 1.2rem;
    }

    .tour-content h3 {
        font-size: 1.4rem;
    }

    .tour-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    /* ===== TOUR CATEGORY LABEL (tours.html) ===== */
    .tour-category {
        top: 15px;
        right: 15px;
        padding: 0.3rem 1rem;
        font-size: 0.75rem;
        white-space: normal;
        max-width: 140px;
        text-align: center;
        line-height: 1.3;
        word-break: break-word;
        background-color: rgba(198, 161, 91, 0.85);
        backdrop-filter: blur(2px);
    }

    /* Tours teaser */
    .tours-teaser {
        padding: 3rem 0;
    }

    .teaser-grid {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0 15px;
    }

    .teaser-item {
        width: 100%;
        max-width: 300px;
        padding: 0.8rem 1.5rem;
    }

    /* Footer */
    .footer {
        padding: 3rem 0 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 15px;
    }

    .footer-links ul {
        padding: 0;
    }

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

    .footer-bottom {
        padding: 1.5rem 15px 0;
        font-size: 0.9rem;
    }

    /* Desktop booking button */
    .desktop-booking {
        display: none;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .container {
        width: 100%;
        padding: 0 12px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hotel-name {
        font-size: 2.2rem;
    }

    .tagline {
        font-size: 0.9rem;
    }

    .driver-image img,
    .brenda-image img {
        height: 300px;
    }

    .oslo-image img,
    .neema-image img {
        height: 200px;
    }

    .capacity-highlight {
        font-size: 2rem;
    }

    .wildlife-image {
        height: 180px;
    }
    
    .wildlife-tag {
        padding: 0.2rem 0.6rem;
        font-size: 0.75rem;
        max-width: 120px;
    }

    /* ===== TOUR CATEGORY LABEL (tours.html) ===== */
    .tour-category {
        padding: 0.2rem 0.6rem;
        font-size: 0.65rem;
        max-width: 110px;
        top: 8px;
        right: 8px;
        border-radius: 20px;
        background-color: rgba(198, 161, 91, 0.9);
        backdrop-filter: blur(2px);
        white-space: normal;
        text-align: center;
        line-height: 1.3;
        word-break: break-word;
    }

    .hero-content .btn-primary,
    .hero-content .btn-secondary {
        width: 90%;
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}

/* Desktop responsive for hamburger menu */
@media screen and (min-width: 769px) {
    .desktop-booking {
        display: block;
        position: absolute;
        top: 10px;
        right: 20px;
    }
    
    .menu-items {
        top: 60px;
    }
}

/* Flexbox gap fallback for older browsers */
@supports not (gap: 1rem) {
    .feature-grid,
    .suite-preview-grid,
    .tours-grid,
    .capacity-grid {
        margin: -0.5rem;
    }
    
    .feature-card,
    .suite-card,
    .tour-card,
    .capacity-card {
        margin: 0.5rem;
    }
    
    .driver-flex,
    .brenda-flex {
        margin: -2rem;
    }
    
    .driver-content,
    .brenda-content,
    .driver-image,
    .brenda-image {
        margin: 2rem;
    }
}