:root{
    --bg:#14110d;
    --panel:#201b16;
    --panel2:#2a241d;
    --moss:#68795d;
    --sage:#8c9a81;
    --gold:#d7c391;
    --cream:#efe6d1;
    --lav:#a695ba;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Quicksand',sans-serif;
    background:
        radial-gradient(circle at top,#2a241d 0%,#14110d 60%);
    color:var(--cream);
    overflow-x:hidden;
}

/* Floating spores */

.spore{
    position:fixed;
    width:4px;
    height:4px;
    background:rgba(255,255,255,.5);
    border-radius:50%;
    animation:float 12s infinite linear;
}

.spore:nth-child(1){left:10%;animation-delay:0s;}
.spore:nth-child(2){left:25%;animation-delay:2s;}
.spore:nth-child(3){left:40%;animation-delay:4s;}
.spore:nth-child(4){left:60%;animation-delay:1s;}
.spore:nth-child(5){left:75%;animation-delay:5s;}
.spore:nth-child(6){left:90%;animation-delay:3s;}

@keyframes float{
0%{
transform:translateY(110vh);
opacity:0;
}
10%{opacity:1;}
90%{opacity:1;}
100%{
transform:translateY(-10vh);
opacity:0;
}
}

/* NAV */

nav{
    position:sticky;
    top:0;
    z-index:100;
    background:rgba(20,17,13,.85);
    backdrop-filter:blur(8px);
    border-bottom:1px solid rgba(255,255,255,.05);

    display:flex;
    justify-content:center;
    gap:40px;

    padding:18px;
}

nav a{
    color:var(--cream);
    text-decoration:none;
    transition:.3s;
}

nav a:hover{
    color:var(--gold);
}

/* HERO */

.hero{
    min-height:100vh;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:50px;

    padding:80px 5%;
    position:relative;
}

.hero-sign{

    background:rgba(32,27,22,.95);

    border:2px solid rgba(215,195,145,.2);

    padding:50px;

    border-radius:25px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.4);

    transform:rotate(-1deg);

    max-width:550px;
}

.hero-sign h1{
    font-family:'Amatic SC',cursive;
    font-size:6rem;
    color:var(--gold);
}

.hero-sign p{
    font-size:1.2rem;
    margin-top:10px;
}

.buttons{
    margin-top:25px;
}

.btn{
    display:inline-block;
    padding:12px 24px;
    background:var(--moss);
    border-radius:12px;
    color:white;
    text-decoration:none;
    margin-right:10px;
    transition:.3s;
}

.btn:hover{
    transform:translateY(-3px);
}

.mascot{
    width:420px;
    border-radius:25px;
    transform:rotate(2deg);

    box-shadow:
    0 20px 50px rgba(0,0,0,.5);
}

/* PANELS */

.section{
    width:min(1400px,95%);
    margin:auto;
    padding:50px 0;
}

.grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:35px;
}

.card{

    background:var(--panel);

    border:1px solid rgba(255,255,255,.05);

    border-radius:25px;

    padding:30px;

    box-shadow:
    0 15px 35px rgba(0,0,0,.35);

    position:relative;
}

.card:nth-child(odd){
    transform:rotate(-1deg);
}

.card:nth-child(even){
    transform:rotate(1deg);
}

.card h2{
    font-family:'Amatic SC';
    font-size:3rem;
    color:var(--gold);
    margin-bottom:15px;
}

.polaroid{

    background:white;

    padding:12px;

    width:220px;

    color:black;

    transform:rotate(-3deg);

    margin-bottom:20px;
}

.polaroid img{
    width:100%;
}

.polaroid p{
    text-align:center;
    margin-top:8px;
}

/* VIDEO SECTION */

.video-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.video-card{

    background:var(--panel);

    border-radius:20px;

    overflow:hidden;

    transform:rotate(-1deg);

    box-shadow:
    0 10px 25px rgba(0,0,0,.4);
}

.video-card:nth-child(even){
    transform:rotate(2deg);
}

.video-card img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.video-card h3{
    padding:18px;
}

/* SCHEDULE */

.schedule{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:20px;

}

.day{
background:var(--panel2);
padding:20px;
border-radius:20px;
text-align:center;
}

.day h3{
color:var(--gold);
margin-bottom:10px;
}

/* FOOTER */

footer{

margin-top:80px;

padding:50px;

text-align:center;

background:rgba(0,0,0,.25);

border-top:1px solid rgba(255,255,255,.05);
}

footer h2{
font-family:'Amatic SC';
font-size:3rem;
color:var(--gold);
margin-bottom:10px;
}

/* MOBILE */

@media(max-width:900px){

.hero{
flex-direction:column;
text-align:center;
}

.hero-sign h1{
font-size:4rem;
}

.grid{
grid-template-columns:1fr;
}

.mascot{
width:100%;
max-width:400px;
}

}