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

body {
  font-family: Arial, sans-serif;

  /* premium background */
  background: radial-gradient(circle at top, #111827, #020617);
  color: #fff;
}

/* ================= HERO ================= */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh; /* flexible height */
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(2,6,23,0.9));
}

/* content */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 90%;
  max-width: 700px;
  text-align: center;
  z-index: 2;
}

/* 🔥 responsive font scaling */
.hero-content h1 {
  font-size: clamp(32px, 6vw, 60px);
  margin-bottom: 10px;

  background: linear-gradient(90deg, #facc15, #ef4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tagline {
  font-size: clamp(14px, 2.5vw, 22px);
  color: #cbd5f5;
  margin-bottom: 10px;
}

.hero-desc {
  font-size: clamp(13px, 2.5vw, 16px);
  line-height: 1.6;
  color: #e2e8f0;
}

/* ================= MOVIES ================= */

.movies {
  padding: 50px 15px;
}

.movies h2 {
  text-align: center;
  margin-bottom: 20px;
}

.movie-row {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.movie-row::-webkit-scrollbar {
  display: none;
}

.movie-card {
  min-width: 160px;
  flex-shrink: 0;
}

.movie-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}

.movie-card h3 {
  font-size: 14px;
  margin-top: 8px;
}

/* ================= ABOUT ================= */

.about {
  padding: 50px 15px;
}

.about-container {
  display: flex;
  gap: 25px;
  align-items: center;
  max-width: 1100px;
  margin: auto;
}

/* image */
.about-image img {
  width: 280px;
  max-width: 100%;
  border-radius: 12px;
}

/* text */
.about-text {
  flex: 1;
}

.name {
  font-size: clamp(22px, 4vw, 34px);
  background: linear-gradient(90deg, #facc15, #ef4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.role {
  color: #94a3b8;
  margin-bottom: 10px;
}

.about-text p {
  font-size: 14px;
  line-height: 1.6;
  color: #cbd5f5;
  margin-bottom: 10px;
}

.accent {
  color: #f43f5e;
}

.subtle {
  font-size: 12px;
  color: #64748b;
}

/* highlight */
.highlight-box {
  margin: 20px 0;
  padding: 15px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1e293b, #020617);
  text-align: center;
}

/* ================= CONTACT ================= */

.contact {
  padding: 50px 15px;
  text-align: center;
}

.contact form {
  max-width: 400px;
  margin: auto;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  background: #111827;
  border: none;
  color: #fff;
  border-radius: 6px;
}

.contact button {
  width: 100%;
  padding: 10px;
  background: linear-gradient(90deg, #ef4444, #facc15);
  border: none;
  color: #000;
  border-radius: 6px;
}

/* ================= FOOTER ================= */

footer {
  text-align: center;
  padding: 15px;
  font-size: 13px;
  color: #94a3b8;
}

/* ================= MOBILE FIX ================= */

@media (max-width: 768px) {

  .hero {
    min-height: 70vh;
  }

  /* IMPORTANT: fix content positioning */
  .hero-content {
    top: auto;
    bottom: 30px;
    transform: translateX(-50%);
  }

  .about-container {
    flex-direction: column;
    text-align: center;
  }
}


/* ================= VIDEO POPUP ================= */

.video-popup{
  position:fixed;
  inset:0;
  display:none;
  justify-content:center;
  align-items:center;
  padding:24px;
  background:rgba(0,0,0,0.88);
  backdrop-filter:blur(8px);
  z-index:9999;
}

.video-box{
  position:relative;
  width:min(100%, 980px);
  aspect-ratio:16/9;
  border-radius:22px;
  overflow:hidden;
  background:#000;
  box-shadow:0 25px 80px rgba(0,0,0,.55);
  border:1px solid rgba(255,255,255,.08);
}

.video-box iframe{
  width:100%;
  height:100%;
  border:0;
}

.close-btn{
  position:absolute;
  top:14px;
  right:14px;
  width:42px;
  height:42px;
  border-radius:50%;
  display:grid;
  place-items:center;
  cursor:pointer;
  color:#fff;
  font-size:22px;
  font-weight:700;
  background:rgba(0,0,0,.55);
  border:1px solid rgba(255,255,255,.12);
  transition:all .25s ease;
  z-index:2;
}

.close-btn:hover{
  transform:scale(1.08) rotate(90deg);
  background:rgba(255,255,255,.12);
}

/* Better project hover */
.movie-card{
  cursor:pointer;
  transition:transform .35s ease, box-shadow .35s ease;
}

.movie-card:hover{
  transform:translateY(-8px) scale(1.02);
  box-shadow:0 18px 40px rgba(0,0,0,.28);
}

@media (max-width:768px){
  .video-popup{
    padding:14px;
  }

  .video-box{
    border-radius:16px;
  }

  .close-btn{
    width:38px;
    height:38px;
    font-size:20px;
    top:10px;
    right:10px;
  }
}


