/*==========================
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%;

padding:20px 60px;

display:flex;

justify-content:space-between;

align-items:center;

z-index:9999;

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

backdrop-filter:blur(18px);

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

transition:.4s;

}

.logo{

display:flex;

flex-direction:column;

line-height:1;

}

.penedo{

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

font-size:42px;

letter-spacing:2px;

color:var(--yellow);

}

.remember{

font-size:18px;

font-weight:700;

letter-spacing:3px;

color:var(--pink);

text-transform:uppercase;

}

.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{

height:100vh;

background:url("../img/penedo.jpg");

background-size:cover;

background-position:center;

position:relative;

display:flex;

align-items:center;

justify-content:center;

overflow:hidden;

}

.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:5;

text-align:center;

width:90%;

max-width:1000px;

}

.festival-logo h2{

font-family:'Anton';

font-size:100px;

letter-spacing:4px;

color:var(--yellow);

text-shadow:

0 0 20px rgba(255,210,60,.6);

}

.festival-logo h1{

font-family:'Anton';

font-size:72px;

font-weight:400;

color:white;

margin-top:-10px;

letter-spacing:2px;

}

.fecha{

margin-top:35px;

font-size:34px;

font-weight:800;

color:var(--pink);

letter-spacing:8px;

}

.lugar{

margin-top:30px;

font-size:24px;

line-height:40px;

}

.btn{

margin-top:55px;

display:inline-block;

padding:18px 45px;

background:linear-gradient(90deg,var(--pink),#ff5ba8);

color:white;

border-radius:50px;

font-weight:700;

text-decoration:none;

transition:.35s;

box-shadow:

0 0 30px rgba(255,47,143,.45);

}

.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;

}

.circle{

position:absolute;
border-radius:50%;
filter:blur(4px);

}

.circle1{

width:450px;
height:450px;

background:#ff2f8f55;

top:-150px;
right:-120px;

}

.circle2{

width:350px;
height:350px;

background:#00d9ff40;

bottom:-120px;
left:-120px;

}

.triangle{

position:absolute;

width:0;
height:0;

}

.triangle1{

border-left:80px solid transparent;
border-right:80px solid transparent;
border-bottom:140px solid rgba(255,210,60,.20);

top:130px;
left:120px;

transform:rotate(-18deg);

}

.triangle2{

border-left:70px solid transparent;
border-right:70px solid transparent;
border-bottom:120px solid rgba(255,47,143,.18);

bottom:180px;
right:180px;

transform:rotate(28deg);

}

.line{

position:absolute;

height:4px;

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

}

.line1{

width:260px;

top:170px;
right:250px;

transform:rotate(35deg);

}

.line2{

width:220px;

bottom:150px;
left:200px;

transform:rotate(-28deg);

}

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

#countdown{

display:flex;

justify-content:center;

gap:25px;

margin:45px 0;

}

#countdown div{

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

backdrop-filter:blur(10px);

padding:18px 25px;

border-radius:18px;

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

min-width:110px;

}

#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;

}