/* ==========================================================================
   Liam Grist — Maui Wedding DJ
   Neutral / coral palette
   ========================================================================== */

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

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

body {
    font-family: 'Open Sans', 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #444444;
    line-height: 1.75;
    background: #ffffff;
}

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

a:hover {
    color: #a85f4d;
}

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

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Open+Sans:wght@400;600&display=swap');

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

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

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

.site-logo img {
    height: 52px;
    width: auto;
    display: block;
}

.site-logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #3d3535;
    letter-spacing: 0.02em;
}

.site-logo-text:hover {
    color: #c27560;
}

/* Desktop nav hidden until wider breakpoint */
.nav-menu {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    border-bottom: 1px solid #ede6e2;
    box-shadow: 0 6px 16px rgba(61, 53, 53, 0.08);
}

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

.nav-link {
    display: block;
    padding: 0 24px;
    line-height: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #3d3535;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: color 0.2s;
    border-bottom: 1px solid #f5efeb;
}

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

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

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

.nav-toggle-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #3d3535;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

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

.nav-toggle-bars span {
    display: block;
    width: 24px;
    height: 2px;
    background: #3d3535;
    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: #3a3030;
    padding: 70px 0;
}

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

.hero-text {
    color: #fff;
}

.hero-title {
    font-family: 'Lato', sans-serif;
    font-size: 2.75rem;
    font-weight: 300;
    margin-bottom: 0.75rem;
    color: #ffffff;
    line-height: 1.2;
}

.hero-title strong {
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #e8d8d2;
    line-height: 1.6;
}

.hero-video {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

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

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

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 13px 32px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.1s;
}

.btn-primary {
    background: #c27560;
    color: #ffffff;
}

.btn-primary:hover {
    background: #a85f4d;
    color: #ffffff;
    transform: translateY(-1px);
}

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

.btn-outline:hover {
    background: #c27560;
    color: #ffffff;
}

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

.btn-outline-light:hover {
    background: #f5efeb;
    color: #3a3030;
}

/* ==========================================================================
   Page Header (interior pages)
   ========================================================================== */
.page-header {
    background: #faf7f5;
    padding: 44px 0;
    border-bottom: 1px solid #ede6e2;
}

.page-header h1 {
    font-family: 'Lato', sans-serif;
    font-size: 2rem;
    font-weight: 300;
    color: #c27560;
    line-height: 1.2;
}

.page-header p {
    margin-top: 0.5rem;
    color: #777;
    font-size: 1rem;
}

/* ==========================================================================
   Page Content
   ========================================================================== */
.page-content {
    padding: 56px 0;
}

.page-content h2 {
    font-family: 'Lato', sans-serif;
    color: #c27560;
    font-size: 1.5rem;
    font-weight: 400;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #ede6e2;
}

.page-content h2:first-child {
    margin-top: 0;
}

.page-content h3 {
    color: #3d3535;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.4rem;
}

.page-content h4 {
    color: #555;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 1.25rem;
    margin-bottom: 0.4rem;
}

.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;
}

.page-content strong {
    color: #3d3535;
}

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

.home-section.alt-bg {
    background: #faf7f5;
}

.home-section h2 {
    font-family: 'Lato', sans-serif;
    color: #c27560;
    font-size: 1.75rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 0.5rem;
}

.home-section .section-sub {
    text-align: center;
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.home-intro {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.05rem;
    color: #555;
}

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

/* Info box — left-border callout like original Divi style */
.info-box {
    border-left: 4px solid #c27560;
    padding: 20px 26px;
    margin: 28px 0;
    background: #fdf9f7;
    text-align: left;
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.info-box strong {
    color: #3d3535;
}

/* CTA strip */
.home-cta {
    text-align: center;
    margin-top: 2rem;
}

/* ==========================================================================
   Location grid
   ========================================================================== */
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 1.5rem;
}

.location-item {
    padding: 14px 18px;
    background: #fff;
    border: 1px solid #ede6e2;
    border-left: 3px solid #c27560;
    font-size: 0.95rem;
    color: #3d3535;
    font-weight: 600;
}

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

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

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

.package-card ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.package-card li {
    padding: 5px 0;
    border-bottom: 1px solid #f5efeb;
    font-size: 0.9rem;
    color: #555;
}

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

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

/* ==========================================================================
   Video Grid (Photos & Videos page)
   ========================================================================== */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin: 28px 0;
}

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

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

/* ==========================================================================
   Music Mixes (Mixcloud embeds)
   ========================================================================== */
.mix-section {
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid #ede6e2;
}

.mix-section:last-child {
    border-bottom: none;
}

.mix-section h3 {
    color: #3d3535;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.mix-embed {
    margin-bottom: 12px;
}

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

/* ==========================================================================
   Blog
   ========================================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 28px;
}

.blog-card {
    background: #fff;
    border: 1px solid #ede6e2;
    border-radius: 3px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(61, 53, 53, 0.1);
}

.blog-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.blog-card-image-placeholder {
    width: 100%;
    height: 220px;
    background: #f5efeb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c27560;
    font-size: 2rem;
}

.blog-card-body {
    padding: 22px 24px;
}

.blog-card-meta {
    font-size: 0.8rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.blog-card-meta .tag {
    display: inline-block;
    background: #f5efeb;
    color: #c27560;
    padding: 2px 8px;
    border-radius: 2px;
    margin-right: 6px;
    font-weight: 600;
}

.blog-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #3d3535;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.blog-card-title a {
    color: #3d3535;
}

.blog-card-title a:hover {
    color: #c27560;
}

.blog-card-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.65;
}

/* Single blog post */
.post-header {
    background: #faf7f5;
    padding: 48px 0 36px;
    border-bottom: 1px solid #ede6e2;
}

