/* --- Variables & Reset --- */
:root {
    --primary-dark: #1A1A1A;
    --text-grey: #4A4A4A;
    --accent-gold: #967A40; /* Muted Luxury Gold */
    --bg-light: #F9F9F9;
    --white: #FFFFFF;
    --border-light: #E5E5E5;
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-hover: 0 20px 40px rgba(0,0,0,0.1);
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Manrope', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--primary-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Typography Utilities --- */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 600;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center { text-align: center; }

/* --- Navigation (Sticky) --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Navbar logo image sizing */
.logo img {
    height: 44px;
    width: auto;
    display: block;
}

.navbar.scrolled .logo img {
    height: 44px; /* keep same size as default so both logos match on desktop */
}

.logo-accent { 
    color: var(--accent-gold);
    transition: all 0.3s ease;
}

.logo:hover .logo-accent {
    transform: scale(1.2);
    display: inline-block;
}

.nav-links a {
    margin-left: 2rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.navbar.scrolled .nav-links a { color: var(--primary-dark); }

.nav-cta {
    background: var(--white);
    color: var(--primary-dark) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 2px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.2);
}

.nav-cta::after {
    display: none;
}

.navbar.scrolled .nav-cta {
    background: var(--primary-dark);
    color: var(--white) !important;
}

.navbar.scrolled .nav-cta:hover {
    background: var(--accent-gold);
}

/* --- Hero Section (The Reference Layout) --- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://images.pexels.com/photos/1313482/pexels-photo-1313482.jpeg') center/cover no-repeat;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    z-index: -1;
}

.hero-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
    margin-top: 4rem; /* Offset for nav */
}

.hero-text {
    flex: 1;
    color: var(--white);
    padding-right: 4rem;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-text .gold-text {
    color: #F0D59D;
    font-style: italic;
}

.hero-text p {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
}

/* --- Floating Form Card --- */
.hero-form-card {
    flex: 0 0 400px;
    background: var(--white);
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.form-group, .form-group-row {
    margin-bottom: 1rem;
}

.form-group-row {
    display: flex;
    gap: 1rem;
}

input, select, textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 1px solid #e0e0e0;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    border-radius: 2px;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--primary-dark);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(150, 122, 64, 0.1);
    transform: translateY(-2px);
}

input:hover, select:hover, textarea:hover {
    border-color: #b0b0b0;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #000000;
    color: var(--white);
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-family: var(--font-sans);
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--accent-gold);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn-submit:hover::before {
    width: 300px;
    height: 300px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    color: var(--white) !important;
}

/* --- Intro Section --- */
.intro-section {
    padding: 8rem 0 6rem;
    background: var(--white);
}

.overline {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.intro-section h2 {
    font-size: 3rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
}

.intro-body {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-grey);
}

/* --- Packages Section --- */
.packages-section {
    padding: 4rem 0 8rem;
    background: var(--bg-light);
}

.section-header { margin-bottom: 4rem; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 0.5rem; }

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.package-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    position: relative;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(150, 122, 64, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.package-card:hover::before {
    opacity: 1;
}

.package-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.card-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    overflow: hidden;
}

.package-card:hover .card-image {
    transform: scale(1.1);
}

.card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Reduce gaps in Christmas packages section */
#dining .card-content {
    padding: 1.5rem;
    gap: 0.5rem;
}

#dining .card-desc {
    margin-bottom: 0.75rem;
}

#dining .event-details {
    margin-bottom: 0.75rem;
}

#dining .christmas-features {
    margin-bottom: 1rem;
}

.venue-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-grey);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.card-desc {
    font-size: 0.95rem;
    color: var(--text-grey);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.price-block {
    margin-bottom: 1.5rem;
}

.price {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--accent-gold);
    font-weight: 600;
    transition: all 0.3s ease;
}

.package-card:hover .price {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(150, 122, 64, 0.3);
}

.per-person {
    font-size: 0.8rem;
    color: #999;
}

.btn-outline {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 1px solid var(--primary-dark);
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-outline:hover::before {
    left: 0;
}

.btn-outline:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.inclusions-bar {
    margin-top: 3rem;
    margin-bottom: 0;
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 2rem;
}

/* Reduce space before Christmas Packages */
#dining {
    padding-top: 2rem;
    border-top: 1px solid #ddd;
    margin-top: 0;
}

