:root {
    --royal-green: #0a3d2e;
    --emerald: #1b4d3e;
    --soft-gold: #c5a059;
    --bright-gold: #dfbd69;
    /* Added for better button visibility */
    --deep-gold: #996515;
    --ivory: #fcfaf5;
    --sand: #f4eee0;
    --text-dark: #1a1a1a;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    overflow-x: hidden;
    width: 100%;
    height: 100%;
}

body {
    background-color: var(--ivory);
    color: var(--text-dark);
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.site-footer {
    flex-shrink: 0;
}

h1,
h2,
h3,
.royal-font {
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gold-divider {
    height: 1px;
    width: 100px;
    background: linear-gradient(90deg, transparent, var(--soft-gold), transparent);
    margin: 20px auto;
}

.btn-royal {
    display: inline-block;
    padding: 14px 35px;
    border: 1px solid var(--soft-gold);
    background: transparent;
    color: var(--royal-green);
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    transition: var(--transition);
    cursor: pointer;
    font-weight: 700;
}

.btn-royal:hover {
    background: var(--soft-gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}

/* Book Button - Unique Styling */
.btn-book {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 26px;
    background: linear-gradient(135deg, var(--bright-gold) 0%, var(--deep-gold) 100%);
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 50px;
    border: 2px solid var(--bright-gold);
    box-shadow: 0 4px 15px rgba(223, 189, 105, 0.35);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-book::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-book:hover::before {
    left: 100%;
}

.btn-book:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 20px rgba(223, 189, 105, 0.5);
    border-color: var(--deep-gold);
}

.btn-book i {
    font-size: 0.95rem;
    animation: pulse 2s infinite;
}

/* Secondary Button - Green Outline */
.btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    border: 2px solid var(--royal-green);
    background: transparent;
    color: var(--royal-green);
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    transition: var(--transition);
    cursor: pointer;
    font-weight: 700;
}

.btn-secondary:hover {
    background: var(--royal-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 61, 46, 0.3);
}

/* Primary Action Button - Gold (for CTAs) */
.btn-primary {
    display: inline-block;
    padding: 14px 35px;
    border: 2px solid var(--soft-gold);
    background: var(--soft-gold);
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    transition: var(--transition);
    cursor: pointer;
    font-weight: 700;
}

.btn-primary:hover {
    background: var(--deep-gold);
    border-color: var(--deep-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.4);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Hero Button Visibility Fix */
.btn-hero-primary {
    background: var(--bright-gold) !important;
    color: var(--royal-green) !important;
    border: 1px solid var(--bright-gold) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-hero-primary:hover {
    background: var(--deep-gold) !important;
    border-color: var(--deep-gold) !important;
    transform: translateY(-2px);
}

.btn-hero-outline {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border: 1px solid white !important;
    backdrop-filter: blur(5px);
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-2px);
}

.section-padding {
    padding: 100px 10%;
    width: 100%;
    position: relative;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 1000;
    background: rgba(252, 250, 245, 0.98);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow-x: hidden;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--royal-green);
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1002;
}

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
    white-space: nowrap;
}

.nav-links a i {
    font-size: 0.85rem;
    color: var(--soft-gold);
}

.nav-links a:hover {
    color: var(--soft-gold);
}

.nav-links a:hover i {
    transform: scale(1.1);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--soft-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hide last nav item (BOOK NOW) on desktop - it's shown as separate button */
.nav-links li:last-child {
    display: none;
}

#hero {
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
    background: linear-gradient(rgba(10, 61, 46, 0.7), rgba(10, 61, 46, 0.7)),
        url('img/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--ivory);
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
}

#hero h1 {
    font-size: clamp(2rem, 6vw, 5rem);
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

#hero p {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-style: italic;
    margin-bottom: 35px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.highlight-card {
    background: white;
    padding: 40px;
    text-align: center;
    border: 1px solid var(--sand);
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateY(-10px);
    border-color: var(--soft-gold);
}

.highlight-card i {
    font-size: 2.5rem;
    color: var(--soft-gold);
    margin-bottom: 20px;
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
    width: 100%;
    max-width: 100%;
}

.split-image img {
    width: 100%;
    max-width: 100%;
    min-height: 300px;
    /* flexible height */
    max-height: 500px;
    object-fit: cover;
    border: 1px solid var(--soft-gold);
    padding: 10px;
    background: white;
}

.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    background: var(--royal-green);
    padding: 12px 0;
    justify-content: space-around;
    align-items: center;
    z-index: 9999;
    border-top: 2px solid var(--soft-gold);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    overflow-x: hidden;
    min-height: 70px;
    height: auto;
}

.mobile-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--soft-gold);
    font-size: 1.4rem;
    transition: var(--transition);
    padding: 8px 12px;
    min-width: 60px;
}

