/* ====================================================== */
/* GLOBAL RESET & BASE STYLES                             */
/* ====================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #fff;
    color: #333; 
    line-height: 1.6;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 18px; 
}

a { text-decoration: none; color: inherit; transition: opacity 0.2s ease; }
img { max-width: 100%; display: block; }

/* ====================================================== */
/* TYPOGRAPHY                                             */
/* ====================================================== */
h1, h2, h3, h4 {
    color: #1a2a3a; 
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    font-weight: 700;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #0088cc, #0055aa);
    margin: 15px auto 0;
    border-radius: 4px;
}

/* ====================================================== */
/* NAVBAR                                                 */
/* ====================================================== */
.navbar {
    width: 100%;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

.logo img {
    max-height: 60px; 
    width: auto;
}

.navbar nav a {
    margin-left: 25px;
    font-weight: 600;
    color: #555;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.navbar nav a:hover { color: #0088cc; }

/* BUTTONS */
.btn-dark, .btn-light, .btn-primary, .btn-outline {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-dark, .btn-primary {
    background: linear-gradient(135deg, #0099ff 0%, #0066cc 100%);
    color: #fff !important;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 136, 204, 0.3);
}

.btn-dark:hover, .btn-primary:hover { 
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 136, 204, 0.4);
}

.btn-light, .btn-outline {
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
}

.btn-light:hover, .btn-outline:hover {
    background: #f8f9fa;
    border-color: #bbb;
    transform: translateY(-2px);
}

/* ====================================================== */
/* MOBILE NAVBAR FIX                                      */
/* ====================================================== */

@media (max-width: 768px) {
    /* 1. Unhide the navbar and reduce padding */
    .navbar { 
        display: flex; 
        padding: 10px 20px; /* Slimmer top/bottom padding */
        justify-content: space-between;
    }

    /* 2. Shrink the logo for mobile screens */
    .logo img { 
        max-height: 40px; 
    }

    /* 3. Adjust the nav container to fit next to logo */
    .navbar nav {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    /* 4. Make the 'Play my wedding!' button smaller and tighter */
    .navbar .btn-dark {
        padding: 8px 15px;
        font-size: 0.8rem; /* Slightly smaller text */
        white-space: nowrap; /* Stops text wrapping */
    }

    /* 5. Hide the 'Reviews' button on mobile to prevent crowding */
    /* This keeps the focus on the main Booking CTA */
    .navbar .btn-light { 
        display: none; 
    }
}

/* ====================================================== */
/* HERO SECTION                                           */
/* ====================================================== */
.hero {
    padding: 60px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: #fff;
    border-bottom: 1px solid #eaeaea;
    max-width: 1400px; 
    margin: 0 auto;
}

.hero p { margin-bottom: 35px; }

.hero-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: transform 0.5s ease;
}

.hero-img img:hover { transform: scale(1.02); }

/* ====================================================== */
/* FIX: VIDEO PLAYER SIZE                                 */
/* ====================================================== */
/* This targets the specific class used in your HTML */
.video-player, .media-player {
    width: 100%;
    /* Strict width limit for desktop */
    max-width: 600px !important; 
    margin: 20px auto; /* Centers the video */
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 12px;
    overflow: hidden;
}

/* ====================================================== */
/* SECTION SPACING                                        */
/* ====================================================== */
.content-section, .reviews, .pricing-section, .venues, .more-reviews, .cta, .promise-section {
    padding: 60px 5%;
}

.pricing-section, .more-reviews, .cta, .promise-section {
    background-color: #f7f9fc;
    border-top: 1px solid #edf2f7;
    border-bottom: 1px solid #edf2f7;
}

.venues, .reviews, .content-section {
    background-color: #ffffff;
}

/* ====================================================== */
/* MY PROMISE (2x2 Grid)                                  */
/* ====================================================== */
.promise-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.promise-item {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.promise-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #0088cc;
}

@media (min-width: 768px) {
    .promise-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* ====================================================== */
/* FIX: PRICING SECTION (2x2 Grid)                        */
/* ====================================================== */
.pricing-header {
    text-align: center;
    margin-bottom: 40px;
}

/* FIX: Limit the image size inside pricing */
.pricing-img img {
    max-width: 400px; 
    margin: 0 auto 20px;
    border-radius: 8px;
}

.pricing-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

/* The Grid Logic */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr; /* Default: Stacked (Mobile) */
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

/* FIX: Force 2x2 Grid on Desktop */
@media (min-width: 800px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
}

.pricing-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    height: 100%; 
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: #0088cc;
}

.package-name { font-size: 1.4rem; margin-bottom: 5px; text-align: center; }
.package-subtitle { display: block; text-align: center; font-size: 0.9rem; color: #777; margin-bottom: 10px; font-weight: 600; }
.tagline { text-align: center; font-style: italic; color: #555; margin-bottom: 15px; font-size: 0.9rem; }

.price-container { text-align: center; margin-bottom: 15px; }
.price { font-size: 1.8rem; font-weight: 800; color: #0088cc; }

.vibe-box {
    background: #f0f9ff;
    padding: 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border-left: 3px solid #0088cc;
}

.features-block h4 { font-size: 0.9rem; text-transform: uppercase; color: #999; margin-bottom: 10px; }
.features-list { list-style: none; padding: 0; margin-bottom: 20px; }
.features-list li {
    font-size: 0.9rem;
    padding: 6px 0;
    border-bottom: 1px solid #f5f5f5;
    color: #555;
}

/* ====================================================== */
/* PRICING VIDEO WRAPPER SPACING                          */
/* ====================================================== */
.pricing-video-wrapper {
    margin-top: 50px;    /* Space above the video */
    margin-bottom: 60px; /* Space below the buttons (before Venues section) */
}

/* ====================================================== */
/* FIX: VENUES (Stop Enormous Images)                     */
/* ====================================================== */

/* Container limit */
.venues .container, .venue-grid, .four-col {
    max-width: 1200px;
    margin: 0 auto;
}

.four-col {
    display: grid;
    grid-template-columns: 1fr; /* Mobile stack */
    gap: 30px;
}

/* Desktop: 3 Columns */
@media (min-width: 800px) {
    .four-col {
        grid-template-columns: repeat(3, 1fr); 
    }
}

.venue-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.venue-card:hover { transform: translateY(-5px); }

/* FIX: Forces all venue images to be the same height */
.venue-card img {
    width: 100%;
    height: 250px !important; /* Fixed height stops them being huge */
    object-fit: cover !important; /* Crops image neatly */
    display: block;
}

.venue-card div, .venue-card h4, .venue-card p {
    padding: 20px;
    margin: 0;
    text-align: center;
}

/* ====================================================== */
/* REVIEWS & COMPARISON TABLE                             */
/* ====================================================== */
.reviews .testimonial-cards-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.reviews .testimonial-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    padding: 30px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
}

.reviews .author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.reviews .dark-card { background: #1a2a3a; color: #fff; border: none; }
.reviews .dark-card p { color: #ddd; }
.reviews .dark-card .author-name { color: #fff; }

/* MORE REVIEWS */
.more-reviews .testimonial-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
}

.more-reviews .testimonial-card-long {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.more-reviews .testimonial-text-long {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.more-reviews .testimonial-author-long {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

/* TABLE */
.feature-comparison-container {
    max-width: 900px;
    margin: 20px auto;
    padding: 0;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #eee;
}

.feature-comparison-table { width: 100%; border-collapse: collapse; }
.feature-comparison-table thead th {
    background-color: #1a2a3a; 
    color: white;
    padding: 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.feature-comparison-table th.saphi-column { background-color: #0088cc; }
.feature-comparison-table td { padding: 15px 20px; border-bottom: 1px solid #eee; color: #666; }
.feature-comparison-table td.saphi-column {
    background-color: #f0f9ff;
    color: #006699;
    font-weight: 600;
    text-align: center;
    border-left: 1px solid #e1eef7;
    border-right: 1px solid #e1eef7;
}

.cross-mark { color: #0088cc; font-weight: bold; }
.check-mark { color: #27ae60; }

/* ====================================================== */
/* FAQ, CTA & FOOTER                                      */
/* ====================================================== */
.faq { max-width: 800px; margin: 40px auto; padding: 0 20px; }
.faq details {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    background: #fff;
    cursor: pointer;
}
.faq summary { font-weight: 600; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }

.cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.cta-buttons { display: flex; gap: 20px; justify-content: center; }

footer {
    padding: 60px 5%;
    background: #111;
    color: #999;
    font-size: 0.9rem;
    text-align: center;
}

/* RESPONSIVE FOOTER */
@media (max-width: 900px) {
    .hero, .two-col { grid-template-columns: 1fr; }
}