/*==========================
PENEDO REMEMBER FEST
==========================*/

:root{

--yellow:#ffd23c;
--pink:#ff2f8f;
--cyan:#00d9ff;
--dark:#070707;
--dark2:#111111;
--white:#ffffff;

--max:1400px;

}

/* RESET */

*{

margin:0;
padding:0;
box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

background:#090909;
font-family:'Inter',sans-serif;
color:white;
overflow-x:hidden;

}

/* Scroll */

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-thumb{

background:var(--pink);

border-radius:20px;

}

::-webkit-scrollbar-track{

background:#111;

}

/* NAVBAR */

.navbar{

position:fixed;

top:0;

left:0;

width:100%;

height:80px;

padding:0 40px;

display:flex;

justify-content:space-between;

align-items:center;

background:rgba(10,10,10,.75);

backdrop-filter:blur(16px);

z-index:9999;

}

.logo{

display:flex;

flex-direction:column;

line-height:1;

}

.penedo{

font-family:'Anton',sans-serif;

font-size:48px;

letter-spacing:2px;

color:var(--yellow);

}

.remember{

font-size:16px;

 font-family:'Kaushan Script';

font-weight:800;

letter-spacing:4px;

text-transform:uppercase;

color:#ff2f8f;

transition:.35s;

}

.navbar ul{

display:flex;

gap:35px;

list-style:none;

}

.navbar a{

text-decoration:none;

color:white;

font-weight:600;

transition:.35s;

position:relative;

}

.navbar a:hover{

color:var(--yellow);

}

.navbar a::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

height:2px;

width:0;

background:var(--pink);

transition:.35s;

}

.navbar a:hover::after{

width:100%;

}
/* HERO */

.hero{

position:relative;

height:100vh;

display:flex;

justify-content:center;

align-items:center;

overflow:hidden;

background:
linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.75)),
url("../img/penedo.jpg");

background-size:cover;

background-position:center;

}

.hero::before{

content:"";

position:absolute;

width:100%;

height:100%;

background:

linear-gradient(180deg,

rgba(0,0,0,.45),

rgba(0,0,0,.75));

}

.hero-content{

position:relative;

z-index:10;

width:min(900px,90%);

margin:auto;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

text-align:center;

gap:18px;

padding-top:80px;

}


.fecha{

margin-top:10px;

font-size:34px;

font-weight:800;

color:var(--pink);

letter-spacing:8px;

}

.lugar{

margin-top:30px;

font-size:24px;

line-height:40px;

}

.btn{

padding:22px 55px;

font-size:20px;

font-weight:700;

border-radius:60px;

background:#ff2f8f;

transition:.35s;

}

.btn:hover{

transform:translateY(-5px);

background:var(--yellow);

color:black;

box-shadow:

0 0 40px rgba(255,210,60,.8);

}

/*=========================
FONDO RETRO
=========================*/

.background-shapes{

position:absolute;
width:100%;
height:100%;
overflow:hidden;

}



/*=========================
COUNTDOWN
=========================*/

#countdown{

display:flex;

gap:18px;

margin:50px 0;

flex-wrap:wrap;

justify-content:center;

}

#countdown div{

width:120px;

height:120px;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

background:rgba(20,20,20,.75);

backdrop-filter:blur(12px);

border-radius:18px;

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

}

#countdown span{

display:block;

font-size:42px;

font-weight:700;

color:var(--yellow);

}

#countdown small{

display:block;

margin-top:8px;

letter-spacing:2px;

font-size:13px;

color:#ddd;

}

/*==========================
FESTIVAL
==========================*/

#festival{

padding:120px 8%;

background:#101010;

}

.section-title{

text-align:center;

margin-bottom:70px;

}

.section-title h2{

font-family:'Anton';

font-size:72px;

color:#ffd23c;

letter-spacing:3px;

}

.section-title p{

margin-top:15px;

font-size:22px;

color:#ddd;

}

.festival-grid{

display:grid;

grid-template-columns:1.2fr 1fr;

gap:60px;

align-items:center;

max-width:1400px;

margin:auto;

}

.festival-image img{

width:100%;

border-radius:24px;

box-shadow:0 25px 60px rgba(0,0,0,.45);

}

.festival-info{

display:grid;

grid-template-columns:1fr 1fr;

gap:25px;

}

.card{

background:#181818;

padding:35px;

border-radius:20px;

border:2px solid rgba(255,255,255,.06);

transition:.35s;

}

.card:hover{

transform:translateY(-8px);

border-color:#ff2f8f;

box-shadow:0 0 35px rgba(255,47,143,.35);

}

.card h3{

font-family:'Anton';

font-size:32px;

color:#ffd23c;

margin-bottom:15px;

}

.card p{

font-size:18px;

line-height:30px;

color:#ddd;

}

.festival-logo{

margin-bottom:40px;
  margin-top:40px;

}

.penedo-title{

    font-family:Anton;

    font-size:clamp(70px,9vw,170px);

    line-height:.9;

    color:#FFD23C;

    text-shadow:0 0 25px rgba(255,210,60,.45);

}

.remember-title{

    font-family:'Kaushan Script';

    font-size:clamp(45px,5vw,90px);

    margin-top:-10px;

    color:#ff2f8f;

}

.hero-glow{

position:absolute;

bottom:-180px;

left:50%;

transform:translateX(-50%);

width:900px;

height:400px;

background:

radial-gradient(circle,

rgba(255,47,143,.35),

transparent 70%);

filter:blur(90px);

pointer-events:none;

}