.mobile-nav a i {
    font-size: 1.5rem;
    margin-bottom: 2px;
}

.mobile-nav a:hover {
    color: var(--bright-gold);
    transform: scale(1.1);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
    width: 100%;
    max-width: 100%;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 300px;
    width: 100%;
    max-width: 100%;
    border: 1px solid var(--soft-gold);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Page Headers for sub-pages */
.page-header {
    min-height: 55vh;
    width: 100%;
    max-width: 100vw;
    padding: 120px 20px 60px;
    /* Increased top padding to prevent text cutoff */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ivory);
    text-align: center;
    background-color: var(--royal-green);
    position: relative;
    overflow-x: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 61, 46, 0.6);
}

.page-header>div {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.page-header h1 {
    position: relative;
    z-index: 1;
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 8px;
    line-height: 1.3;
}

.page-header p {
    margin-top: 15px;
    font-size: 1.2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Footer Styles */
.site-footer {
    background-color: var(--royal-green);
    color: var(--ivory);
    border-top: 4px solid var(--soft-gold);
    padding: 60px 0 30px;
    width: 100%;
    position: relative;
    margin-bottom: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-info h2 {
    color: var(--soft-gold);
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer-info p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-info i {
    width: 25px;
    color: var(--soft-gold);
}

.map-container {
    height: 300px;
    background: #222;
    border: 1px solid var(--soft-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    opacity: 0.8;
    filter: grayscale(100%) invert(92%) contrast(83%);
}

/* Contact Section Styles */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-left: 3px solid var(--soft-gold);
    transition: var(--transition);
}

.contact-info-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info-item i {
    color: var(--soft-gold);
    font-size: 1.5rem;
    margin-top: 5px;
}

.social-icon-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--soft-gold);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon-link:hover {
    background: var(--deep-gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.4);
}

/* Testimonials Styling */
.highlight-card .fa-quote-left {
    opacity: 0.3;
}

.highlight-card h4 {
    font-size: 1rem;
    margin-top: 10px;
}

/* Contact Form Styling */
#contactForm input,
#contactForm select,
#contactForm textarea {
    transition: var(--transition);
}

#contactForm input:focus,
#contactForm select:focus,
#contactForm textarea:focus {
    outline: none;
    border-color: var(--soft-gold);
    box-shadow: 0 0 0 2px rgba(197, 160, 89, 0.1);
}

/* Clickable Card Styling */
.clickable-card {
    cursor: pointer;
    transition: var(--transition);
}

.clickable-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.3);
    border-color: var(--soft-gold);
}

.clickable-card:active {
    transform: translateY(-5px);
}

/* Desktop Map Display */
@media (min-width: 993px) {
    .desktop-map {
        display: block !important;
    }
}

/* Contact Form Styling */
#contactForm input,
#contactForm select,
#contactForm textarea {
    transition: var(--transition);
}

#contactForm input:focus,
#contactForm select:focus,
#contactForm textarea:focus {
    outline: none;
    border-color: var(--soft-gold);
    box-shadow: 0 0 0 2px rgba(197, 160, 89, 0.1);
}

#contactForm label {
    font-size: 0.9rem;
    font-weight: 600;
}

