@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
    --color-primary: #F2B8D8;
    --color-secondary: #8B4513;
    --color-background: #F8F4ED;
    --color-accent: #5C6F5A;
    --color-text: #333333;
    --color-ivory: #F8F4ED;
    --color-brown: #8B4513;
    --color-pink: #F2B8D8;
    --color-sage: #5C6F5A;
    
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Open Sans', sans-serif;
    
    --header-height: 70px;
    --transition-smooth: all 0.3s ease-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--color-text);
    background-color: var(--color-background);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

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

button, .btn {
    cursor: pointer;
    font-family: var(--font-secondary);
    transition: var(--transition-smooth);
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: var(--color-ivory);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
}

.header.scrolled {
    height: 60px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-brown);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.nav {
    display: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-pink);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--color-brown);
}

.header-actions {
    display: none;
    align-items: center;
    gap: 20px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-brown);
}

.phone-link:hover {
    color: var(--color-pink);
}

.btn-primary {
    background: var(--color-pink);
    color: var(--color-brown);
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    background: #e5a8c9;
    transform: translateY(-2px);
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--color-brown);
    transition: var(--transition-smooth);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--color-ivory);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: right 0.4s ease;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu .nav-link {
    font-size: 24px;
    font-family: var(--font-primary);
}

.mobile-menu .btn-primary {
    font-size: 16px;
    padding: 15px 30px;
}

.mobile-menu .phone-link {
    font-size: 18px;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: var(--color-brown);
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--color-ivory);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--color-ivory);
    padding: 0 20px;
    max-width: 900px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.5s;
}

.hero .subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.8s;
}

.hero .btn-primary {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 1.1s;
    font-size: 16px;
    padding: 18px 40px;
}

/* Sections Common */
.section {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 36px;
    color: var(--color-brown);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--color-text);
    max-width: 600px;
    margin: 0 auto;
}

/* Welcome Section */
.welcome-section {
    background: var(--color-ivory);
    padding: 100px 0;
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.welcome-quote {
    font-family: var(--font-primary);
    font-size: 28px;
    color: var(--color-brown);
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.4;
}

.welcome-text p {
    font-size: 16px;
    color: var(--color-text);
    line-height: 1.8;
}

.welcome-image {
    display: flex;
    justify-content: center;
}

.welcome-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* Venue Spotlight */
.venue-spotlight {
    background: var(--color-background);
}

.venue-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.venue-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 400px;
    cursor: pointer;
}

.venue-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.venue-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--color-ivory);
}

.venue-card-overlay h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.venue-card-overlay p {
    font-size: 15px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.venue-card-overlay .btn-secondary {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid var(--color-ivory);
    color: var(--color-ivory);
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
}

.venue-card-overlay .btn-secondary:hover {
    background: var(--color-pink);
    border-color: var(--color-pink);
    color: var(--color-brown);
}

/* Why Choose Us */
.why-choose-us {
    background: linear-gradient(135deg, #f0ebe3 0%, #e8e4db 100%);
    padding: 100px 0;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.why-features h2 {
    font-size: 32px;
    color: var(--color-brown);
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--color-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--color-brown);
}

.feature-text h4 {
    font-size: 18px;
    color: var(--color-brown);
    margin-bottom: 8px;
}

.feature-text p {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.6;
}

/* Testimonials */
.testimonials-section {
    background: var(--color-brown);
    padding: 100px 0;
    color: var(--color-ivory);
}

.testimonials-section .section-header h2 {
    color: var(--color-ivory);
}

.testimonials-section .section-header p {
    color: rgba(255,255,255,0.8);
}

.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 40px;
    text-align: center;
}

.testimonial-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 25px;
    overflow: hidden;
    border: 3px solid var(--color-pink);
}

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

.testimonial-quote {
    font-family: var(--font-primary);
    font-size: 22px;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 16px;
    color: var(--color-pink);
    font-weight: 600;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background: var(--color-pink);
    transform: scale(1.2);
}

/* Services Overview */
.services-section {
    background: var(--color-ivory);
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    background: var(--color-background);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--color-pink);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--color-pink);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--color-brown);
}

.service-card h3 {
    font-size: 20px;
    color: var(--color-brown);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    background: var(--color-background);
    padding: 100px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 15px;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-primary);
    font-size: 18px;
    color: var(--color-brown);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    color: var(--color-pink);
}

