/* ========================================
   NAVBAR — Multicolor Accents
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: transparent;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(10,18,10,0.92);
  border-bottom-color: var(--glass-border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-brand {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--gold), var(--fifa-red), var(--emerald));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 5s ease infinite;
  text-decoration: none;
}

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

.nav-link {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-secondary);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--emerald), var(--fifa-red), #ff6b00, var(--gold));
  transition: width 0.3s ease, left 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
}
.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  margin: 5px 0;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
}

/* ========================================
   HERO SECTION — With Logos & College Name
   ======================================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 20px 80px;
  background: transparent;
}

.pitch-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
}
.pitch-lines::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,1);
}
.pitch-lines::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,1);
}

.hero-content {
  text-align: center;
  z-index: 10;
  max-width: 900px;
}

/* === Hero Header Row: Logo | Text | Logo === */
.hero-header-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
}

.hero-side-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(255,214,0,0.25));
  transition: transform 0.3s ease, filter 0.3s ease;
  flex-shrink: 0;
}

.hero-side-logo:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 0 35px rgba(255,214,0,0.45)) brightness(1.1);
}

/* 4-line text block */
.hero-text-block {
  text-align: center;
}

.hero-line {
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

.hero-line--college {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(0.95rem, 2.5vw, 1.35rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-light);
}

.hero-line--dept {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(0.8rem, 2vw, 1.05rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-secondary);
}

.hero-line--league {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(0.8rem, 2vw, 1.05rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-light);
  margin-top: 2px;
}

.hero-line--presents {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(0.75rem, 1.8vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: lowercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* === Large STROM Logo/Artwork Placeholder === */
.hero-strom-logo {
  margin-bottom: 24px;
  width: clamp(180px, 30vw, 280px);
  height: clamp(180px, 30vw, 280px);
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  border-radius: 16px;
}

.hero-strom-artwork {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(255,214,0,0.3));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.hero-strom-artwork:hover {
  transform: scale(1.06);
  filter: drop-shadow(0 0 60px rgba(255,214,0,0.5)) brightness(1.1);
}

.hero-eyebrow {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(0.8rem, 2vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 900;
  background: linear-gradient(135deg, #ffd600, #c4161c, #00c853, #ff6b00, #002395, #ffd600);
  background-size: 500% 500%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 4s ease infinite;
  margin-bottom: 20px;
  line-height: 1.1;
  filter: drop-shadow(0 0 40px var(--gold-glow));
}

.hero-date {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: var(--gold-light);
  letter-spacing: 3px;
  margin-bottom: 40px;
}

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

.btn {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  padding: 16px 48px;
  border-radius: 50px;
  font-size: 0.9rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--emerald), #009944);
  color: #fff;
  border: none;
  box-shadow: 0 0 20px var(--emerald-glow), 0 4px 15px rgba(0,0,0,0.3);
}

.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 35px var(--emerald-glow), 0 8px 25px rgba(0,0,0,0.4);
}

.btn--secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  box-shadow: 0 0 15px var(--gold-glow);
}

.btn--secondary:hover {
  background: rgba(255,214,0,0.1);
  transform: translateY(-3px);
  box-shadow: 0 0 25px var(--gold-glow);
}

/* ========================================
   EVENTS SECTION — Jersey Cards + Interactive
   ======================================== */
.events-section {
  padding: 100px 40px;
  position: relative;
  max-width: 1400px;
  overflow-x: hidden;
  margin: 0 auto;
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
  background: linear-gradient(90deg, var(--gold), #ff6b00, var(--fifa-red));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 15px var(--gold-glow));
}

.section-divider {
  width: 140px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #00c853, #ffd600, #c4161c, #ff6b00, #002395, transparent);
  margin: 0 auto 60px;
  border-radius: 2px;
  animation: shimmer 3s linear infinite;
  position: relative;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 28px;
  perspective: 1200px;
  transform-style: preserve-3d;
}

/* --- Base Event Card with 3D Depth --- */
.event-card {
  position: relative;
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  border: 1px solid rgba(255,255,255,0.08);
  backface-visibility: hidden;
}

/* 3D floating shadow beneath card */
.event-card::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 10%;
  width: 80%;
  height: 20px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.4) 0%, transparent 70%);
  filter: blur(8px);
  z-index: -1;
  transition: all 0.5s ease;
  opacity: 0;
}

.event-card:hover {
  transform: translateY(-16px) rotateX(2deg);
}

.event-card:hover::after {
  opacity: 1;
  bottom: -16px;
  filter: blur(12px);
}

.card-stripe {
  height: 5px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.06) 45%, rgba(255,255,255,0.14) 50%, rgba(255,255,255,0.06) 55%, transparent 60%);
  transform: translateX(-100%);
  transition: none;
  pointer-events: none;
  z-index: 3;
}

.event-card:hover .card-shine {
  transform: translateX(100%);
  transition: transform 0.7s ease;
}

/* --- JERSEY BACKGROUNDS with stronger color --- */

/* Portugal — Red */
.event-card[data-event-id="penalty-shootout"] {
  background: linear-gradient(145deg, rgba(196,22,28,0.3) 0%, rgba(10,18,10,0.93) 55%, rgba(0,102,0,0.15) 100%);
  border-color: rgba(196,22,28,0.25);
}
.event-card[data-event-id="penalty-shootout"]:hover {
  border-color: rgba(196,22,28,0.7);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(196,22,28,0.35), inset 0 0 30px rgba(196,22,28,0.05);
}

