/* =====================================================
   ML6 COMMUNITY MUSIC GROUP
   MAIN STYLESHEET
   ===================================================== */

* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    margin: 0;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background:
        #101010;

    color: #eeeeee;

    line-height: 1.6;
}


/* =====================================================
   HEADER
   ===================================================== */

.site-header {

    position: sticky;

    top: 0;

    z-index: 1000;

    background:
        rgba(10, 10, 10, 0.96);

    border-bottom:
        1px solid #333;

    backdrop-filter:
        blur(8px);
}


.header-inner {

    width: min(1200px, 94%);

    margin: auto;

    min-height: 64px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.mini-logo {

    color: #d8c08a;

    text-decoration: none;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-weight: bold;

    letter-spacing: 2px;

    white-space: nowrap;
}


.main-nav {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 14px;

    flex-wrap: wrap;
}


.main-nav a {

    color: #ccc;

    text-decoration: none;

    font-size: 0.86rem;

    transition: color 0.2s ease;
}


.main-nav a:hover {

    color: #d8c08a;
}


/* =====================================================
   AGE NOTICE
   ===================================================== */

.age-notice {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 12px;

    padding: 9px 15px;

    background: #181818;

    border-bottom:
        1px solid #333;

    color: #aaa;

    text-align: center;

    font-size: 0.85rem;
}


.age-notice strong {

    color: #d8c08a;

    letter-spacing: 1px;
}


/* =====================================================
   HERO
   ===================================================== */

.hero {

    min-height: 90vh;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 60px 20px;

    background:
        radial-gradient(
            circle at center,
            #282828 0%,
            #151515 45%,
            #090909 100%
        );
}


.hero-content {

    width: min(850px, 94%);
}


.hero-logo {

    width: min(210px, 55vw);

    height: auto;

    margin-bottom: 20px;
}


.eyebrow {

    margin: 0 0 10px;

    color: #d8c08a;

    font-size: 0.78rem;

    font-weight: bold;

    letter-spacing: 3px;
}


.hero h1 {

    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(2.2rem, 7vw, 4.5rem);

    line-height: 1.1;

    color: #f2f2f2;
}


.hero-text {

    max-width: 650px;

    margin: 25px auto;

    color: #bbb;

    font-size: 1.1rem;
}


.age-badge {

    display: inline-block;

    margin: 5px 0 25px;

    padding: 7px 14px;

    border:
        1px solid #8f7746;

    border-radius: 5px;

    color: #d8c08a;

    font-size: 0.78rem;

    font-weight: bold;

    letter-spacing: 2px;
}


.hero-buttons {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 12px;

    flex-wrap: wrap;
}


.button {

    display: inline-block;

    padding: 11px 20px;

    border-radius: 7px;

    text-decoration: none;

    font-weight: bold;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}


.button:hover {

    transform: translateY(-2px);
}


.button-primary {

    background: #d8c08a;

    color: #111;
}


.button-primary:hover {

    background: #edd79d;
}


.button-secondary {

    background: transparent;

    color: #ddd;

    border:
        1px solid #666;
}


.button-secondary:hover {

    border-color: #d8c08a;

    color: #d8c08a;
}


.hero-divider {

    margin-top: 30px;

    color: #8f7746;

    letter-spacing: 10px;
}


/* =====================================================
   GENERAL SECTIONS
   ===================================================== */

.section {

    padding:
        75px 20px;

    background:
        #151515;
}


.section-dark {

    background:
        #0e0e0e;
}


.section-heading {

    width: min(800px, 94%);

    margin:
        0 auto 40px;

    text-align: center;
}


.section-heading h2 {

    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(1.9rem, 5vw, 3rem);

    color: #eee;
}


.section-heading > p:last-child {

    color: #aaa;

    line-height: 1.6;
}


.celtic-divider {

    margin:
        15px 0 20px;

    color: #a58b55;

    letter-spacing: 8px;
}


.content-narrow {

    width: min(750px, 94%);

    margin: auto;
}


.content-narrow p {

    color: #bbb;

    margin:
        0 0 20px;
}


.center {

    text-align: center;
}


.large-text {

    font-size: 1.15rem;

    color: #ddd !important;
}


.highlight {

    padding: 18px;

    border-left:
        3px solid #a58b55;

    background:
        rgba(255,255,255,0.03);
}


/* =====================================================
   INSTRUMENTS
   ===================================================== */

.instrument-columns {

    width: min(950px, 94%);

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}


.instrument-group {

    background: #171717;

    border:
        1px solid #333;

    border-radius: 10px;

    padding: 20px;
}


.instrument-group h3 {

    margin-top: 0;

    color: #d8c08a;

    font-family:
        Georgia,
        "Times New Roman",
        serif;
}


.instrument-group ul {

    margin: 0;

    padding-left: 18px;

    color: #bbb;
}


.instrument-note {

    width: min(750px, 94%);

    margin: 30px auto 0;

    padding: 20px;

    text-align: center;

    border:
        1px solid #333;

    border-radius: 10px;

    color: #aaa;
}


.instrument-note strong {

    color: #d8c08a;
}


/* =====================================================
   FREE LEARNING
   ===================================================== */

.free-learning {

    background:
        radial-gradient(
            circle at center,
            #24211b,
            #101010 65%
        );

    text-align: center;
}


.free-learning-content {

    width: min(800px, 94%);

    margin: auto;
}


.free-learning-content p {

    color: #bbb;
}


.belief-statement {

    margin-top: 30px;

    display: flex;

    justify-content: center;

    gap: 12px;

    flex-wrap: wrap;
}


.belief-statement strong {

    padding: 10px 15px;

    border:
        1px solid #685a3d;

    border-radius: 7px;

    color: #d8c08a;

    background:
        rgba(0,0,0,0.25);
}


/* =====================================================
   LESSONS
   ===================================================== */

.two-column {

    width: min(850px, 94%);

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;
}


.info-card {

    padding: 28px;

    text-align: center;

    background: #171717;

    border:
        1px solid #363636;

    border-radius: 12px;
}


.big-icon {

    font-size: 2.3rem;
}


.info-card h3 {

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    color: #d8c08a;
}


.info-card p {

    color: #aaa;
}


.info-card strong {

    color: #eee;
}


.card-note {

    font-size: 0.9rem;
}


.session-note {

    width: min(800px, 94%);

    margin: 25px auto 0;

    text-align: center;

    color: #aaa;
}


/* =====================================================
   MUSICIAN'S TOOLBOX
   ===================================================== */

.toolbox-grid {

    width: min(900px, 94%);

    margin: 25px auto 0;

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(185px, 1fr));

    gap: 12px;
}


