/* ===================================================
   AI EXPRESSIONS V4
   Main Stylesheet
   style.css
=================================================== */

/* ---------- ROOT VARIABLES ---------- */

:root{

    --gold:#f5c96a;
    --gold-light:#ffe4a3;

    --background:#050608;
    --glass:rgba(20,22,28,.18);

    --border:rgba(255,255,255,.15);

    --text:#ffffff;
    --muted:#c8c8c8;

    --shadow:0 15px 40px rgba(0,0,0,.40);

    --radius:18px;

    --transition:.35s ease;

    --content-width:1550px;

}

/* ---------- RESET ---------- */

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

/* ---------- BODY ---------- */

body{

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

    color:var(--text);

  background:
linear-gradient(
    180deg,
    #232833 0%,
    #1b2028 20%,
    #131820 50%,
    #090b0f 100%
);
    line-height:1.6;

    overflow-x:hidden;

}
/* ---------- LINKS ---------- */

a{

    color:var(--gold);

    text-decoration:none;

}

a:hover{

    color:var(--gold-light);

}

/* ---------- HERO ---------- */

.hero{

    position:relative;

    height:650px;

    overflow:hidden;

}

.hero img{

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center center;

}

.overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    background:rgba(0,0,0,.28);

}

.overlay h1{

    font-size:5rem;

    color:var(--gold);

    letter-spacing:3px;

    text-shadow:0 4px 20px black;

}

.overlay p{

    margin-top:18px;

    font-size:1.35rem;

    color:white;

}

/* ---------- SEASON BUTTONS ---------- */

.season-buttons{

    position:absolute;

    top:25px;

    right:25px;

    display:flex;

    gap:10px;

    z-index:50;

}

.season-buttons button{

    width:46px;

    height:46px;

    border-radius:50%;

    border:1px solid rgba(255,255,255,.25);

    background:rgba(0,0,0,.45);

    color:white;

    cursor:pointer;

    font-size:20px;

}

/* ---------- NAVIGATION ---------- */

nav{

    background:rgba(10,10,12,.85);

    display:flex;

    justify-content:center;

    gap:35px;

    padding:18px;

}

nav a{

    font-weight:bold;

    letter-spacing:1px;

}

/* ---------- MAIN ---------- */

main{

    max-width:var(--content-width);

    margin:auto;

    padding:50px 25px;

}

/* ---------- GLASS PANELS ---------- */

.panel{

    background:var(--glass);

    backdrop-filter:blur(14px);

    border:1px solid var(--border);

    border-radius:var(--radius);

    padding:25px;

    margin-bottom:25px;

    box-shadow:var(--shadow);

}

/* ---------- HEADINGS ---------- */

.panel h2{

    color:var(--gold);

    margin-bottom:20px;

    font-size:2rem;

}

/* ---------- GRID ---------- */

.grid{

    display:grid;

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

    gap:25px;

}

/* ---------- CARDS ---------- */

.card{

    background:rgba(255,255,255,.05);

    border-radius:16px;

    overflow:hidden;

    box-shadow:var(--shadow);

}

.card img{

    width:100%;

    height:320px;

    object-fit:cover;

}

.card-content{

    padding:18px;

}

.card h3{

    color:var(--gold);

    margin-bottom:10px;

}

/* ---------- FEATURED STORY ---------- */

.story-panel{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:25px;

    align-items:center;

}

.story-panel img{
    width:100%;
    max-width:460px;
    height:auto;
    display:block;
    margin:auto;
    border-radius:16px;
}


/* ---------- BUTTON ---------- */

.button{

    display:inline-block;

    padding:12px 24px;

    margin-top:20px;

    border-radius:30px;

    border:1px solid var(--gold);

    color:var(--gold);

    font-weight:bold;

}

/* ---------- FOOTER ---------- */

footer{
    text-align:center;
    padding:30px 20px;
    color:#888;
}
/* ---------- RESPONSIVE ---------- */

@media(max-width:900px){

.hero{

    height:420px;

}

.overlay h1{

    font-size:3rem;

}

.story-panel{

    grid-template-columns:1fr;

}

nav{

    flex-wrap:wrap;

    gap:15px;

}

}