/* =====================
   GLOBAL RESET
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #0b0b0b;
  color: #ffffff;
  line-height: 1.6;
}

/* =====================
   COMMON
===================== */
a {
  text-decoration: none;
  color: inherit;
}

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

.btn {
  background: #ffd000;
  color: #000;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
}

.btn-outline {
  border: 1px solid #fff;
  padding: 10px 20px;
  border-radius: 6px;
}

/* =====================
   NAVBAR
===================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 30px;
}

.navbar nav a {
  margin-left: 20px;
  font-weight: 500;
}

/* =====================
   HERO SECTION
===================== */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 30px;
  gap: 40px;
}

.hero-text h1 {
  font-size: 42px;
  line-height: 1.2;
}

.hero-text span {
  color: #ffd000;
}

.hero-text p {
  margin: 15px 0 25px;
  max-width: 480px;
}

.cta {
  display: flex;
  gap: 15px;
}

/* TEAM */
.team {
  display: flex;
  gap: 30px;
}

.member {
  text-align: center;
}

.member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid #ffd000;
}

.member h3 {
  margin-top: 12px;
  font-size: 16px;
}

.member p {
  font-size: 14px;
  opacity: 0.8;
}

/* =====================
   STATS
===================== */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 40px 30px;
  text-align: center;
}

.stats div {
  background: #111;
  padding: 25px;
  border-radius: 10px;
}

.stats h2 {
  color: #ffd000;
  font-size: 32px;
}

/* =====================
   ABOUT
===================== */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 60px 30px;
  align-items: center;
}

.about h2 {
  margin-bottom: 15px;
}

/* =====================
   WORK / PORTFOLIO
===================== */
.work {
  padding: 60px 30px;
}

.work h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #ffd000;
}

/* VIDEO GRID */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* VIDEO CARD */
.video-card {
  position: relative;
  cursor: pointer;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
}

/* Thumbnail & iframe */
.video-card img,
.video-card iframe {
  width: 50%;
  height: 50%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Play Button */
.video-card .play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.video-card .play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #fff;
}

/* =====================
   CONTACT
===================== */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 60px 30px;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: none;
}

.contact textarea {
  resize: none;
  height: 120px;
}

/* =====================
   MOBILE OPTIMIZATION
===================== */
@media (max-width: 768px) {

  /* Navbar */
  .navbar {
    flex-direction: column;
    gap: 10px;
  }

  /* Hero */
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .cta {
    justify-content: center;
    flex-wrap: wrap;
  }

  /* Team */
  .team {
    justify-content: center;
  }

  /* Stats */
  .stats {
    grid-template-columns: 1fr;
  }

  /* About */
  .about {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* Contact */
  .contact {
    grid-template-columns: 1fr;
  }

  /* 🔥 VIDEOS: 2 PER ROW ON MOBILE */
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .video-card .play {
    width: 40px;
    height: 40px;
  }
}