.post-header h1 {
    font-family: 'Lato', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: #3d3535;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.post-meta {
    font-size: 0.85rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.post-meta .tag {
    display: inline-block;
    background: #f5efeb;
    color: #c27560;
    padding: 2px 10px;
    border-radius: 2px;
    margin-right: 6px;
    font-weight: 600;
    font-size: 0.75rem;
}

.post-featured-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
    margin: 0 auto 2rem;
    border-radius: 3px;
}

.post-content {
    padding: 48px 0;
    max-width: 760px;
    margin: 0 auto;
}

.post-content p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: #555;
}

.post-content h2 {
    color: #c27560;
    font-size: 1.4rem;
    font-weight: 400;
    margin: 2rem 0 0.75rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid #ede6e2;
}

.post-content .instagram-caption {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #444;
}

.post-tags {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #ede6e2;
}

.post-tags a {
    display: inline-block;
    background: #f5efeb;
    color: #c27560;
    padding: 4px 12px;
    border-radius: 2px;
    margin: 3px 4px 3px 0;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.post-tags a:hover {
    background: #c27560;
    color: #fff;
}

/* Blog list page */
.blog-list-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 2rem;
}

.blog-list-header h2 {
    color: #c27560;
    font-size: 1.5rem;
    font-weight: 400;
}

/* ==========================================================================
   Reviews
   ========================================================================== */
.review-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 28px;
}

.review-link-card {
    padding: 28px 24px;
    text-align: center;
    border: 1px solid #ede6e2;
    border-top: 4px solid #c27560;
    background: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
}

.review-link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(61, 53, 53, 0.08);
}

.review-link-card h3 {
    color: #c27560;
    margin-bottom: 0.6rem;
    font-size: 1.05rem;
}

.review-link-card p {
    font-size: 0.9rem;
    color: #777;
}

.review-stars {
    color: #c27560;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.testimonial {
    border-left: 4px solid #c27560;
    padding: 24px 28px;
    margin: 28px 0;
    background: #fdf9f7;
}

.testimonial blockquote {
    font-size: 1rem;
    color: #555;
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-size: 0.875rem;
    font-weight: 600;
    color: #3d3535;
    font-style: normal;
}

.testimonial cite span {
    color: #aaa;
    font-weight: 400;
}

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

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
    margin-top: 18px;
    color: #3d3535;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.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 #d9cfc9;
    border-radius: 2px;
    font-size: 1rem;
    font-family: inherit;
    color: #444;
    background: #fff;
    transition: border-color 0.2s;
}

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

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

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

.contact-info-sidebar h3 {
    color: #c27560;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-info-sidebar p {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: #555;
}

.contact-info-sidebar a {
    font-weight: 600;
    color: #3d3535;
}

.contact-info-sidebar a:hover {
    color: #c27560;
}

.contact-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1.5rem;
}

.contact-social a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border: 1px solid #ede6e2;
    border-radius: 2px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: border-color 0.2s, color 0.2s;
}

.contact-social a:hover {
    border-color: #c27560;
    color: #c27560;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: #3a3030;
    color: #c8b8b4;
    padding: 48px 0 32px;
    text-align: center;
}

.footer-logo {
    margin: 0 auto 20px;
}

.footer-logo img {
    height: 44px;
    width: auto;
    margin: 0 auto;
    opacity: 0.85;
    filter: brightness(0) invert(1);
}

.footer-social {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 24px;
}

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

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

.footer-contact {
    margin-bottom: 10px;
    font-size: 1rem;
}

.footer-contact a {
    color: #c8b8b4;
    font-weight: 600;
}

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

.footer-contact .sep {
    margin: 0 12px;
    color: #6a5050;
}

.footer-copy {
    font-size: 0.8rem;
    color: #7a6060;
    margin-top: 8px;
}

/* ==========================================================================
   Utility
   ========================================================================== */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

.divider {
    border: none;
    border-top: 1px solid #ede6e2;
    margin: 2.5rem 0;
}

/* Phone CTA strip */
.phone-strip {
    background: #c27560;
    color: #fff;
    text-align: center;
    padding: 14px 24px;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.phone-strip a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.phone-strip a:hover {
    color: #fde8e2;
}

/* ==========================================================================
   Responsive — tablet and up
   ========================================================================== */
@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 3fr 2fr;
        gap: 60px;
    }

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

    .hero-video {
        max-width: none;
        margin: 0;
    }

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

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

    .contact-grid {
        grid-template-columns: 3fr 2fr;
    }
}

@media (min-width: 1024px) {
    /* Show full nav, hide hamburger */
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        display: flex !important;
        position: static;
        flex-direction: row;
        border: none;
        box-shadow: none;
        background: transparent;
    }

    .nav-link {
        border-bottom: none;
        line-height: 76px;
        padding: 0 14px;
        border-bottom: 3px solid transparent;
        transition: color 0.2s, border-color 0.2s;
    }

    .nav-link:hover,
    .nav-link.active {
        color: #c27560;
        border-bottom-color: #c27560;
    }
}