.toolbox-card {

    padding: 17px 13px;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            #232323,
            #101010
        );

    border:
        1px solid #383838;

    border-radius: 10px;

    box-shadow:
        0 5px 15px rgba(0,0,0,0.3);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}


.toolbox-card:hover {

    transform: translateY(-3px);

    border-color: #a58b55;
}


.toolbox-featured {

    border:
        2px solid #8f7746;

    background:
        linear-gradient(
            145deg,
            #24221d,
            #11100e
        );
}


.toolbox-icon {

    font-size: 1.8rem;

    margin-bottom: 6px;
}


.toolbox-card h3 {

    margin: 4px 0 7px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1.08rem;

    line-height: 1.25;

    color: #e3cc95;
}


.toolbox-card p {

    margin:
        0 auto 12px;

    min-height: 42px;

    color: #aaa;

    line-height: 1.35;

    font-size: 0.82rem;
}


.toolbox-card .button {

    display: inline-block;

    padding: 8px 12px;

    font-size: 0.78rem;
}


/* =====================================================
   COMING SOON TOOL
   ===================================================== */

.toolbox-coming-soon {

    opacity: 0.78;
}


.tool-coming {

    display: inline-block;

    padding: 7px 11px;

    border:
        1px solid #66583c;

    border-radius: 6px;

    color: #d8c08a;

    font-size: 0.68rem;

    font-weight: bold;

    letter-spacing: 1px;
}


/* =====================================================
   GALLERY
   ===================================================== */

.empty-gallery {

    width: min(650px, 94%);

    margin: auto;

    padding: 45px 25px;

    text-align: center;

    border:
        1px solid #333;

    border-radius: 12px;

    background: #151515;
}