#contactForm button[type="submit"]:hover {
    transform: translateY(-2px);
}

/* About Page Specific Styles */
.about-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.welcome-label {
    font-size: 1rem;
    color: var(--soft-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Cinzel', serif;
    display: block;
    margin-bottom: 10px;
}

.brand-title {
    font-size: 3rem;
    margin: 15px 0;
    color: var(--royal-green);
}

.text-gold {
    color: var(--soft-gold);
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-top: 20px;
    color: var(--text-dark);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--sand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--soft-gold);
    transition: var(--transition);
}

.value-item:hover .value-icon {
    background: var(--soft-gold);
    transform: scale(1.1);
}

.value-icon i {
    font-size: 2rem;
    color: var(--soft-gold);
    transition: var(--transition);
}

.value-item:hover .value-icon i {
    color: white;
}

.value-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--royal-green);
}

.value-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.feature-list {
    list-style: none;
    margin-top: 30px;
}

.feature-list li {
    padding: 12px 0;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-list i {
    color: var(--soft-gold);
    margin-top: 5px;
    font-size: 1.2rem;
}

.card-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--soft-gold);
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

.card-link:hover {
    color: var(--royal-green);
    transform: translateX(5px);
}

.btn-solid-gold {
    background: var(--soft-gold) !important;
    color: white !important;
    border-color: var(--soft-gold) !important;
}

.btn-solid-gold:hover {
    background: var(--deep-gold) !important;
    border-color: var(--deep-gold) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.4);
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1002;
    padding: 8px;
    background: transparent;
    border: none;
}