/* Argentina — Sky Blue */
.event-card[data-event-id="grid-to-goal"] {
  background: linear-gradient(145deg, rgba(117,170,219,0.25) 0%, rgba(10,18,10,0.93) 55%, rgba(255,255,255,0.05) 100%);
  border-color: rgba(117,170,219,0.25);
}
.event-card[data-event-id="grid-to-goal"]:hover {
  border-color: rgba(117,170,219,0.7);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(117,170,219,0.35), inset 0 0 30px rgba(117,170,219,0.05);
}

/* Brazil — Yellow & Green */
.event-card[data-event-id="build-your-xi"] {
  background: linear-gradient(145deg, rgba(254,221,0,0.2) 0%, rgba(10,18,10,0.93) 55%, rgba(0,151,57,0.18) 100%);
  border-color: rgba(254,221,0,0.25);
}
.event-card[data-event-id="build-your-xi"]:hover {
  border-color: rgba(254,221,0,0.7);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(254,221,0,0.3), inset 0 0 30px rgba(254,221,0,0.05);
}

/* Spain — Red & Yellow */
.event-card[data-event-id="charge-to-goal"] {
  background: linear-gradient(145deg, rgba(198,11,30,0.25) 0%, rgba(10,18,10,0.93) 55%, rgba(255,196,0,0.15) 100%);
  border-color: rgba(198,11,30,0.25);
}
.event-card[data-event-id="charge-to-goal"]:hover {
  border-color: rgba(198,11,30,0.7);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(198,11,30,0.35), inset 0 0 30px rgba(198,11,30,0.05);
}

/* England — White */
.event-card[data-event-id="var-review"] {
  background: linear-gradient(145deg, rgba(255,255,255,0.12) 0%, rgba(10,18,10,0.93) 55%, rgba(0,51,102,0.15) 100%);
  border-color: rgba(255,255,255,0.12);
}
.event-card[data-event-id="var-review"]:hover {
  border-color: rgba(255,255,255,0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(255,255,255,0.15), inset 0 0 30px rgba(255,255,255,0.03);
}

/* France — Blue */
.event-card[data-event-id="tech-presentation"] {
  background: linear-gradient(145deg, rgba(0,35,149,0.3) 0%, rgba(10,18,10,0.93) 55%, rgba(237,41,57,0.12) 100%);
  border-color: rgba(0,35,149,0.25);
}
.event-card[data-event-id="tech-presentation"]:hover {
  border-color: rgba(0,35,149,0.7);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(0,35,149,0.35), inset 0 0 30px rgba(0,35,149,0.05);
}

/* Japan — Samurai Blue */
.event-card[data-event-id="escape-to-glory"] {
  background: linear-gradient(145deg, rgba(0,32,91,0.3) 0%, rgba(10,18,10,0.93) 55%, rgba(188,0,45,0.12) 100%);
  border-color: rgba(0,32,91,0.25);
}
.event-card[data-event-id="escape-to-glory"]:hover {
  border-color: rgba(0,32,91,0.7);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(0,32,91,0.35), inset 0 0 30px rgba(0,32,91,0.05);
}

/* --- Card Interior --- */
.card-inner {
  padding: 32px;
  padding-top: 36px;
  position: relative;
  z-index: 1;
}

.country-badge {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 20px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.card-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.4;
}

.card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.card-btn {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--text-primary);
  background: transparent;
  border: 1px solid var(--glass-border);
  padding: 10px 28px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.card-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
  transform: translateY(-2px);
}

/* ========================================
   CORE COMMITTEE
   ======================================== */
.contact-section {
  padding: 100px 40px;
  background: transparent;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 60px;
}

.contact-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  padding: 28px 16px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--fifa-red), #ff6b00);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-card:hover::before {
  opacity: 1;
}

.contact-card:hover {
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3), 0 0 15px rgba(255,214,0,0.1);
  transform: translateY(-6px);
}

.contact-role {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  background: linear-gradient(90deg, var(--fifa-red), #ff6b00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.contact-name {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.contact-number {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.contact-number a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-number a:hover {
  color: var(--emerald);
}

.social-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
}

.social-btn {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  color: var(--text-secondary);
  border: 1px solid var(--glass-border);
  text-decoration: none;
}

.social-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
  transform: scale(1.15) rotate(5deg);
}

.location-link {
  font-family: 'Rajdhani', sans-serif;
  color: var(--emerald);
  text-decoration: none;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  justify-content: center;
  width: 100%;
  letter-spacing: 1px;
}

.location-link:hover {
  color: var(--gold);
  transform: scale(1.03);
}

/* ========================================
   FOOTER — Full Website Footer
   ======================================== */
.site-footer,
.page-footer {
  padding: 50px 40px 30px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.3);
}

.footer-divider {
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00c853, #ffd600, #c4161c, #ff6b00, transparent);
  margin: 0 auto 30px;
}

.footer-columns {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  text-align: left;
}

.footer-col {
  min-width: 180px;
  max-width: 250px;
}

.footer-col-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-light);
  margin-bottom: 14px;
}

.footer-col p,
.footer-col a {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.8;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--gold-light);
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}

.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: rgba(255,214,0,0.1);
  border-color: var(--gold-light);
}

.footer-social svg {
  width: 14px;
  height: 14px;
  fill: var(--text-muted);
  transition: fill 0.3s ease;
}

.footer-social a:hover svg {
  fill: var(--gold-light);
}

.footer-bottom {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }
  .footer-col {
    max-width: 100%;
  }
  .footer-social {
    justify-content: center;
  }
  .site-footer,
  .page-footer {
    padding: 40px 20px 24px;
  }
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