.faq-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 20px 20px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.7;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-brown) 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-banner h2 {
    font-size: 36px;
    color: var(--color-ivory);
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.cta-banner .btn-primary {
    background: var(--color-ivory);
    color: var(--color-brown);
    font-size: 16px;
    padding: 18px 45px;
}

.cta-banner .btn-primary:hover {
    background: var(--color-pink);
    color: var(--color-ivory);
}

/* Contact Section */
.contact-section {
    background: var(--color-ivory);
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info h3 {
    font-size: 28px;
    color: var(--color-brown);
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    fill: var(--color-sage);
}

.contact-item a, 
.contact-item span {
    font-size: 16px;
    color: var(--color-text);
}

.contact-item a:hover {
    color: var(--color-pink);
}

.contact-form {
    background: var(--color-background);
    padding: 40px;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-brown);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-secondary);
    font-size: 15px;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-pink);
    box-shadow: 0 0 0 3px rgba(242,184,216,0.2);
}

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

/* Footer */
.footer {
    background: var(--color-brown);
    color: var(--color-ivory);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-brand h3 {
    font-family: var(--font-primary);
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--color-pink);
    border-color: var(--color-pink);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: var(--color-ivory);
}

.footer-links h4,
.footer-contact h4,
.footer-cta h4 {
    font-family: var(--font-primary);
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--color-ivory);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-pink);
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-cta .btn-primary {
    width: 100%;
    text-align: center;
    padding: 15px;
}

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

.footer-bottom p {
    font-size: 13px;
    opacity: 0.6;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    background: var(--color-brown);
}

.scroll-top svg {
    width: 20px;
    height: 20px;
    fill: var(--color-brown);
}

.scroll-top:hover svg {
    fill: var(--color-ivory);
}

/* Page Hero (for inner pages) */
.page-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--color-brown);
    margin-top: var(--header-height);
}

.page-hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-ivory);
    padding: 0 20px;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.5s;
}

.page-hero p {
    font-size: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.7s;
}

/* Gallery Styles */
.gallery-section {
    background: var(--color-ivory);
    padding: 80px 0;
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    padding: 0 20px;
}

.filter-btn {
    padding: 10px 25px;
    border: 1px solid var(--color-brown);
    background: transparent;
    color: var(--color-brown);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-pink);
    border-color: var(--color-pink);
    color: var(--color-brown);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

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

.gallery-item-overlay svg {
    width: 40px;
    height: 40px;
    fill: var(--color-ivory);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 40px;
    color: var(--color-ivory);
    cursor: pointer;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: var(--color-ivory);
    cursor: pointer;
    padding: 20px;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

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

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero h1, 
    .hero .subtitle, 
    .hero .btn-primary,
    .page-hero h1,
    .page-hero p {
        opacity: 1;
        transform: none;
    }
}

/* Tablet Styles */
@media (min-width: 768px) {
    .nav {
        display: flex;
        align-items: center;
    }
    
    .nav-list {
        display: flex;
    }
    
    .header-actions {
        display: flex;
    }
    
    .hamburger {
        display: none;
    }
    
    .welcome-content {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
    
    .welcome-text {
        text-align: left;
    }
    
    .venue-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero h1 {
        font-size: 56px;
    }
    
    .section-header h2 {
        font-size: 42px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .header-inner {
        padding: 0 50px;
    }
    
    .nav-list {
        gap: 35px;
    }
    
    .venue-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .venue-card {
        height: 500px;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
    
    .hero h1 {
        font-size: 72px;
    }
    
    .welcome-quote {
        font-size: 32px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Mobile Navigation Visibility */
@media (max-width: 767px) {
    .nav {
        display: none;
    }
    
    .header-actions .phone-link span,
    .header-actions .btn-primary span {
        display: none;
    }
    
    .header-actions .btn-primary::after {
        content: 'Book';
    }
    
    .mobile-menu {
        display: flex;
    }
}

@media (max-width: 424px) {
    :root {
        --header-height: 60px;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero .subtitle {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .page-hero h1 {
        font-size: 36px;
    }
    
    .venue-card {
        height: 350px;
    }
    
    .venue-card-overlay h3 {
        font-size: 24px;
    }
    
    .cta-banner h2 {
        font-size: 28px;
    }
    
    .testimonial-quote {
        font-size: 18px;
    }
}