.hamburger span {
    width: 26px;
    height: 2.5px;
    background: var(--royal-green);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile Responsive Styles */
@media (max-width: 992px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
        position: relative;
    }

    * {
        max-width: 100%;
    }

    /* Show hamburger, hide desktop book button */
    .hamburger {
        display: flex;
    }

    .btn-book {
        display: none !important;
    }

    header {
        padding: 8px 0;
        width: 100%;
        max-width: 100vw;
    }

    nav {
        padding: 0 20px;
        width: 100%;
        max-width: 100%;
    }

    .logo {
        font-size: 1.2rem;
        gap: 12px;
    }

    .logo-img {
        height: 65px;
    }

    /* Fix background attachment for mobile */
    #hero {
        background-attachment: scroll;
        width: 100%;
        max-width: 100vw;
        padding: 100px 15px 60px;
        min-height: 100vh;
    }

    /* Mobile Navigation Sidebar */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: var(--ivory);
        flex-direction: column;
        padding: 80px 0 30px;
        gap: 0;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        overflow-y: auto;
        align-items: stretch;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(197, 160, 89, 0.15);
        margin: 0;
    }

    .nav-links li:last-child {
        border-bottom: none;
        margin-top: 15px;
        padding: 0 20px;
        display: block; /* Show BOOK NOW in mobile menu */
    }

    .nav-links a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 16px 25px;
        font-size: 0.95rem;
        width: 100%;
        color: var(--royal-green);
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a i {
        font-size: 1.1rem;
        min-width: 20px;
    }

    /* BOOK NOW button styling in mobile menu */
    .nav-links li:last-child a {
        background: linear-gradient(135deg, var(--bright-gold) 0%, var(--deep-gold) 100%);
        color: white !important;
        border-radius: 50px;
        padding: 14px 25px !important;
        text-align: center;
        font-weight: 700;
        justify-content: center;
        box-shadow: 0 4px 15px rgba(223, 189, 105, 0.3);
        margin-top: 5px;
    }

    .nav-links li:last-child a i {
        color: white;
    }

    .section-padding {
        padding: 60px 5%;
        width: 100%;
    }

    #hero h1 {
        font-size: 2rem;
        max-width: 100%;
        word-wrap: break-word;
    }

    #hero p {
        font-size: 1.2rem;
        max-width: 100%;
        word-wrap: break-word;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .hero-btns a {
        width: 100%;
        text-align: center;
    }

    .split-section {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 100%;
    }

    .split-image {
        order: -1;
        width: 100%;
    }

    .split-image img {
        width: 100%;
    }

    .highlight-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        width: 100%;
    }

    .gallery-item {
        width: 100%;
    }

    .page-header h1 {
        font-size: 2rem;
        letter-spacing: 4px;
        max-width: 100%;
        word-wrap: break-word;
        line-height: 1.3;
    }

    .page-header p {
        font-size: 1.1rem;
        margin-top: 12px;
    }

    .brand-title {
        font-size: 2rem !important;
        max-width: 100%;
        word-wrap: break-word;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 100%;
        padding: 0 20px;
        margin-bottom: 0;
    }

    .map-container {
        height: 250px;
        width: 100%;
        margin-bottom: 0;
    }

    .mobile-nav {
        display: flex !important;
        width: 100%;
        padding: 12px 0;
        min-height: 70px;
        max-height: 70px;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
    }

    .mobile-nav a {
        font-size: 1.3rem;
        padding: 8px 10px;
    }

    .mobile-nav a i {
        font-size: 1.4rem;
    }

    body {
        padding-bottom: 70px;
        min-height: 100vh;
    }

    html {
        height: auto;
    }

    .values-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .contact-hours-grid {
        grid-template-columns: 1fr !important;
        width: 100%;
    }

    .site-footer {
        margin-bottom: 0;
        padding: 40px 20px 20px;
    }

    /* Remove extra spacing from last section */
    section:last-of-type {
        margin-bottom: 0;
        padding-bottom: 40px;
    }

    /* Fix footer text alignment on mobile */
    .footer-info {
        text-align: center;
    }

    .footer-logo {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
    }

    .footer-logo img {
        height: 65px;
    }

    /* Ensure no extra space after footer */
    #footer, .site-footer {
        padding-bottom: 15px;
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
    }

    nav {
        padding: 0 15px;
        width: 100%;
    }

    .logo {
        font-size: 1.05rem;
        gap: 10px;
    }

    .logo-img {
        height: 58px;
    }

    .nav-links {
        width: 80%;
        max-width: 280px;
        padding: 70px 0 25px;
    }

    .nav-links a {
        padding: 15px 20px;
        font-size: 0.9rem;
    }

    #hero {
        padding: 100px 15px 60px;
        min-height: 85vh;
        width: 100%;
    }

    #hero h1 {
        font-size: 1.75rem;
        max-width: 100%;
    }

    #hero p {
        font-size: 1.05rem;
        max-width: 100%;
    }

    .section-padding {
        padding: 45px 5%;
        width: 100%;
    }

    .page-header {
        min-height: 40vh;
        padding: 100px 15px 50px;
        width: 100%;
    }

    .page-header h1 {
        font-size: 1.7rem;
        letter-spacing: 3px;
        max-width: 100%;
        line-height: 1.4;
    }

    .page-header p {
        font-size: 1rem;
        margin-top: 12px;
    }

    .highlight-card {
        padding: 28px 18px;
        width: 100%;
    }

    .highlight-card i {
        font-size: 2rem;
    }

    body {
        padding-bottom: 70px;
    }

    .site-footer {
        padding: 35px 20px 15px;
        margin-bottom: 0;
    }

    .footer-content {
        padding: 0 15px;
        margin-bottom: 0;
    }

    .highlight-card h3 {
        font-size: 1.05rem;
    }

    .split-text h2 {
        font-size: 1.7rem;
        max-width: 100%;
    }

    .feature-list li {
        font-size: 0.98rem;
    }

    .footer-logo img {
        height: 55px;
    }

    .footer-info h2 {
        font-size: 1.4rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
    }

    .btn-royal,
    .btn-primary,
    .btn-secondary {
        padding: 13px 28px;
        font-size: 0.82rem;
    }
}

/* Tablet Landscape (768px - 992px) */
@media (min-width: 769px) and (max-width: 992px) {
    nav {
        padding: 0 25px;
    }

    .logo {
        font-size: 1.15rem;
    }

    .logo-img {
        height: 58px;
    }

    .section-padding {
        padding: 65px 6%;
    }

    .highlight-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #hero h1 {
        font-size: 2.2rem;
    }
}

