:root {
  --bg-color: #0b0c10;
  --bg-alt: #15161a;
  --primary: #f8c128; /* Gold/Yellow accent */
  --text-main: #e0e0e0;
  --text-muted: #a0a0a0;
  --card-bg: #1e1f26;
  --border-color: #2a2b33;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Outfit', sans-serif;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 100px 0;
}

.section-alt {
  background-color: var(--bg-alt);
}

.accent {
  color: var(--primary);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

.section-title span {
  color: var(--primary);
}

/* Navbar */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(11, 12, 16, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  color: var(--primary);
}

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

.nav-links a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-cta {
  background: var(--primary);
  color: #000 !important;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: #fff;
}

/* Hero */
#hero {
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: radial-gradient(circle at center, #1e1f26 0%, #0b0c10 70%);
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 30px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn {
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-primary {
  background: var(--primary);
  color: #000;
}

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

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #000;
  transform: translateY(-2px);
}

/* About Grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #fff;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.mission-box {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 10px;
  border-left: 4px solid var(--primary);
}

.mission-box h4 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

/* Stats / Audience */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.stat-card {
  background: var(--card-bg);
  padding: 40px 20px;
  text-align: center;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  border-color: var(--primary);
}

.stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* Guests */
.guests-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.guest-card {
  background: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.3s;
}

.guest-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
}

.guest-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: top;
  border-bottom: 1px solid var(--border-color);
}

.guest-info {
  padding: 25px;
}

.guest-info h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 5px;
}

.guest-designation {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.guest-details {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Collab Grid */
.collab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.collab-card {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
}

.collab-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.collab-card h4 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 15px;
}

.collab-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Formats */
.formats {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.format-pill {
  background: rgba(248, 193, 40, 0.1);
  color: var(--primary);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 500;
  border: 1px solid rgba(248, 193, 40, 0.2);
}

/* Footer */
footer {
  background: #000;
  padding: 60px 0 30px;
  text-align: center;
  border-top: 1px solid var(--border-color);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.social-links a {
  color: #fff;
  text-decoration: none;
  background: var(--card-bg);
  padding: 12px 25px;
  border-radius: 5px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links a:hover {
  background: var(--primary);
  color: #000;
}

.copyright {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  /* Hero Section */
  #hero {
    height: auto;
    padding: 100px 0 50px;
    min-height: 80vh;
  }

  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
    word-break: break-word;
  }

  .hero-content p {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn {
    width: 100%;
  }

  /* Formats */
  .formats {
    gap: 10px;
  }

  .format-pill {
    padding: 8px 15px;
    font-size: 0.85rem;
  }

  /* Navbar */
  nav {
    height: auto;
  }

  .nav-inner {
    height: 60px;
    padding: 0 15px;
  }

  .logo {
    font-size: 1.2rem;
  }

  .nav-links {
    display: none;
  }

  /* About Grid */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .about-text p {
    font-size: 1rem;
  }

  .mission-box {
    padding: 20px;
  }

  .mission-box h4 {
    font-size: 1rem;
  }

  /* Stats Grid */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-card {
    padding: 25px 15px;
  }

  .stat-num {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  /* Guests Grid */
  .guests-grid {
    grid-template-columns: 1fr;
  }

  .guest-img {
    height: 250px;
  }

  .guest-info h3 {
    font-size: 1.2rem;
  }

  /* Collab Grid */
  .collab-grid {
    grid-template-columns: 1fr;
  }

  /* Section */
  .section {
    padding: 50px 0;
  }

  /* Footer */
  footer {
    padding: 40px 0 20px;
  }

  .social-links {
    gap: 10px;
  }

  .social-links a {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
}

/* Extra Small Devices */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .format-pill {
    padding: 6px 12px;
    font-size: 0.75rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

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

  .stat-num {
    font-size: 1.5rem;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}
