@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap");

:root {
  --primary: #121212;
  /* 60% */
  --secondary: #d4af37;
  /* 30% */
  --accent: #e63946;
  /* 10% */
  --soft: #e0e0e0;
  --muted: #bdbdbd;
  --max-width: 1200px;
  --nav-width: 120px;
  --glass: rgba(255, 255, 255, 0.04);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html,
body {
  height: 100%;
  margin: 0;
  font-family: Inter, Poppins, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  background: var(--primary);
  color: var(--soft);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  overflow-x:hidden;
}

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

/* Layout */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px;
}

/* HERO */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: background 0.3s ease;
}
header .logo img {
  height: 50px;
  width: auto;
}

header.scrolled {
  background: rgba(0, 0, 0, 0.85);
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 2rem;
}
nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
nav ul li a:hover {
  color: #e63946;
}

/* MENU TOGGLE ICON */
.menu-toggle {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
}

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  padding-top: 140px; /* accounts for fixed header */
  overflow: hidden;
  background: #000; /* fallback background */
}

/* video/image background container */
.hero__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero__media video,
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.7) 10%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 2;
}
.hero__media video,
.hero__media img {
  position: absolute;
  top: 0;
  left: 0;
}

/* hero content area */
.hero__content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 48px;
  margin-left: 60px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0)
  );
  border-radius: 12px;
  animation: fadeInUp 1.5s ease both;
}

.hero__content h1 {
  font-size: 3rem;
  color: #d4af37;
  margin-bottom: 1rem;
  animation: fadeInDown 1.2s ease;
}

.hero__content p {
  font-size: 1.2rem;
  color: #fff;
  max-width: 600px;
  margin-bottom: 2rem;
  animation: fadeInUp 1.2s ease;
}

.kicker {
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 12px;
  animation: fadeIn 1s ease;
}

h1 {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.02;
  margin: 0 0 12px;
}

p.lead {
  margin: 0 0 20px;
  color: var(--soft);
  opacity: 0.95;
  font-size: 16px;
  max-width: 54ch;
}

/* CTA buttons */
.cta .btn {
  padding: 0.9rem 1.8rem;
  border-radius: 30px;
  margin-right: 1rem;
  cursor: pointer;
  border: 2px solid #d4af37;
  transition: all 0.3s ease;
}
.btn {
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: transform 0.18s var(--ease), box-shadow 0.18s;
  background-color: #d4af37;
  color: #121212;
}

.btn--primary {
  background: linear-gradient(90deg, var(--secondary), #c89f2f);
  color: var(--primary);
}

.btn--ghost {
  background: transparent;
  color: var(--soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary:hover {
  background-color: #bfa22f;
}

.btn--ghost:hover {
  background-color: rgba(212, 175, 55, 0.1);
}

/* sections */
/*section {*/
/*  padding: 72px 24px;*/
/*}*/

.section-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.section-title h2 {
  font-size: 22px;
  margin: 0;
}

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

/* Work cards */
.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.card__body {
  padding: 12px;
}

.card__title {
  font-weight: 700;
  margin: 0 0 6px;
}

.card__meta {
  font-size: 13px;
  color: var(--muted);
}

/* Talent / community */
.row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.profile {
  flex: 1;
  background: var(--glass);
  padding: 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}


/* CONTACT SECTION */
#contact {
  background: #0d0d0d;
  color: #fff;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
}

#contact .container {
  max-width: 700px;
  width: 100%;
}

#contact .section-title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
}

#contact .section-title h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

/* FORM STYLES */
#contactForm {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#contactForm input,
#contactForm textarea {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 1rem;
  color: #fff;
  outline: none;
  transition: border 0.3s, background 0.3s;
  width: 100%;
}

#contactForm input::placeholder,
#contactForm textarea::placeholder {
  color: #aaa;
}

#contactForm input:focus,
#contactForm textarea:focus {
  border-color: var(--secondary);
  background: #151515;
}

/* TEXTAREA */
#contactForm textarea {
  min-height: 140px;
  resize: vertical;
}

/* BUTTON */
.form-actions {
  display: flex;
  justify-content: flex-end;
}

#contactForm .btn--primary {
  background: var(--secondary);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s;
}

#contactForm .btn--primary:hover {
  background: #ff7e29;
  transform: translateY(-2px);
}

/* modal */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  padding: 28px;
}

.modal.show {
  display: flex;
}

.modal__card {
  max-width: 1100px;
  width: 100%;
  background: #0b0b0b;
  border-radius: 10px;
  overflow: hidden;
}

.modal__media {
  width: 100%;
  height: 60vh;
  object-fit: cover;
}

/* fade animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* responsive */
@media (max-width: 900px) {
  .hero{
    height: 70vh;
  }
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__content {
    padding: 28px;
    margin-left: 16px;
  }

  .left-nav {
    min-width: 92px;
    padding: 18px;
  }
}
/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  header {
    padding: 16px 24px;
  }

  .menu-toggle {
    display: block;
    color: #fff;
  }

  nav {
    position: absolute;
    top: 70px;
    right: 0;
    width: 220px;
    background: rgba(0, 0, 0, 0.95);
    border-left: 2px solid var(--secondary);
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  nav.open {
    transform: translateX(0);
  }

  nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 20px;
  }

  nav ul li a {
    font-size: 1rem;
    width: 100%;
  }
}
@media (max-width: 640px) {
  .hero {
    min-height: 62vh;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .left-nav {
    position: absolute;
    left: 12px;
    top: 12px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    backdrop-filter: blur(6px);
    border-radius: 10px;
    padding: 10px;
  }

  .hero__content {
    margin-left: 0;
    padding: 18px;
  }
}

/* RESPONSIVE */
@media (max-width: 600px) {
  #contact {
    padding: 70px 16px;
  }

  #contact .section-title h2 {
    font-size: 1.5rem;
  }
}

/* small utilities */
.muted {
  color: var(--muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
