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

body{
  background:#f5f0ea;
  color:#1b1b1b;
  font-family:'Inter', sans-serif;
  line-height:1.6;
}

h1,h2,h3{
  font-family:'Cormorant Garamond', serif;
}

.hero{
  min-height:100vh;
  background:
  linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
  url('https://images.unsplash.com/photo-1516734212186-a967f81ad0d7?q=80&w=1600&auto=format&fit=crop');
  background-size:cover;
  background-position:center;
  display:flex;
  flex-direction:column;
}

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 60px;
  background:rgba(0,0,0,.2);
  backdrop-filter:blur(10px);
}

.logo{
  width:160px;
}

.navbar ul{
  display:flex;
  gap:30px;
  list-style:none;
}

.navbar a{
  color:white;
  text-decoration:none;
  font-weight:500;
}

.hero-content{
  flex:1;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:white;
  padding:20px;
}

.hero-content h1{
  font-size:5rem;
  max-width:900px;
  line-height:1.1;
}

.hero-content p{
  margin-top:20px;
  max-width:700px;
  font-size:1.2rem;
}

.buttons{
  margin-top:30px;
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.btn{
  padding:14px 28px;
  border-radius:40px;
  text-decoration:none;
  transition:.3s;
  font-weight:600;
}

.primary{
  background:#d97d48;
  color:white;
}

.secondary{
  border:1px solid white;
  color:white;
}

.btn:hover{
  transform:translateY(-2px);
}

section{
  padding:90px 20px;
}

.container{
  max-width:1200px;
  margin:auto;
}

.about{
  text-align:center;
}

.about h2{
  font-size:3rem;
  margin-bottom:20px;
}

.about p{
  max-width:900px;
  margin:15px auto;
  font-size:1.1rem;
}

.services{
  background:white;
}

.services h2{
  text-align:center;
  font-size:3rem;
  margin-bottom:50px;
}

.cards{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

.card{
  background:#f8f4ef;
  padding:30px;
  border-radius:25px;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.card h3{
  margin-bottom:10px;
  font-size:2rem;
}

.series{
  background:#0c1320;
  color:white;
}

.series h2{
  font-size:3rem;
  text-align:center;
}

.subtitle{
  text-align:center;
  margin:20px auto 50px;
  max-width:800px;
}

.episode-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
  gap:40px;
}

.episode{
  background:#172033;
  border-radius:20px;
  overflow:hidden;
}

.episode iframe{
  width:100%;
  height:250px;
  border:none;
}

.episode h3{
  padding:20px 20px 10px;
  font-size:2rem;
}

.episode p{
  padding:0 20px 30px;
}

.bioia{
  position:relative;
  background:
  linear-gradient(rgba(4,18,32,.8),rgba(4,18,32,.8)),
  url('https://images.unsplash.com/photo-1516117172878-fd2c41f4a759?q=80&w=1600&auto=format&fit=crop');
  background-size:cover;
  background-position:center;
  color:white;
  text-align:center;
}

.bioia-content{
  position:relative;
  z-index:2;
  max-width:900px;
  margin:auto;
}

.bioia h2{
  font-size:4rem;
  margin-bottom:20px;
}

.bioia p{
  margin:15px auto;
  font-size:1.1rem;
}

.gallery h2{
  text-align:center;
  font-size:3rem;
  margin-bottom:40px;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:20px;
}

.gallery-grid img{
  width:100%;
  height:350px;
  object-fit:cover;
  border-radius:20px;
}

.contact{
  background:#172033;
  color:white;
  text-align:center;
}

.contact h2{
  font-size:3rem;
  margin-bottom:20px;
}

footer{
  background:#0a0a0a;
  color:white;
  text-align:center;
  padding:25px;
}

@media(max-width:768px){

  .navbar{
    flex-direction:column;
    gap:20px;
    padding:20px;
  }

  .navbar ul{
    flex-wrap:wrap;
    justify-content:center;
  }

  .hero-content h1{
    font-size:3rem;
  }

  .bioia h2{
    font-size:2.7rem;
  }

}
