/* ==================================
   THE COLOURMIND - ABOUT PAGES
================================== */

:root{
    --bg:#16191d;
    --card:#1c1f24;
    --text:#ffffff;
    --muted:#c7c7c7;
    --blue:#39c7ff;
    --gold:#ffd54a;
    --orange:#ff8c2b;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat',sans-serif;
    background:var(--bg);
    color:var(--text);
    overflow-x:hidden;
}

body::before{
    content:'';
    position:fixed;
    inset:0;
    z-index:-1;

    background:
        radial-gradient(circle at 10% 10%, rgba(255,140,43,.12), transparent 30%),
        radial-gradient(circle at 90% 5%, rgba(57,199,255,.12), transparent 30%),
        radial-gradient(circle at 50% 100%, rgba(255,140,43,.06), transparent 40%);
}






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

.bio-image{

    float:left !important;

    clear:left !important;

    display:block !important;

    width:140px !important;

    height:140px !important;
}

.author-photo{

    float:left;

    margin:
        0 25px 15px 0;
}

.author-photo img{

    width:140px;

    height:140px;

    object-fit:cover;

    border-radius:12px;

    box-shadow:
        0 5px 15px rgba(0,0,0,.25);
}



.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

a{
    text-decoration:none;
}

/* ==========================
   NAVBAR
========================== */

.navbar{
    position:sticky;
    top:0;
    z-index:9999;

    background:rgba(25,25,25,.95);

    backdrop-filter:blur(15px);

    border-bottom:1px solid rgba(255,255,255,.08);

    box-shadow:
        0 4px 20px rgba(0,0,0,.35);
}

.nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:15px 0;
}

.nav-logo img{
    height:60px;
    width:auto;
}

.nav-links{
    display:flex;
    gap:25px;
    list-style:none;
}

.nav-links a{
    color:#ffffff;
    font-weight:700;
    letter-spacing:.5px;
    transition:.3s;
}

.nav-links a:hover{
    color:var(--gold);

    text-shadow:
        0 0 10px rgba(255,213,74,.5);
}

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

.hero{
    padding:80px 0 40px;
    text-align:center;
}

.hero-logo{
    max-width:700px;
    margin:auto;
}

.hero-logo img{
    width:100%;
    height:auto;
}

.eyebrow{
    color:var(--blue);
    text-transform:uppercase;
    letter-spacing:3px;
    font-weight:700;
    margin-top:30px;
}

.hero h1{
    font-size:4rem;
    margin-top:15px;
    margin-bottom:20px;
}

.hero p{
    max-width:850px;
    margin:auto;
    color:var(--muted);
    line-height:1.9;
    font-size:1.1rem;
}

/* ==========================
   CONTENT
========================== */

.content-section{
    padding:60px 0;
}

.content-card{
    background:var(--card);

    border:1px solid #2a2a2a;

    border-radius:20px;

    padding:50px;

    box-shadow:
        0 10px 40px rgba(0,0,0,.25);
}

.content-card h2{
    font-size:2rem;
    margin-bottom:20px;
}

.content-card p{
    color:var(--muted);
    line-height:2;
    margin-bottom:20px;
}

.quote-box{
    background:#111;

    border-left:4px solid var(--gold);

    padding:30px;

    margin:40px 0;

    border-radius:12px;
}

.quote-box h3{
    margin-bottom:15px;
    color:var(--gold);
}

.two-column{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;

    margin-top:40px;
}

.info-box{
    background:#111;

    border-radius:12px;

    padding:30px;

    border:1px solid #222;
}

.info-box h3{
    color:var(--blue);
    margin-bottom:15px;
}

.info-box p{
    margin:0;
}

/* ==========================
   CTA
========================== */

.cta{
    text-align:center;
    padding:70px 0;
}

.btn{
    display:inline-block;

    padding:15px 30px;

    border-radius:8px;

    margin:8px;

    font-weight:700;

    transition:.3s;
}

.btn:hover{
    transform:translateY(-3px);
}

.btn-primary{
    background:var(--blue);
    color:#000;
}

.btn-secondary{
    border:1px solid var(--blue);
    color:var(--blue);
}

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

footer{
    text-align:center;

    padding:50px;

    color:#888;

    border-top:1px solid #222;
}

footer a{
    color:var(--blue);
}

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

@media(max-width:900px){

    .nav-container{
        flex-direction:column;
        gap:15px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero h1{
        font-size:2.5rem;
    }

    .content-card{
        padding:30px;
    }

    .two-column{
        grid-template-columns:1fr;
    }

}


@media(max-width:768px){

    .artist-card{

        float:none !important;

        width:100% !important;

        margin:0 auto 30px auto !important;

        text-align:center !important;

        display:block !important;
    }

    .artist-card img{

        width:180px !important;

        height:180px !important;

        display:block;

        margin:0 auto;
    }

}