.inc-label {
    font-weight: 700;
    margin-right: 1rem;
    padding-left: 1.5rem;
    color: var(--accent-gold);
}

.inclusions-bar ul {
    display: inline-block;
}

.inclusions-bar li {
    display: inline-block;
    margin: 0 1rem;
    font-size: 0.95rem;
    color: var(--text-grey);
    position: relative;
}

.inclusions-bar li:not(:last-child)::after {
    content: "•";
    position: absolute;
    right: -1.2rem;
    color: #ccc;
}

/* --- Christmas Section --- */
.christmas-section {
    padding: 6rem 0;
    background: var(--white);
}

.christmas-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.christmas-content { flex: 1; }

.christmas-image { flex: 1; }
.christmas-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 20px 20px 0px var(--bg-light);
    transition: all 0.4s ease;
    cursor: pointer;
}

.christmas-image img:hover {
    transform: translate(-5px, -5px);
    box-shadow: 25px 25px 0px var(--accent-gold);
}

.overline-gold {
    color: var(--accent-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1rem;
}

.christmas-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.event-details {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    font-weight: 600;
}

.christmas-price {
    font-size: 2.5rem;
    font-family: var(--font-serif);
    color: var(--accent-gold);
    margin-bottom: 2rem;
}

.christmas-price small {
    font-size: 1rem;
    font-family: var(--font-sans);
    color: var(--text-grey);
}

.christmas-features {
    margin-bottom: 2.5rem;
}

.christmas-features li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.christmas-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

.btn-gold {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-gold);
    color: var(--white);
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(150, 122, 64, 0.3);
}

