/* =========================================
   1. GLOBAL RESET & TYPOGRAPHY
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: #222;
    background-color: #ffffff;
    /* Pushes content down so the Sticky Header doesn't cover it */
    padding-top: 100px; 
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* =========================================
   2. STICKY NAVIGATION BAR
   ========================================= */
.sticky-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background-color: rgba(255, 255, 255, 0.98); /* Slight transparency */
    border-bottom: 1px solid #f2f2f2;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.nav-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Sizing */
.logo img {
    height: 50px;
    width: auto;
    display: block;
}

/* Menu Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #555;
    position: relative;
    font-weight: 400;
}

/* Menu Hover Effect (Underline) */
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: #000;
    transition: width 0.3s;
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: #000;
}

/* =========================================
   3. HERO SECTIONS (Headings)
   ========================================= */
.hero-intro {
    text-align: center;
    padding: 80px 20px 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-intro h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    color: #111;
    margin-bottom: 20px;
    line-height: 1.2;
}

.subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #999;
    margin-bottom: 20px;
    display: block;
}

.hero-desc {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #555;
    font-style: italic;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* =========================================
   4. HOME & WEDDINGS GALLERY (Masonry)
   ========================================= */
.gallery-wrapper {
    display: flex;
    flex-wrap: wrap;
    padding: 0 20px;
    max-width: 1600px;
    margin: 0 auto 100px auto;
}

.gallery-column {
    flex: 33.33%;
    max-width: 33.33%;
    padding: 0 15px;
}

.gallery-column img {
    margin-top: 30px;
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(10%);
    transition: transform 0.5s ease, filter 0.3s ease;
}

.gallery-column img:hover {
    filter: grayscale(0%);
    transform: scale(1.02);
}

/* Call to Action Box */
.booking-cta {
    background-color: #f9f9f9;
    text-align: center;
    padding: 100px 20px;
    margin-top: 50px;
}

.booking-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.booking-cta p {
    color: #666;
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid #000;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    background: transparent;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #000;
    color: #fff;
}

/* =========================================
   5. ABOUT PAGE STYLES
   ========================================= */
.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 80px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 20px 20px 0px #f7f7f7;
}

.about-text {
    flex: 1;
}

.about-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 15px;
}

.bio-paragraph {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* =========================================
   6. PRICES PAGE STYLES
   ========================================= */
.pricing-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 100px auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    border: 1px solid #f0f0f0;
    padding: 60px 30px;
    text-align: center;
    transition: transform 0.3s ease;
    background: #fff;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: #000;
}

.pricing-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.pricing-card .price {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.pricing-card.featured {
    border: 1px solid #000;
    background-color: #fffbfb;
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    color: #fff;
    font-size: 0.7rem;
    text-transform: uppercase;
    padding: 5px 15px;
}

.package-features {
    list-style: none;
    margin-bottom: 40px;
    padding: 0;
}

.package-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f9f9f9;
    color: #555;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    max-width: 800px;
    margin: 0 auto 100px auto;
    padding: 0 20px;
    text-align: center;
}

.faq-item {
    margin-bottom: 40px;
    text-align: left;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.faq-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* =========================================
   7. CONTACT PAGE STYLES (THIS IS THE FIX)
   ========================================= */
.contact-wrapper {
    display: flex;
    max-width: 1000px;
    margin: 0 auto 100px auto;
    padding: 0 20px;
    gap: 80px;
}

.contact-info {
    flex: 1;
    padding-top: 20px;
}

.info-block {
    margin-bottom: 40px;
}

.info-block h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact-form-container {
    flex: 2;
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 10px;
}

/* Underline Input Style */
.editorial-form input, 
.editorial-form textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #222;
    outline: none;
    border-radius: 0;
}

.editorial-form input:focus, 
.editorial-form textarea:focus {
    border-bottom: 1px solid #000;
}

/* =========================================
   8. FOOTER
   ========================================= */
footer {
    text-align: center;
    padding: 80px 20px;
    background-color: #fff;
    border-top: 1px solid #f9f9f9;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.social-links a {
    margin: 0 15px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
}

.copyright {
    margin-top: 50px;
    font-size: 0.7rem;
    color: #ccc;
    text-transform: uppercase;
}

/* =========================================
   9. ANIMATIONS
   ========================================= */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeInUp 1s ease forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.3s;
}

/* =========================================
   10. MOBILE RESPONSIVENESS
   ========================================= */
@media screen and (max-width: 900px) {
    /* Navbar fixes */
    .sticky-navbar {
        height: auto;
        padding: 15px 0;
        position: relative; /* Unstick on mobile if preferred, or keep fixed */
    }
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }
    body {
        padding-top: 0;
    }

    /* Grid Fixes */
    .gallery-column {
        flex: 50%;
        max-width: 50%;
    }

    /* About Page Fixes */
    .about-container {
        flex-direction: column;
        gap: 40px;
        margin: 40px auto;
    }
    
    /* Contact Page Fixes */
    .contact-wrapper {
        flex-direction: column;
        gap: 50px;
    }
    .contact-info {
        order: 2;
        text-align: center;
    }
    .contact-form-container {
        order: 1;
    }
}

@media screen and (max-width: 600px) {
    .gallery-column {
        flex: 100%;
        max-width: 100%;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-intro h1 {
        font-size: 2rem;
    }
}