@font-face {
  font-family: 'bhai';
  src: url(../Poppins-Bold.ttf); /* path fix kiya */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
  width: 100%;
  background-color: #d5ff40;
  overflow-x: hidden; /* horizontal scroll fix */
}

/* MOBILE FIRST - Navbar */
.navbar {
  padding: 20px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.navbar h2 {
  font-size: clamp(24px, 8vw, 36px);
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: clamp(14px, 5vw, 20px);
  color: #000;
  text-decoration: none;
  font-weight: 900;
}

/* Hero Section Mobile */
.hero-section {
  padding: 40px 5vw;
}

.hero-text1, .hero-text2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  margin-bottom: 40px;
}

.hero-text1 h1, .hero-text2 h1 {
  font-size: clamp(80px, 25vw, 150px);
  font-weight: 900;
  line-height: 1.1;
}

.video {
  height: clamp(80px, 25vw, 120px);
  width: clamp(200px, 60vw, 400px);
  background-color: black;
  border-radius: 50px;
  background-image: url(chads/lit.jpg);
  background-size: cover;
  background-position: center;
}

.hero-text2 p {
  font-size: clamp(16px, 4vw, 24px);
  max-width: 90vw;
}

/* TABLET */
@media (min-width: 768px) {
  .navbar {
    padding: 30px 8vw;
  }
  
  .nav-links {
    gap: 40px;
  }
  
  .hero-section {
    padding: 60px 8vw;
  }
  
  .hero-text1 {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    text-align: left;
  }
  
  .hero-text1 h1 {
    align-self: flex-start;
  }
  
  .hero-text2 {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

/* DESKTOP */
@media (min-width: 1024px) {
  body {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .navbar {
    padding: 60px 100px;
  }
  
  .nav-links {
    gap: 140px;
  }
  
  .hero-section {
    padding: 60px 100px;
  }
  
  .hero-text1 h1, .hero-text2 h1 {
    line-height: 0.9;
  }
  
  .video {
    margin-top: 40px;
  }
}