/* ==========================
   GLOBAL STYLES
   ========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  color: #e0e0e0;
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

/* ==========================
   NAVIGATION
   ========================== */
nav {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.4s ease;
}

nav.scrolled {
  background: rgba(0, 0, 0, 0.9);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
}

.nav-logo {
  height: 50px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #d4af37;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

/* ==========================
   HERO SECTION (HOME)
   ========================== */
#hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: radial-gradient(circle at center, rgba(212,175,55,0.05) 0%, rgba(0,0,0,1) 70%);
}

.hero-content {
  animation: fadeIn 2s ease forwards;
}

.hero-logo {
  width: 220px;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 25px rgba(212,175,55,0.6));
  animation: pulseGlow 4s infinite alternate;
}

h1 {
  font-weight: 700;
  font-size: 2.8rem;
  color: #d4af37;
  line-height: 1.3;
}

h1 span {
  color: #fff;
}

p {
  font-size: 1.1rem;
  margin-top: 1rem;
  color: #ccc;
}

/* ==========================
   BUTTONS
   ========================== */
.btn {
  display: inline-block;
  margin: 2rem 1rem 0;
  padding: 0.9rem 2.2rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-gold {
  background: linear-gradient(45deg, #d4af37, #b68a2b);
  color: #000;
}

.btn-gold:hover {
  box-shadow: 0 0 25px rgba(212,175,55,0.7);
  transform: scale(1.05);
}

.btn-outline {
  border: 2px solid #d4af37;
  color: #d4af37;
}

.btn-outline:hover {
  background-color: #d4af37;
  color: #000;
}

/* ==========================
   INTRO SECTION
   ========================== */
#intro {
  padding: 6rem 2rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

#intro h2 {
  color: #d4af37;
  font-size: 2rem;
  margin-bottom: 1.2rem;
}

#intro p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
}

/* ==========================
   SECTION HEADERS
   ========================== */
.section-header {
  text-align: center;
  padding: 4rem 2rem 2rem;
}

.section-header h2 {
  color: #d4af37;
  font-weight: 700;
  font-size: 2rem;
}

.section-header p {
  color: #aaa;
  margin-top: 0.8rem;
}

/* ==========================
   PLATFORM GRID
   ========================== */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 2rem 5%;
}

.platform-card {
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 0 10px rgba(212,175,55,0.05);
}

.platform-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(212,175,55,0.4);
}

.platform-card h3 {
  color: #d4af37;
  margin-bottom: 1rem;
}

/* ==========================
   EVENTS CAROUSEL
   ========================== */
.event-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1.5rem;
  padding: 2rem 5%;
}

.event-card {
  min-width: 300px;
  background: rgba(15,15,15,0.8);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 16px;
  padding: 1.5rem;
  scroll-snap-align: start;
  box-shadow: 0 0 15px rgba(212,175,55,0.1);
  transition: transform 0.3s;
}

.event-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(212,175,55,0.4);
}

.event-card h4 {
  color: #d4af37;
  margin-bottom: 0.5rem;
}

/* ==========================
   SPOTLIGHT GRID
   ========================== */
.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 2rem 5%;
}

.spotlight-grid article {
  background: rgba(25,25,25,0.8);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s;
}

.spotlight-grid article:hover {
  transform: translateY(-6px);
}

.spotlight-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  filter: brightness(0.8);
}

.spotlight-grid h4 {
  padding: 1rem;
  color: #d4af37;
}

/* ==========================
   PARTNERS
   ========================== */
.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
  padding: 3rem 2rem;
}

.partner-logos img {
  width: 140px;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.partner-logos img:hover {
  opacity: 1;
}

/* ==========================
   CTA SECTION
   ========================== */
#cta {
  background: radial-gradient(circle at center, rgba(212,175,55,0.1) 0%, rgba(0,0,0,1) 80%);
  text-align: center;
  padding: 6rem 2rem;
}

#cta h2 {
  color: #fff;
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}

#cta .btn {
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
}

/* ==========================
   PAGE HERO (ALL INNER PAGES)
   ========================== */
.page-hero {
  padding: 10rem 2rem 4rem;
  text-align: center;
  background: radial-gradient(circle at center, rgba(212,175,55,0.05) 0%, rgba(0,0,0,1) 80%);
}

.page-hero h1 {
  color: #d4af37;
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.page-hero p {
  color: #ccc;
}

/* ==========================
   PAGE CONTENT
   ========================== */
.page-content {
  max-width: 1000px;
  margin: 3rem auto 6rem;
  padding: 0 2rem;
  line-height: 1.7;
}

.page-content h2 {
  color: #d4af37;
  margin: 2rem 0 1rem;
  font-size: 1.5rem;
}

.page-content p {
  color: #ccc;
  margin-bottom: 1rem;
}

/* ==========================
   CONTACT PAGE
   ========================== */
#contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
  background: radial-gradient(circle at center, rgba(212,175,55,0.05) 0%, rgba(0,0,0,1) 80%);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  width: 100%;
  background: rgba(15,15,15,0.85);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 0 25px rgba(212,175,55,0.1);
}

.contact-info h2 {
  color: #d4af37;
  margin-bottom: 1rem;
}

.contact-info p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.contact-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.form-group {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  flex-basis: 100%;
}

.form-group label {
  color: #d4af37;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  background: #111;
  color: #fff;
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 10px;
  padding: 0.9rem;
  font-size: 1rem;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #d4af37;
  box-shadow: 0 0 10px rgba(212,175,55,0.3);
  outline: none;
}

.contact-form button {
  margin-top: 1rem;
  align-self: center;
}

/* ==========================
   FOOTER
   ========================== */
footer {
  padding: 2rem;
  text-align: center;
  border-top: 1px solid rgba(212,175,55,0.3);
  background-color: #000;
  color: #888;
  font-size: 0.9rem;
}

/* ==========================
   ANIMATIONS
   ========================== */
@keyframes pulseGlow {
  from { filter: drop-shadow(0 0 10px rgba(212,175,55,0.4)); }
  to { filter: drop-shadow(0 0 30px rgba(212,175,55,0.9)); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================
   RESPONSIVE
   ========================== */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  .hero-logo { width: 150px; }
  .nav-container { padding: 1rem; }
  .nav-links { gap: 1rem; }
}



