/* style.css */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Montserrat',sans-serif;
  background:#000;
  color:white;
  overflow-x:hidden;
}

/* NAVBAR */

.navbar{
  position:fixed;
  top:0;
  width:100%;
  padding:20px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  z-index:1000;
  background:rgba(0,0,0,0.35);
  backdrop-filter:blur(10px);
}

.logo img{
  height:55px;
}

nav{
  display:flex;
  gap:35px;
}

nav a{
  color:white;
  text-decoration:none;
  transition:0.3s;
  font-size:14px;
}

nav a:hover{
  color:#ff2d2d;
}

.menu-btn{
  display:none;
  font-size:30px;
  cursor:pointer;
}

.mobile-menu{
  position:fixed;
  top:90px;
  right:-100%;
  width:260px;
  background:#111;
  display:flex;
  flex-direction:column;
  padding:30px;
  gap:20px;
  transition:0.4s;
  z-index:999;
}

.mobile-menu.active{
  right:0;
}

.mobile-menu a{
  color:white;
  text-decoration:none;
}

/* HERO */

.hero{
  position:relative;
  height:100vh;
  overflow:hidden;
}

.hero-slider{
  position:absolute;
  width:100%;
  height:100%;
}

.slide{
  position:absolute;
  width:100%;
  height:100%;
  opacity:0;
  transition:2s ease;
}

.slide.active{
  opacity:1;
}

.slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(25%);
  transform:scale(1.05);
}

.overlay{
  position:absolute;
  width:100%;
  height:100%;
  background:linear-gradient(to bottom,
  rgba(0,0,0,0.2),
  rgba(0,0,0,0.8));
}

.hero-content{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:20px;
}

.hero-tag{
  color:#ff2d2d;
  letter-spacing:4px;
  font-size:14px;
  font-weight:700;
}

.hero h1{
  font-size:140px;
  font-weight:900;
  letter-spacing:10px;
  margin-top:15px;
}

.hero p{
  font-size:30px;
  margin-top:20px;
  font-weight:700;
}

.hero-line{
  width:120px;
  height:3px;
  background:#ff2d2d;
  margin:35px auto;
}

.hero-description{
  max-width:750px;
  line-height:1.9;
  color:#ddd;
}

.hero-buttons{
  margin-top:45px;
  display:flex;
  gap:20px;
}

.btn{
  padding:16px 35px;
  border-radius:50px;
  text-decoration:none;
  transition:0.3s;
  font-weight:700;
}

.primary{
  background:#ff2d2d;
  color:white;
}

.primary:hover{
  transform:translateY(-5px);
}

.secondary{
  border:2px solid white;
  color:white;
}

.secondary:hover{
  background:white;
  color:black;
}

.scroll-indicator{
  position:absolute;
  bottom:30px;
  left:50%;
  transform:translateX(-50%);
  z-index:2;
  font-size:28px;
  animation:bounce 2s infinite;
}

@keyframes bounce{

  0%{
    transform:translate(-50%,0);
  }

  50%{
    transform:translate(-50%,10px);
  }

  100%{
    transform:translate(-50%,0);
  }

}

/* EXPERIENCE */

.experience{
  padding:80px 8%;
  background:#080808;
}

.experience-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.experience-card{
  background:#111;
  padding:45px;
  border-radius:20px;
  border:1px solid #222;
  transition:0.4s;
}

.experience-card:hover{
  transform:translateY(-10px);
  border-color:#ff2d2d;
}

.experience-card h3{
  color:#ff2d2d;
  font-size:28px;
  margin-bottom:20px;
}

.experience-card p{
  color:#bbb;
  line-height:1.8;
}

/* SECTION */

.section{
  padding:120px 8%;
}

.section-title{
  text-align:center;
  margin-bottom:70px;
}

.section-title h2{
  font-size:52px;
}

/* FILOSOFIA */

.filosofia-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.filosofia-text p{
  color:#ccc;
  line-height:1.9;
  margin-bottom:25px;
}

.filosofia-image img{
  width:100%;
  border-radius:25px;
}

/* WHY */

.why{
  padding:120px 8%;
  background:#070707;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.why-card{
  background:#101010;
  padding:45px;
  border-radius:20px;
}

