/* ===============================
   GLOBAL
================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #000;
  color: #fff;
  overflow-x: hidden;
  padding-top: 70px; /* match your header height */
}

/* ===============================
   NAVBAR
================================ */

header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 40px;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

/* Logo always left */
.logo {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 2px;
  margin-right: auto; /* 🔑 forces left alignment */
}

/* Desktop nav */
nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  transition: all 0.3s ease;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 0.95rem;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #ff2e63;
}

/* Hamburger */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  margin-left: auto; /* 🔑 forces right alignment */
  color: #fff;
}

/* ===============================
   MOBILE NAV
================================ */

@media (max-width: 900px) {
  header {
    padding: 15px 20px; /* 🔑 reduce side padding on mobile */
  }

  .menu-toggle {
    display: block;
  }

  nav ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #000;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    display: none;
  }

  nav ul.active {
    display: flex;
  }

  nav ul li a {
    font-size: 1.1rem;
  }
}


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

.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.4);
}

.hero-content h1 {
  font-size: 3rem;
  letter-spacing: 3px;
}

.hero-content p {
  margin-top: 15px;
  font-size: 1.2rem;
  opacity: 0.85;
}

/* ===============================
   SECTIONS
================================ */

section {
  padding: 100px 10%;
}

/* ===============================
   EVENTS SECTION
================================ */

.events-section {
  padding: 40px 8% 20px;
}

/* Events title */
.events-section .events-header h2 {
  font-size: 2.4rem;
  margin-bottom: 8px;
  text-align: center;
  line-height: 1.2;
  color: #ff2e63; /* pink */
}

/* Events subtitle */
.events-section .events-header p {
  font-size: 1rem;
  color: #aaa;
  line-height: 1.5;
  margin-bottom: 20px; /* space before cards */
  max-width: 600px;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 48px;
}

/* Card */
.event-card {
  background: #0b0b0b;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #1a1a1a;
  transition: transform 0.3s ease, border 0.3s ease;
}
/*.event-card {
  width: 100%;
  max-width: 100%;
}*/
.event-card:hover {
  transform: translateY(-6px);
  border-color: #ff2e63;
}

/* Image */
.event-image {
  aspect-ratio: 1 / 1;
}

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

/* Content */
.event-content {
  padding: 20px;
}

.event-content h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .events-grid {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   STATUS BADGE (AUTO TEXT)
================================ */

.event-status-inline {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 14px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  border-radius: 999px;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.event-status-inline::after {
  content: "";
}

/* 🟢 Registration Live */
.status-registration-live .event-status-inline {
  color: #22c55e;
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.35);
}

.status-registration-live .event-status-inline::after {
  content: "Registration Live";
}

/* 🔵 Upcoming */
.status-upcoming .event-status-inline {
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.35);
}

.status-upcoming .event-status-inline::after {
  content: "Upcoming";
}

/* 🟡 Registration Closed */
.status-registration-closed .event-status-inline {
  color: #facc15;
  background: rgba(250, 204, 21, 0.12);
  border-color: rgba(250, 204, 21, 0.35);
}

.status-registration-closed .event-status-inline::after {
  content: "Registration Closed";
}

/* 🔴 Ended */
.status-ended .event-status-inline {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.35);
}

.status-ended .event-status-inline::after {
  content: "Ended";
}

/* ===============================
   BUTTONS
================================ */

.event-actions {
  display: flex;
  gap: 12px;
}

.btn-outline {
  flex: 1;
  padding: 10px 0;
  text-align: center;
  border: 1px solid #333;
  border-radius: 8px;
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
}

.btn-outline:hover {
  border-color: #ff2e63;
  color: #ff2e63;
}

/* ===============================
   REGISTER BUTTON (AUTO TEXT)
================================ */

.register-btn {
  flex: 1;
  position: relative;
  background: #ff2e63;
  border-radius: 8px;
  color: transparent;
  pointer-events: auto;
}

.register-btn::after {
  content: "Register";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.9rem;
}

/* Enabled */
.status-registration-live .register-btn {
  pointer-events: auto;
  opacity: 1;
}

/* Upcoming */
.status-upcoming .register-btn {
  pointer-events: none;
  opacity: 0.5;
  background: #222;
}