/* Large Desktop Optimization */
@media (min-width: 1400px) {
    nav {
        padding: 0 60px;
    }

    .nav-links {
        gap: 30px;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .logo {
        font-size: 1.4rem;
    }

    .logo-img {
        height: 70px;
    }

    .btn-book {
        padding: 12px 30px;
        font-size: 0.85rem;
    }
}

/* Extra Large Screens */
@media (min-width: 1600px) {
    .section-padding {
        padding: 100px 12%;
    }
}

@media (max-width: 480px) {
    html, body {
        overflow-x: hidden !important;
        width: 100%;
        max-width: 100vw;
    }

    nav {
        padding: 0 12px;
        width: 100%;
        max-width: 100%;
    }

    .logo {
        font-size: 0.85rem;
        gap: 6px;
    }

    .logo-img {
        height: 42px;
    }

    .nav-links {
        width: 85%;
        max-width: 260px;
        padding: 65px 0 20px;
    }

    .nav-links a {
        padding: 14px 18px;
        font-size: 0.88rem;
    }

    .nav-links li:last-child a {
        padding: 13px 22px !important;
        font-size: 0.85rem;
    }

    #hero {
        min-height: 80vh;
        padding: 0 12px;
        width: 100%;
        max-width: 100vw;
    }

    #hero h1 {
        font-size: 1.5rem;
        line-height: 1.3;
        max-width: 100%;
        word-wrap: break-word;
    }

    #hero p {
        font-size: 0.95rem;
        margin-bottom: 25px;
        max-width: 100%;
        word-wrap: break-word;
    }

    .btn-royal,
    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 0.78rem;
        letter-spacing: 1px;
    }

    .section-padding {
        padding: 35px 4%;
        width: 100%;
        max-width: 100vw;
    }

    .page-header {
        min-height: 35vh;
        padding: 90px 12px 45px;
        width: 100%;
        max-width: 100vw;
    }

    .page-header h1 {
        font-size: 1.4rem;
        letter-spacing: 2px;
        max-width: 100%;
        line-height: 1.5;
        word-wrap: break-word;
    }

    .page-header p {
        font-size: 0.9rem;
        margin-top: 10px;
    }

    .brand-title {
        font-size: 1.5rem !important;
        max-width: 100%;
        word-wrap: break-word;
    }

    .intro-text {
        font-size: 0.98rem;
        max-width: 100%;
    }

    .highlight-card {
        padding: 24px 16px;
        width: 100%;
        max-width: 100%;
    }

    .highlight-card h3 {
        font-size: 1rem;
    }

    .highlight-card p {
        font-size: 0.93rem;
    }

    .split-text h2 {
        font-size: 1.45rem;
        max-width: 100%;
        word-wrap: break-word;
    }

    .split-text p {
        font-size: 0.98rem;
        max-width: 100%;
    }

    .mobile-nav {
        padding: 8px 0;
        width: 100%;
        max-width: 100vw;
    }

    .mobile-nav a {
        font-size: 1.15rem;
    }

    .footer-info p {
        font-size: 0.98rem;
    }

    .footer-logo img {
        height: 50px;
    }

    .gallery-item {
        height: 220px;
        width: 100%;
        max-width: 100%;
    }

    .gallery-grid {
        width: 100%;
        max-width: 100%;
    }

    /* Form responsive */
    #contactForm {
        padding: 22px 18px !important;
        width: 100%;
        max-width: 100%;
    }

    #contactForm input,
    #contactForm select,
    #contactForm textarea {
        font-size: 16px !important;
        padding: 12px !important;
        width: 100%;
        max-width: 100%;
    }

    #contactForm label {
        font-size: 0.88rem !important;
    }

    /* Ensure images don't overflow */
    .split-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 200px;
    }

    img {
        max-width: 100%;
        height: auto;
    }
}