.btn-gold:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* --- Footer --- */
footer {
    background: var(--white);
    border-top: 1px solid #eee;
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-logo img {
    height: 80px;
    width: auto;
    display: block;
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-contact-item {
    color: var(--primary-dark);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.footer-contact-item::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.footer-contact-item:hover {
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.footer-contact-item:hover::after {
    width: 100%;
}

.footer-links a {
    margin: 0 1rem;
    color: var(--text-grey);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.footer-links a:hover::after {
    width: 100%;
}

.copyright {
    margin-top: 3rem;
    font-size: 0.8rem;
    color: #999;
}

/* --- Animations --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Additional Modern Interactive Effects --- */
.venue-tag {
    transition: all 0.3s ease;
}

.package-card:hover .venue-tag {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.card-content h3 {
    transition: all 0.3s ease;
}

.package-card:hover .card-content h3 {
    color: var(--accent-gold);
}

.inclusions-bar li {
    transition: all 0.3s ease;
}

.inclusions-bar li:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.christmas-features li {
    transition: all 0.3s ease;
}

.christmas-features li:hover {
    color: var(--accent-gold);
    transform: translateX(10px);
}

.christmas-features li::before {
    transition: all 0.3s ease;
}

.christmas-features li:hover::before {
    transform: scale(1.3);
}

.overline, .overline-gold {
    transition: all 0.3s ease;
}

.intro-section:hover .overline {
    letter-spacing: 4px;
}

.detail-item {
    transition: all 0.3s ease;
    cursor: default;
}

.detail-item:hover {
    color: var(--accent-gold);
    transform: scale(1.05);
}

/* Smooth scrolling enhancement */
html {
    scroll-behavior: smooth;
}

/* Add subtle pulse animation to CTA elements */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(150, 122, 64, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(150, 122, 64, 0);
    }
}

.nav-cta {
    animation: pulse 2s infinite;
}

/* Parallax-like effect for hero section */
.hero-bg {
    transition: transform 0.1s ease-out;
}

/* --- Mobile/Desktop Visibility Utilities --- */
.mobile-only {
    display: none !important;
}

.desktop-only {
    display: flex !important;
}

/* --- Get In Touch Button --- */
.btn-get-in-touch {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: var(--accent-gold);
    color: var(--white);
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(150, 122, 64, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-get-in-touch:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* --- Mobile Contact Section --- */
.contact-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.contact-form-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 1rem;
}

/* --- Mobile Responsive --- */
@media (max-width: 900px) {
    /* Show mobile-only elements */
    .mobile-only {
        display: block !important;
    }

    .btn-get-in-touch.mobile-only {
        display: inline-block !important;
    }

    /* Hide desktop form in hero section */
    .desktop-only {
        display: none !important;
    }

    .container {
        padding: 0 1.5rem;
    }

    .navbar {
        padding: 1rem 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 20px rgba(0,0,0,0.05);
        top: 0;
    }

    /* Force logo.png on mobile */
    .logo img {
        content: url('logo.png');
    }

    .navbar.scrolled {
        padding: 1rem 0;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .logo {
        font-size: 1.4rem;
        padding: 0.5rem 0;
        color: var(--primary-dark);
    }

    .logo .logo-accent {
        color: var(--accent-gold);
    }

    .nav-links {
        display: none; /* Simplified mobile handling */
    }

    .hero-section {
        min-height: auto;
        padding: 10rem 0 4rem;
    }

    .hero-content-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-top: 4rem;
        margin-top: 2rem;
        padding-bottom: 2rem;
        justify-content: center;
    }

    .hero-text {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-form-card {
        flex: 1 1 auto;
        width: 100%;
        max-width: 500px;
        padding: 1.8rem;
    }

    .form-group-row {
        flex-direction: column;
        gap: 1rem;
    }

    input, select, textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .intro-section {
        padding: 4rem 0 3rem;
    }

    .intro-section h2 {
        font-size: 2rem;
    }

    .intro-body {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .packages-section {
        padding: 3rem 0 4rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
        padding: 0 1rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 0.5rem;
    }

    .package-card:hover {
        transform: translateY(-8px) scale(1.01);
    }

    .card-image {
        height: 200px;
    }

    .card-content {
        padding: 1.5rem;
    }

    .inclusions-bar {
        margin-top: 2rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .inc-label {
        display: block;
        margin-bottom: 0.5rem;
    }

    .inclusions-bar ul {
        display: block;
        margin-top: 1rem;
    }

    .inclusions-bar li {
        display: block;
        margin: 0.5rem 0;
        padding-left: 1rem;
    }

    .inclusions-bar li:not(:last-child)::after {
        display: none;
    }

    .christmas-section {
        padding: 4rem 0;
        background: var(--white);
    }

    .christmas-container {
        flex-direction: column-reverse;
        gap: 2.5rem;
        padding: 0 2rem;
        max-width: 100%;
    }

    .christmas-content {
        padding: 0 1rem;
    }

    .christmas-content h2 {
        font-size: 2rem;
        margin-bottom: 1.2rem;
    }

    .christmas-content p {
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }

    .event-details {
        flex-direction: column;
        gap: 0.8rem;
        align-items: flex-start;
    }

    .christmas-price {
        font-size: 2rem;
    }

    .christmas-features {
        margin-bottom: 2rem;
    }

    .christmas-image img {
        box-shadow: 10px 10px 0px var(--bg-light);
    }

    .christmas-image img:hover {
        transform: translate(-3px, -3px);
        box-shadow: 13px 13px 0px var(--accent-gold);
    }

    .contact-section {
        padding: 3rem 0;
    }

    .contact-form-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-container {
        padding: 0 1.5rem;
    }

    .footer-logo {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }

    .footer-contact {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .footer-contact-item {
        font-size: 0.9rem;
    }

    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem 1.2rem;
        margin-bottom: 1rem;
    }

    .footer-links a {
        margin: 0;
        font-size: 0.85rem;
    }

    .copyright {
        margin-top: 2rem;
        padding: 0 1rem;
    }

    /* Disable hover effects on touch devices for better performance */
    .package-card:hover::before {
        opacity: 0.5;
    }

    .nav-cta {
        animation: none; /* Disable pulse on mobile */
    }
}

@media (max-width: 600px) {
    body {
        overflow-x: hidden;
    }

    .navbar {
        padding: 1rem 0;
        width: 100%;
    }

    .navbar.scrolled {
        padding: 0.8rem 0;
    }

    .nav-container {
        padding: 0 1rem;
        width: 100%;
    }

    .logo {
        font-size: 1.2rem;
    }

    .hero-section {
        padding: 7rem 0 5rem;
        width: 100%;
        overflow: visible;
    }

    .hero-content-wrapper {
        width: 100%;
        padding: 4rem 1rem 3rem;
    }

    .hero-text {
        width: 100%;
    }

    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        word-wrap: break-word;
    }

    .hero-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .hero-form-card {
        padding: 1.5rem;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .form-sidebar h3 {
        font-size: 1.2rem;
    }

    .btn-submit {
        padding: 0.9rem;
        font-size: 0.85rem;
        width: 100%;
    }

    .
    .intro-section h2 {
        font-size: 1.6rem;
        padding: 0 1rem;
    }

    .overline {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }

    .intro-body {
        font-size: 0.95rem;
        padding: 0 1rem;
        max-width: 100%;
    }

    .packages-section {
        padding: 2.5rem 0 3rem;
        width: 100%;
    }

    .section-header {
        width: 100%;
    }

    .section-header h2 {
        font-size: 1.5rem;
        padding: 0 1rem;
    }

    .cards-grid {
        width: 100%;
        padding: 0;
    }

    .package-card {
        width: 100%;
        max-width: 100%;
    }

    .card-image {
        height: 180px;
        width: 100%;
    }

    .card-content {
        padding: 1.3rem;
        width: 100%;
    }

    .card-content h3 {
        font-size: 1.3rem;
    }

    .card-desc {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .price {
        font-size: 1.3rem;
    }

    .venue-tag {
        font-size: 0.7rem;
    }

    .inclusions-bar {
        padding: 1.5rem 1rem 0;
        width: 100%;
    }

    .inc-label {
        font-size: 0.85rem;
    }

    .inclusions-bar li {
        font-size: 0.85rem;
        width: 100%;
    }

    .christmas-section {
        padding: 3rem 0;
        width: 100%;
    }

    .christmas-container {
        padding: 0 1rem;
        gap: 2rem;
        width: 100%;
    }

    .christmas-content {
        padding: 0;
        width: 100%;
    }

    .christmas-content h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        word-wrap: break-word;
    }

    .overline-gold {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
        margin-bottom: 0.8rem;
    }

    .christmas-content p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.2rem;
    }

    .event-details {
        font-size: 0.9rem;
        width: 100%;
    }

    .detail-item {
        width: 100%;
        word-wrap: break-word;
    }

    .christmas-price {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .christmas-price small {
        font-size: 0.9rem;
    }

    .christmas-features {
        width: 100%;
    }

    .christmas-features li {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
        word-wrap: break-word;
    }

    .christmas-image {
        width: 100%;
    }

    .christmas-image img {
        width: 100%;
        height: auto;
        box-shadow: 8px 8px 0px var(--bg-light);
    }

    .christmas-image img:hover {
        transform: translate(-2px, -2px);
        box-shadow: 10px 10px 0px var(--accent-gold);
    }

    .btn-gold,
    .btn-outline {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
        width: 100%;
        text-align: center;
        display: block;
    }

    footer {
        padding: 2.5rem 0 1.5rem;
        width: 100%;
    }

    .footer-container {
        width: 100%;
        padding: 0 1rem;
    }

    .footer-logo {
        font-size: 1.2rem;
    }

    .footer-contact {
        gap: 0.8rem;
        width: 100%;
    }

    .footer-contact-item {
        font-size: 0.85rem;
        word-break: break-word;
        width: 100%;
        display: block;
    }

    .footer-links {
        gap: 0.6rem 1rem;
        width: 100%;
    }

    .footer-links a {
        font-size: 0.8rem;
    }

    .copyright {
        font-size: 0.75rem;
        margin-top: 1.5rem;
        padding: 0 0.5rem;
    }

    /* Optimize touch targets for mobile */
    .btn-submit,
    .btn-gold,
    .btn-outline,
    .nav-cta {
        min-height: 44px; /* iOS recommended touch target */
    }

    input, select, textarea {
        min-height: 44px;
        width: 100%;
    }

    /* Ensure no horizontal scroll */
    .container,
    .nav-container,
    .hero-content-wrapper,
    .christmas-container,
    .footer-container {
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Reduce animations on small screens for performance */
    .package-card:hover {
        transform: translateY(-5px);
    }

    .package-card:hover .card-image {
        transform: scale(1.05);
    }
}

/* Extra small devices */
@media (max-width: 380px) {
    .logo {
        font-size: 1rem;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

    .hero-form-card {
        padding: 1.2rem;
    }

    .section-header h2,
    .intro-section h2,
    .christmas-content h2 {
        font-size: 1.4rem;
    }

    .footer-contact-item {
        font-size: 0.8rem;
    }

    .footer-links a {
        font-size: 0.75rem;
    }
}