.status-upcoming .register-btn::after {
  content: "Coming Soon";
}

/* Registration Closed */
.status-registration-closed .register-btn {
  pointer-events: none;
  opacity: 0.5;
  background: #222;
}

.status-registration-closed .register-btn::after {
  content: "Registration Closed";
}

/* Ended */
.status-ended .register-btn {
  pointer-events: none;
  opacity: 0.45;
  background: #222;
}

.status-ended .register-btn::after {
  content: "Ended";
}

/* ===============================
   LOAD MORE
================================ */

.events-load-more {
  margin-top: 60px;
  margin-bottom: 100px;
  text-align: center;
}

.events-load-more a {
  padding: 14px 28px;
  border: 1px solid #333;
  border-radius: 30px;
  color: #ccc;
  text-decoration: none;
}

.events-load-more a:hover {
  border-color: #ff2e63;
  color: #ff2e63;
}

/* ===============================
   ABOUT US SECTION (FIXED)
================================ */

.about-section {
  background: #000;
  padding: 100px 8% 80px;
  color: #fff;
}

.about-container {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 80px;
  align-items: start;
}

/* Left text */
.about-tag {
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: #777;
}

.about-text h2 {
  font-size: 2.6rem;
  margin: 15px 0 25px;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #cfcfcf;
}

/* Grid */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Cards */
.about-card {
  background: linear-gradient(
    180deg,
    rgba(20, 20, 20, 0.9),
    rgba(10, 10, 10, 0.9)
  );
  border-radius: 20px;
  padding: 30px;
  border: 1px solid #1a1a1a;
  transition: transform 0.3s ease, border 0.3s ease;
}

.about-card:hover {
  transform: translateY(-6px);
  border-color: #ff2e63;
}

/* Icons (Bootstrap Icons) */
.about-card .icon {
  font-size: 32px;
  color: #ff2e63;
  margin-bottom: 20px;
}

.about-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.about-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #bdbdbd;
}

/* Responsive */
@media (max-width: 1000px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 600px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   BROKEN CONSOLE – FOOTER (FIXED)
================================ */

.bc-footer {
  background: #000;
  border-top: 1px solid #111;
  padding: 70px 8% 30px;
  color: #cfcfcf;
}

.bc-footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

/* Headings */
.bc-footer-col h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 18px;
  letter-spacing: 0.6px;
}

/* Navigation */
.bc-footer-col ul {
  list-style: none;
  padding: 0;
}

.bc-footer-col ul li {
  margin-bottom: 12px;
}

.bc-footer-col ul li a {
  text-decoration: none;
  color: #9a9a9a;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.bc-footer-col ul li a:hover {
  color: #ff2e63;
}

/* Contact text */
.bc-footer-col p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #9a9a9a;
  margin-bottom: 14px;
}

.bc-footer-col p a {
  color: #9a9a9a;
  text-decoration: none;
}

.bc-footer-col p a:hover {
  color: #ff2e63;
}

/* ===============================
   SUBSCRIBE BOX
================================ */

.bc-subscribe-box {
  display: flex;
  margin: 20px 0;
  background: #0d0d0d;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #1a1a1a;
}

.bc-subscribe-box input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 14px;
  color: #fff;
  font-size: 0.95rem;
}

.bc-subscribe-box input::placeholder {
  color: #666;
}

.bc-subscribe-box button {
  background: #ff2e63;
  border: none;
  padding: 0 18px;
  font-size: 1.2rem;
  color: #fff;
  cursor: pointer;
}

.bc-subscribe-box button:hover {
  background: #ff4b7d;
}

/* ===============================
   SOCIAL ICONS (BOOTSTRAP)
================================ */

.bc-socials {
  display: flex;
  gap: 18px;
  margin-top: 10px;
}

.bc-socials a {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.3s ease;
}

.bc-socials a:hover {
  background: #ff2e63;
}

.bc-socials i {
  font-size: 20px;
  color: #cfcfcf;
}

.bc-socials a:hover i {
  color: #fff;
}

/* Bottom bar */
.bc-footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #111;
  text-align: center;
  font-size: 0.85rem;
  color: #666;
}

/* Responsive */
@media (max-width: 900px) {
  .bc-footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bc-footer-bottom {
    text-align: left;
  }
}
