/* Core Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
}

h1, h2, h3, h4, blockquote {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.max-width-small {
    max-width: 800px;
}

.section {
    padding: 6rem 0;
}

.light-bg {
    background-color: #f9f9f9;
}

/* Typography */
h1 { font-size: 3.5rem; margin-bottom: 1.5rem; line-height: 1.1; }
h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }
p { font-size: 1.1rem; margin-bottom: 1.5rem; color: #555; }

/* Buttons */
.btn, .btn-outline {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn {
    background-color: #fff;
    color: #000;
    border: 2px solid #fff;
}

.btn:hover {
    background-color: transparent;
    color: #fff;
}

.btn-outline {
    background-color: transparent;
    color: #000;
    border: 2px solid #000;
}

.btn-outline:hover {
    background-color: #000;
    color: #fff;
}

/* Navigation */
.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    color: #fff;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-nav {
    border: 1px solid #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 2rem;
}

.hero-content {
    max-width: 800px;
}

.hero p {
    color: #eee;
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

/* Split Sections */
.split-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.split-section.reverse .split-container {
    flex-direction: row-reverse;
}

.text-content {
    flex: 1;
}

.image-content {
    flex: 1;
    background-color: #000;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.image-content img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Image Break */
.image-break {
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-break img {
    width: 100%;
    height: auto;
    max-height: 75vh;
    object-fit: contain;
    display: block;
}

/* Center Section */
.text-center-section {
    text-align: center;
}

/* Quote Section */
.quote-section {
    padding: 8rem 2rem;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
}

blockquote {
    font-size: 2.5rem;
    line-height: 1.4;
    max-width: 900px;
    margin: 0 auto;
}

cite {
    display: block;
    margin-top: 2rem;
    font-size: 1.2rem;
    font-family: 'Lato', sans-serif;
    letter-spacing: 2px;
}

/* Testimonials */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.review-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    object-position: top; /* Prevents heads from getting cut off */
}

.stars {
    color: #f5b301;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-card p {
    font-size: 1rem;
    font-style: italic;
}

.review-card h4 {
    margin-top: 1rem;
    font-size: 1.1rem;
}

/* Policy Grid */
.policy-grid {
    display: grid;
    /* Tweaked for better mobile sizing */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.policy-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.pricing-list, .policy-list {
    list-style: none;
    margin: 1.5rem 0;
    padding-left: 1rem;
    border-left: 3px solid #000;
}

.pricing-list li, .policy-list li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.policy-list li {
    font-size: 1rem;
    color: #555;
}

/* =========================================
   Live Events & Rentals Styles
========================================= */

.services-container {
    padding: 4rem 20px;
    background-color: #fcfcfc;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #222;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 0.8rem;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 0.8rem;
}

.cta-button {
    display: inline-block;
    text-align: center;
    background-color: #222;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background-color: #555;
}

/* Booking & Payment */
.booking-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.payment-box {
    background: #fff;
    border: 1px solid #eaeaea;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.payment-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.paypal-btn {
    background-color: #00457C;
    color: white;
    border: none;
    width: 100%;
}

.venmo-btn {
    background-color: #008CFF;
    color: white;
    border: none;
    width: 100%;
}

/* Payment Group Styling (New Services) */
.new-services .btn {
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.new-services .btn:hover {
    opacity: 0.85;
}

.highlight-btn {
    background-color: #d4af37; /* A subtle gold to highlight the high-ticket item */
    color: #fff !important;
    border: none;
}

/* Footer */
.footer {
    background-color: #111;
    color: #fff;
    text-align: center;
    padding: 4rem 0;
}

.footer h3 {
    margin-bottom: 1rem;
}

.footer p {
    color: #aaa;
    margin-bottom: 0.5rem;
}

/* Mobile Responsiveness - Completely Rebuilt for Clean Layout */
@media (max-width: 768px) {
    .navbar {
        position: relative; /* Removes the overlap! */
        background-color: #111; /* Gives it a solid header block */
        padding: 1.5rem 1rem;
        text-align: center;
    }
    .nav-links {
        flex-direction: column; /* Stacks the links cleanly */
        gap: 1rem;
        margin-top: 1.5rem;
        width: 100%;
    }
    .hero {
        height: auto;
        min-height: 80vh;
        padding: 4rem 1rem;
    }
    .split-container, .split-section.reverse .split-container, .booking-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
    h1 { font-size: 2.5rem; margin-top: 1rem; }
    h2 { font-size: 2rem; }
    blockquote { font-size: 1.8rem; }
}