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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:#0d0d0d;
  color:#fff;
  line-height:1.6;
}

img{
  width:100%;
  display:block;
}

a{
  text-decoration:none;
  color:white;
}

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

.section{
  padding:100px 0;
}

.section-title{
  text-align:center;
  font-size:40px;
  margin-bottom:50px;
}

/* HEADER */

.header{
  height:100vh;
  background:
  linear-gradient(rgba(0,0,0,0.6),
  rgba(0,0,0,0.7)),
  url('https://images.unsplash.com/photo-1516280440614-37939bbacd81');
  background-size:cover;
  background-position:center;
  display:flex;
  flex-direction:column;
}

/* NAVBAR */

.navbar{
  width:90%;
  max-width:1200px;
  margin:auto;
  padding:25px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  font-size:28px;
  font-weight:700;
  letter-spacing:2px;
}

.nav-links{
  display:flex;
  list-style:none;
  gap:30px;
}

.nav-links a{
  transition:0.3s;
}

.nav-links a:hover{
  color:#d4af37;
}

/* HAMBURGER */

.hamburger{
  display:none;
  flex-direction:column;
  cursor:pointer;
}

.hamburger span{
  width:28px;
  height:3px;
  background:white;
  margin:4px 0;
  border-radius:5px;
}

/* HERO */

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

.hero-content h1{
  font-size:65px;
  max-width:900px;
}

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

.btn{
  display:inline-block;
  margin-top:30px;
  padding:14px 32px;
  background:#d4af37;
  color:black;
  font-weight:600;
  border-radius:40px;
  transition:0.3s;
}

.btn:hover{
  transform:translateY(-3px);
  background:white;
}

/* ABOUT */

.about-container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.about-image img{
  border-radius:20px;
}

.about-text h2{
  font-size:42px;
  margin-bottom:20px;
}

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

.stat-box{
  background:#1b1b1b;
  padding:20px;
  border-radius:15px;
  flex:1;
  text-align:center;
}

.stat-box h3{
  color:#d4af37;
  font-size:32px;
}

/* SHOWREEL */

.video-wrapper{
  position:relative;
  width:100%;
  padding-bottom:56.25%;
  border-radius:20px;
  overflow:hidden;
}

.video-wrapper iframe{
  position:absolute;
  width:100%;
  height:100%;
  border:none;
}

/* GALLERY */

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

.gallery-grid img{
  border-radius:20px;
  height:350px;
  object-fit:cover;
  transition:0.4s;
}

.gallery-grid img:hover{
  transform:scale(1.04);
}

/* RESUME */

.resume-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.resume-card{
  background:#1a1a1a;
  padding:30px;
  border-radius:20px;
  transition:0.3s;
}

.resume-card:hover{
  transform:translateY(-8px);
}

.resume-card h3{
  margin-bottom:10px;
}

.resume-card span{
  color:#d4af37;
  display:block;
  margin-bottom:15px;
}

/* CONTACT */

.contact-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
}

.contact-info h3{
  margin-bottom:20px;
  font-size:28px;
}

.socials{
  margin-top:20px;
  display:flex;
  flex-wrap:wrap;
  gap:15px;
}

.socials a{
  padding:10px 18px;
  border:1px solid #d4af37;
  border-radius:30px;
  transition:0.3s;
}

.socials a:hover{
  background:#d4af37;
  color:black;
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:16px;
  background:#1a1a1a;
  border:none;
  border-radius:12px;
  color:white;
  font-size:16px;
}

.contact-form button{
  border:none;
  cursor:pointer;
}

/* FOOTER */

.footer{
  text-align:center;
  padding:25px;
  border-top:1px solid #222;
}

/* RESPONSIVE */

@media(max-width:992px){

  .about-container,
  .contact-wrapper,
  .resume-grid,
  .gallery-grid{
    grid-template-columns:1fr;
  }

  .hero-content h1{
    font-size:48px;
  }

}

@media(max-width:768px){

  .nav-links{
    position:absolute;
    top:90px;
    right:-100%;
    width:250px;
    height:calc(100vh - 90px);
    background:#111;
    flex-direction:column;
    align-items:center;
    padding-top:50px;
    transition:0.4s;
  }

  .nav-links.active{
    right:0;
  }

  .hamburger{
    display:flex;
  }

  .hero-content h1{
    font-size:38px;
  }

  .section-title{
    font-size:32px;
  }

  .stats{
    flex-direction:column;
  }

}