.why-card h3{
  color:#ff2d2d;
  margin-bottom:20px;
}

.why-card p{
  color:#bbb;
  line-height:1.8;
}

/* SERVICES */

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.service-card{
  background:#111;
  padding:45px;
  border-radius:20px;
  transition:0.4s;
}

.service-card:hover{
  transform:translateY(-10px);
}

.service-card h3{
  color:#ff2d2d;
  margin-bottom:20px;
  font-size:28px;
}

.service-card p{
  color:#bbb;
  line-height:1.8;
}

/* STATS */

.stats{
  display:flex;
  justify-content:center;
  gap:100px;
  padding:90px 8%;
  background:#050505;
}

.stat{
  text-align:center;
}

.stat h2{
  font-size:70px;
  color:#ff2d2d;
}

.stat p{
  color:#ccc;
  margin-top:10px;
}

/* ARTISTS */

.artist-full{
  position:relative;
  height:100vh;
  overflow:hidden;
}

.artist-full img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(40%);
  transition:1s;
}

.artist-full:hover img{
  transform:scale(1.08);
  filter:brightness(60%);
}

.artist-overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:20px;
}

.artist-overlay h2{
  font-size:90px;
  font-weight:900;
}

.artist-overlay p{
  margin-top:25px;
  max-width:700px;
  line-height:1.8;
  font-size:20px;
}

/* RELEASE */

.release{
  position:relative;
  height:90vh;
  overflow:hidden;
  display:flex;
  justify-content:center;
  align-items:center;
}

.release-bg{
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(25%);
}

.release-overlay{
  position:absolute;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.5);
}

.release-content{
  position:relative;
  z-index:2;
  text-align:center;
  padding:20px;
}

.release-content span{
  color:#ff2d2d;
  font-weight:700;
}

.release-content h2{
  font-size:90px;
  margin-top:20px;
}

.release-content h3{
  margin-top:10px;
  color:#ccc;
}

.release-content p{
  max-width:700px;
  margin:30px auto;
  line-height:1.8;
  color:#bbb;
}

/* VOD */

.vod-content{
  text-align:center;
  max-width:900px;
  margin:auto;
}

.vod-content img{
  width:200px;
  margin-bottom:40px;
}

.vod-content p{
  line-height:1.9;
  color:#ccc;
}

/* DEMO */

.demo{
  background:#0c0c0c;
}

.demo-text{
  text-align:center;
  color:#bbb;
  margin-bottom:50px;
}

.demo-form{
  max-width:850px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:20px;
}

.demo-form input,
.demo-form textarea{
  background:#151515;
  border:none;
  padding:20px;
  border-radius:12px;
  color:white;
}

.demo-form textarea{
  height:180px;
  resize:none;
}

.demo-form button{
  background:#ff2d2d;
  border:none;
  padding:20px;
  border-radius:50px;
  color:white;
  font-weight:700;
  cursor:pointer;
}

/* FOOTER */

footer{
  padding:80px 8%;
  text-align:center;
}

footer img{
  height:60px;
  margin-bottom:30px;
}

footer p{
  color:#999;
  margin-bottom:30px;
}

.footer-links{
  display:flex;
  justify-content:center;
  gap:30px;
  margin-bottom:30px;
}

.footer-links a{
  color:white;
  text-decoration:none;
}

footer span{
  color:#555;
}

/* RESPONSIVE */

@media(max-width:992px){

  nav{
    display:none;
  }

  .menu-btn{
    display:block;
  }

  .hero h1{
    font-size:70px;
  }

  .experience-grid,
  .filosofia-grid,
  .why-grid,
  .services-grid{
    grid-template-columns:1fr;
  }

  .stats{
    flex-direction:column;
    gap:50px;
  }

  .artist-overlay h2{
    font-size:50px;
  }

  .release-content h2{
    font-size:55px;
  }

}

@media(max-width:600px){

  .hero h1{
    font-size:50px;
  }

  .hero p{
    font-size:22px;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .section-title h2{
    font-size:36px;
  }

  .artist-overlay h2{
    font-size:36px;
  }

}