.empty-gallery span {

    font-size: 3rem;
}


.empty-gallery h3 {

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    color: #d8c08a;
}


.empty-gallery p {

    color: #999;
}


/* =====================================================
   FAQ
   ===================================================== */

.faq-list {

    width: min(800px, 94%);

    margin: auto;
}


.faq-list details {

    margin-bottom: 10px;

    border:
        1px solid #333;

    border-radius: 8px;

    background: #151515;

    overflow: hidden;
}


.faq-list summary {

    padding: 16px;

    cursor: pointer;

    color: #d8c08a;

    font-weight: bold;
}


.faq-list details p {

    margin: 0;

    padding:
        0 16px 16px;

    color: #aaa;
}


/* =====================================================
   JOIN
   ===================================================== */

.join-section {

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            #28231a,
            #101010 70%
        );
}


.join-content {

    width: min(750px, 94%);

    margin: auto;
}


.join-content > p {

    color: #bbb;
}


.email {

    font-size: 1.1rem;
}


.email a {

    color: #d8c08a;

    text-decoration: none;
}


/* =====================================================
   JIMG3 CONNECTION
   ===================================================== */

.jimg3-link {

    padding: 25px 15px;

    text-align: center;

    background: #0a0a0a;

    border-top:
        1px solid #292929;

    border-bottom:
        1px solid #292929;
}


.jimg3-link p {

    margin: 0 0 5px;

    color: #777;
}


.jimg3-link a {

    color: #d8c08a;

    text-decoration: none;

    font-weight: bold;
}


/* =====================================================
   FOOTER
   ===================================================== */

.site-footer {

    background: #080808;

    padding:
        35px 20px 20px;

    color: #888;
}


.footer-inner {

    width: min(1100px, 94%);

    margin: auto;

    display: flex;

    justify-content: space-between;

    gap: 30px;
}


.footer-inner h3 {

    margin-top: 0;

    color: #d8c08a;

    font-family:
        Georgia,
        "Times New Roman",
        serif;
}


.footer-links {

    display: flex;

    flex-wrap: wrap;

    justify-content: flex-end;

    gap: 10px 18px;

    max-width: 500px;
}


.footer-links a,
.footer-bottom a {

    color: #999;

    text-decoration: none;
}


.footer-links a:hover,
.footer-bottom a:hover {

    color: #d8c08a;
}


.footer-bottom {

    width: min(1100px, 94%);

    margin:
        25px auto 0;

    padding-top: 18px;

    border-top:
        1px solid #242424;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 18px;

    flex-wrap: wrap;

    text-align: center;

    font-size: 0.82rem;
}


/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 850px) {

    .main-nav {

        justify-content: center;
    }


    .header-inner {

        flex-direction: column;

        padding: 12px 0;
    }


    .instrument-columns {

        grid-template-columns:
            1fr 1fr;
    }


    .footer-inner {

        flex-direction: column;

        text-align: center;
    }


    .footer-links {

        justify-content: center;

        max-width: none;
    }

}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 600px) {

    .age-notice {

        flex-direction: column;

        gap: 2px;
    }


    .main-nav {

        gap: 8px 12px;
    }


    .main-nav a {

        font-size: 0.75rem;
    }


    .hero {

        min-height: 80vh;

        padding:
            45px 15px;
    }


    .section {

        padding:
            55px 15px;
    }


    .instrument-columns {

        grid-template-columns: 1fr;
    }


    .two-column {

        grid-template-columns: 1fr;
    }


    /* Compact toolbox on phones */

    .toolbox-grid {

        width: 94%;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 9px;
    }


    .toolbox-card {

        padding:
            14px 9px;
    }


    .toolbox-icon {

        font-size: 1.6rem;
    }


    .toolbox-card h3 {

        font-size: 0.95rem;
    }


    .toolbox-card p {

        font-size: 0.75rem;

        min-height: 50px;
    }


    .toolbox-card .button {

        padding:
            7px 8px;

        font-size: 0.7rem;
    }


    .footer-bottom {

        flex-direction: column;

        gap: 6px;
    }

}
