/* ==========================================================================
   Steamboat DJ Liam Grist — Divi-matching theme
   ========================================================================== */

/* --- Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
        Arial, sans-serif;
    color: #333c47;
    line-height: 1.7;
    background: #fff;
}

a {
    color: #336799;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #338ad3;
}

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

/* --- Container --- */
.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.site-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333c47;
    letter-spacing: 0.02em;
}

.site-logo:hover {
    color: #338ad3;
}

.nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    border-bottom: 1px solid #e8e8e8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-menu.active {
    display: flex;
}

.nav-link {
    display: block;
    padding: 0 20px;
    line-height: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #333c47;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: color 0.2s;
    border-bottom: 1px solid #f0f0f0;
}

.nav-link:last-child {
    border-bottom: none;
}

.nav-link:hover,
.nav-link.active {
    color: #338ad3;
}

/* Hamburger */
.nav-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #333c47;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.nav-toggle-bars {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle-bars span {
    display: block;
    width: 24px;
    height: 2px;
    background: #333c47;
    transition:
        transform 0.3s,
        opacity 0.3s;
}

.nav-toggle.active .nav-toggle-bars span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .nav-toggle-bars span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-bars span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    background: #2c3e50;
    padding: 60px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text {
    color: #fff;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-video {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%; /* 9:16 aspect ratio for Shorts */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.hero-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition:
        background 0.2s,
        transform 0.1s;
}

.btn-primary {
    background: #336799;
    color: #fff;
}

.btn-primary:hover {
    background: #338ad3;
    color: #fff;
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: #336799;
    border: 2px solid #336799;
}

.btn-outline:hover {
    background: #336799;
    color: #fff;
}

/* ==========================================================================
   Page Content
   ========================================================================== */
.page-header {
    background: #f7f7f7;
    padding: 40px 0;
    border-bottom: 1px solid #e8e8e8;
}

.page-header h1 {
    color: #338ad3;
    font-size: 2rem;
    font-weight: 700;
}

.page-content {
    padding: 50px 0;
}

.page-content h2 {
    color: #338ad3;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e8e8e8;
}

.page-content h3 {
    color: #333c47;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.page-content p {
    margin-bottom: 1rem;
}

.page-content ul,
.page-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.page-content li {
    margin-bottom: 0.35rem;
}

/* ==========================================================================
   Home Page Sections
   ========================================================================== */
.home-section {
    padding: 60px 0;
}

.home-section:nth-child(even) {
    background: #f7f7f7;
}

.home-section h2 {
    color: #338ad3;
    font-size: 1.75rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 1.5rem;
}

.home-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
}

.home-intro p {
    margin-bottom: 1rem;
}

/* CTA Block (Divi left-border style) */
.home-action {
    border-left: 5px solid #336799;
    padding: 20px 25px;
    margin: 30px 0;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.5;
    background: #f9f9f9;
}

.home-action a {
    color: #336799;
    font-weight: 700;
}

.home-action a:hover {
    color: #338ad3;
}

/* ==========================================================================
   Pricing / Package Cards
   ========================================================================== */
.packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.package-card {
    border: 1px solid #e0e0e0;
    border-top: 4px solid #336799;
    padding: 30px;
    background: #fff;
}

.package-card h2 {
    color: #338ad3;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    border-bottom: none;
    padding-bottom: 0;
    text-align: left;
}

.package-card .price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #336799;
    margin-bottom: 1rem;
}

.package-card .price-note {
    font-size: 0.875rem;
    color: #666;
    font-weight: 400;
}

.package-card ul {
    list-style: none;
    padding: 0;
}

.package-card li {
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
}

.package-card li:last-child {
    border-bottom: none;
}

.package-card li::before {
    content: "\2713";
    color: #336799;
    font-weight: 700;
    margin-right: 8px;
}

/* Additional fees / smaller package info */
.package-extras {
    margin-top: 40px;
}

.package-extras h2 {
    text-align: left;
}

/* ==========================================================================
   Gallery / Photos & Videos
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 3px;
    transition: transform 0.2s;
}

.gallery-grid img:hover {
    transform: scale(1.02);
}

.shorts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 20px 0 30px;
}

.shorts-embed {
    max-width: 100%;
    margin: 0;
}

.shorts-embed iframe {
    width: 100%;
    aspect-ratio: 9 / 16;
    border: 0;
    border-radius: 8px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin: 20px 0 30px;
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 3px;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==========================================================================
   Music Mixes
   ========================================================================== */
.mix-section {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
    margin: 16px 0 30px;
}

.mix-embed iframe {
    width: 100%;
    height: 120px;
    border: 0;
    border-radius: 3px;
    display: block;
}

/* ==========================================================================
   Reviews
   ========================================================================== */
.review-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.review-link-card {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    text-align: center;
    border: 1px solid #e0e0e0;
    border-top: 4px solid #336799;
    background: #fff;
    transition: transform 0.2s;
}

.review-link-card:hover {
    transform: translateY(-3px);
}

.review-link-card h3 {
    color: #338ad3;
    margin-bottom: 0.75rem;
}

/* ==========================================================================
   Contact Form
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
    margin-top: 16px;
    color: #333c47;
    font-size: 0.9rem;
}

.contact-form label:first-child {
    margin-top: 0;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #338ad3;
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form .btn {
    margin-top: 20px;
}

.contact-info-sidebar h3 {
    color: #338ad3;
    margin-bottom: 1rem;
}

.contact-info-sidebar p {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.contact-info-sidebar a {
    font-weight: 600;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: #333c47;
    color: #ccc;
    padding: 40px 0;
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.footer-social a {
    color: #aaa;
    transition: color 0.2s;
}

.footer-social a:hover {
    color: #fff;
}

.footer-contact {
    margin-bottom: 10px;
}

.footer-contact a {
    color: #ccc;
}

.footer-contact a:hover {
    color: #fff;
}

.footer-copy {
    font-size: 0.85rem;
    color: #888;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-video {
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .shorts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .mix-section {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .packages {
        grid-template-columns: 1fr;
    }
}
