/* ============================================
   IDSF Japan - Main Stylesheet (Redesigned)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Raleway:wght@300;400;500;600;700&family=Noto+Sans+JP:wght@300;400;500;600;700&family=Noto+Serif+JP:wght@400;600;700&display=swap');

@import 'variables.css';

/* ============================================
   Keyframe Animations (Enhanced)
   ============================================ */

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(183, 148, 80, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(183, 148, 80, 0.6);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

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

@keyframes waveDown {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

@keyframes borderSlide {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* ============================================
   Reset
   ============================================ */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  font-size: var(--font-size-base);
}

body {
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ============================================
   Typography
   ============================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

a:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}

a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ============================================
   Accessibility
   ============================================ */

.skip-nav {
  position: absolute;
  top: -40px;
  left: 0;
  background-color: var(--gold);
  color: var(--navy);
  padding: 0.5rem 1rem;
  text-decoration: none;
  z-index: var(--z-header);
  font-weight: 600;
}

.skip-nav:focus {
  top: 0;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

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

/* ============================================
   Layout & Spacing
   ============================================ */

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 3rem;
  }
}

.section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .section {
    padding: 8rem 0;
  }
}

.section--sm {
  padding: 3rem 0;
}

.section--lg {
  padding: 10rem 0;
}

.section--warm {
  background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-cream) 100%);
}

.section--dark {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--white-90);
  position: relative;
}

.section--dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(183, 148, 80, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.section--dark a {
  color: var(--gold-light);
}

.section--dark a:hover {
  color: var(--gold);
}

.section--gold-line {
  border-top: 4px solid var(--gold);
}

/* Section with subtle diagonal transitions */
.section:nth-child(odd) {
  clip-path: polygon(0 0, 100% 0, 100% 98%, 0 100%);
}

.section:nth-child(even) {
  clip-path: polygon(0 2%, 100% 0, 100% 100%, 0 98%);
  margin-top: -1rem;
}

/* ============================================
   Section Headers
   ============================================ */

.section__header {
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease-out;
}

.section__label {
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.section__title::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  transform: scaleX(0);
  transform-origin: left;
  animation: borderSlide 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
}

.section--dark .section__title {
  color: var(--white-90);
}

.section--dark .section__title::before {
  background: linear-gradient(90deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-light) 100%);
}

.section__lead {
  font-size: 1.125rem;
  color: var(--text-soft);
  max-width: 700px;
  line-height: 1.8;
}

.section--dark .section__lead {
  color: var(--white-70);
}

/* ============================================
   Divider
   ============================================ */

.divider-gold {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  margin: 2rem 0;
  animation: slideInLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.divider-gold--center {
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-block;
  padding: 1.25rem 3rem;
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.05em;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn--primary {
  background-color: var(--gold);
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(183, 148, 80, 0.3);
}

.btn--primary:hover {
  background-color: var(--gold-light);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(183, 148, 80, 0.5);
}

.btn--primary:hover::before {
  left: 100%;
}

.btn--primary:active {
  transform: translateY(-2px);
}

.btn--secondary {
  border: 2px solid var(--gold);
  color: var(--gold);
  background-color: transparent;
}

.btn--secondary:hover {
  background-color: var(--gold);
  color: var(--navy);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(183, 148, 80, 0.3);
}

.btn--secondary:hover::before {
  left: 100%;
}

.btn--ghost {
  color: var(--gold);
  background-color: transparent;
  padding: 1rem 2rem;
  border-bottom: 2px solid transparent;
}

.btn--ghost:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
  transform: translateY(-2px);
}

/* ============================================
   Cards
   ============================================ */

.card {
  background-color: var(--surface);
  border: 2px solid var(--border);
  border-left: 4px solid var(--gold);
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card:hover {
  box-shadow: 0 12px 40px rgba(183, 148, 80, 0.15);
  border-color: var(--gold);
  transform: translateY(-6px);
}

.card:hover::before {
  transform: scaleX(1);
}

.card--dark {
  background: linear-gradient(135deg, var(--navy-soft) 0%, var(--navy) 100%);
  border-color: var(--gold);
  color: var(--white-90);
}

/* ============================================
   Header & Navigation
   ============================================ */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--navy);
  border-bottom: 1px solid var(--gold);
  z-index: var(--z-header);
}

header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .header-inner {
    padding: 1.5rem 3rem;
  }
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo:hover {
  color: var(--gold-light);
  border-bottom: none;
}

/* Desktop Navigation */

.nav-desktop {
  display: none;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  color: var(--white-90);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

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

/* Header Actions */

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mypage-btn {
  display: none;
  background-color: var(--gold);
  color: var(--navy);
  padding: 0.625rem 1.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.mypage-btn:hover {
  background-color: var(--gold-light);
  border-bottom: none;
}

@media (min-width: 640px) {
  .mypage-btn {
    display: inline-block;
  }
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-right: -0.5rem;
}

@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--gold);
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */

.nav-mobile {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--navy);
  z-index: var(--z-mobile-menu);
  overflow-y: auto;
}

@media (max-width: 1023px) {
  .nav-mobile.open {
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
  }
}

.nav-mobile a {
  color: var(--white-90);
  padding: 1rem 0;
  border-bottom: 1px solid var(--gold);
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 500;
  transition: var(--transition);
}

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

.nav-mobile .mypage-btn {
  margin-top: 1rem;
  display: block;
  width: 100%;
  text-align: center;
  padding: 1rem 1.5rem;
}

/* Header Spacer */

.header-spacer {
  height: 60px;
}

@media (min-width: 768px) {
  .header-spacer {
    height: 80px;
  }
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 50%, #0d0d1a 100%);
  overflow: hidden;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  background-color: var(--gold);
  border-radius: 50%;
  opacity: 0.15;
  box-shadow: 0 0 20px rgba(183, 148, 80, 0.5);
}

.particle-1 { width: 3px; height: 3px; left: 10%; animation: float 12s linear 0s infinite; }
.particle-2 { width: 4px; height: 4px; left: 15%; animation: float 14s linear 1s infinite; }
.particle-3 { width: 2px; height: 2px; left: 20%; animation: float 13s linear 2s infinite; }
.particle-4 { width: 3px; height: 3px; left: 25%; animation: float 15s linear 0.5s infinite; }
.particle-5 { width: 4px; height: 4px; left: 30%; animation: float 12.5s linear 1.5s infinite; }
.particle-6 { width: 3px; height: 3px; left: 35%; animation: float 14.5s linear 2.5s infinite; }
.particle-7 { width: 2px; height: 2px; left: 40%; animation: float 13.5s linear 0.8s infinite; }
.particle-8 { width: 3px; height: 3px; left: 45%; animation: float 15.5s linear 1.2s infinite; }
.particle-9 { width: 4px; height: 4px; left: 50%; animation: float 12s linear 1.8s infinite; }
.particle-10 { width: 3px; height: 3px; left: 55%; animation: float 14s linear 0.3s infinite; }
.particle-11 { width: 2px; height: 2px; left: 60%; animation: float 13s linear 2.2s infinite; }
.particle-12 { width: 3px; height: 3px; left: 65%; animation: float 15s linear 1.1s infinite; }
.particle-13 { width: 4px; height: 4px; left: 70%; animation: float 12.5s linear 2.7s infinite; }
.particle-14 { width: 3px; height: 3px; left: 75%; animation: float 14.5s linear 0.6s infinite; }
.particle-15 { width: 2px; height: 2px; left: 80%; animation: float 13.5s linear 1.9s infinite; }

.hero-shimmer {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
}

.shimmer {
  animation: shimmer 10s ease-in-out infinite;
  background: linear-gradient(90deg, transparent 0%, rgba(183, 148, 80, 0.8) 30%, rgba(183, 148, 80, 0.3) 50%, transparent 100%);
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

@media (min-width: 768px) {
  .hero-content {
    padding: 3rem 3rem;
  }
}

.hero h1 {
  color: var(--gold);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  margin-bottom: 2rem;
  text-shadow: 0 8px 40px rgba(183, 148, 80, 0.4);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -1px;
}

.hero p {
  color: var(--white-90);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  margin-bottom: 3rem;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    gap: 2rem;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  text-align: center;
  animation: bounce 2.5s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.7;
  }
  50% {
    transform: translateX(-50%) translateY(-15px);
    opacity: 1;
  }
}

.scroll-indicator p {
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.scroll-indicator svg {
  width: 28px;
  height: 28px;
  color: var(--gold-light);
  animation: pulse 2s ease-in-out infinite;
}

/* ============================================
   Trust Bar
   ============================================ */

.trust-bar {
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--white-90);
  padding: 5rem 0;
  position: relative;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}

.trust-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: radial-gradient(ellipse at 50% 50%, rgba(183, 148, 80, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.trust-items {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .trust-items {
    padding: 0 3rem;
  }
}

.trust-item {
  text-align: center;
  padding: 2rem;
  border-left: 3px solid var(--gold);
  animation: slideInLeft 0.8s ease-out backwards;
}

.trust-item:nth-child(2) {
  animation-delay: 0.2s;
}

.trust-item:nth-child(3) {
  animation-delay: 0.4s;
}

.trust-item-value {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(183, 148, 80, 0.3);
}

.trust-item-label {
  font-size: 1.125rem;
  color: var(--white-90);
  line-height: 1.6;
  font-weight: 500;
}

/* ============================================
   Event Cards
   ============================================ */

.event-card {
  border-left: 4px solid transparent;
  border-top: 3px solid var(--navy);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem;
  background-color: var(--surface);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.event-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(183, 148, 80, 0.2);
  border-color: var(--gold);
}

.event-card:hover::before {
  transform: scaleY(1);
}

.event-date {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--gold-bg);
}

.event-date-day {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 0.9;
}

.event-date-month {
  color: var(--text-soft);
  font-size: 1.125rem;
  font-weight: 600;
}

.event-label {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}

.event-title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.event-venue {
  color: var(--text-soft);
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.event-description {
  color: var(--text-soft);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1rem;
}

.event-divider {
  border: none;
  border-top: 2px dashed var(--border-gold);
  margin: 1.5rem 0;
}

.event-link {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  font-size: 1.125rem;
}

.event-link:hover {
  color: var(--navy);
  gap: 1rem;
}

.event-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

/* ============================================
   Discipline Cards
   ============================================ */

.disciplines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .disciplines-grid {
    gap: 2.5rem;
  }
}

.discipline-card {
  border: 2px solid var(--navy);
  padding: 2.5rem;
  background-color: var(--surface);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out backwards;
}

.discipline-card:nth-child(1) { animation-delay: 0s; }
.discipline-card:nth-child(2) { animation-delay: 0.1s; }
.discipline-card:nth-child(3) { animation-delay: 0.2s; }
.discipline-card:nth-child(4) { animation-delay: 0.3s; }
.discipline-card:nth-child(5) { animation-delay: 0.4s; }

.discipline-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.discipline-card:hover {
  border-color: var(--gold);
  box-shadow: 0 16px 48px rgba(183, 148, 80, 0.2);
  transform: translateY(-12px);
}

.discipline-card:hover::before {
  transform: scaleX(1);
}

.discipline-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(183, 148, 80, 0.3);
}

.discipline-card:hover .discipline-icon {
  box-shadow: 0 12px 40px rgba(183, 148, 80, 0.5);
  transform: scale(1.1) rotate(5deg);
}

.discipline-icon-inner {
  width: 32px;
  height: 32px;
  border: 2px solid white;
}

.discipline-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  transition: var(--transition);
}

.discipline-card:hover .discipline-name {
  color: var(--gold);
}

.discipline-description {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.disciplines-intro {
  background-color: var(--surface);
  border: 2px solid var(--gold);
  padding: 2rem;
  margin-bottom: 2rem;
}

.disciplines-intro p {
  color: var(--text);
  line-height: 1.8;
  margin: 0;
}

.disciplines-intro strong {
  color: var(--navy);
  font-weight: 600;
}

.section-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2rem;
  margin-top: 3rem;
}

/* ============================================
   News Cards
   ============================================ */

.news-card {
  border-left: 4px solid var(--gold);
  padding: 0;
  background-color: var(--surface);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out backwards;
}

.news-card:nth-child(odd) { animation-delay: 0s; }
.news-card:nth-child(even) { animation-delay: 0.1s; }

.news-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(135deg, var(--gold-bg) 0%, transparent 100%);
  pointer-events: none;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(183, 148, 80, 0.2);
  border-left-color: var(--gold-light);
}

.news-date {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 1.5rem 2rem 0.5rem;
  font-weight: 600;
}

.news-category {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  padding: 0.35rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  width: fit-content;
  margin: 0.5rem 2rem 0;
  box-shadow: 0 4px 12px rgba(183, 148, 80, 0.2);
}

.news-title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--navy);
  padding: 1rem 2rem 0.5rem;
  margin-bottom: 0.5rem;
}

.news-excerpt {
  color: var(--text-soft);
  line-height: 1.7;
  margin: 0;
  padding: 0 2rem 2rem;
  flex-grow: 1;
  font-size: 1rem;
}

/* ============================================
   Scroll Reveal
   ============================================ */

[data-reveal] {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay='1'] {
  transition-delay: 0.15s;
}

[data-reveal-delay='2'] {
  transition-delay: 0.3s;
}

[data-reveal-delay='3'] {
  transition-delay: 0.45s;
}

[data-reveal-delay='4'] {
  transition-delay: 0.6s;
}

[data-reveal-delay='5'] {
  transition-delay: 0.75s;
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 50%, #0d0d1a 100%);
  color: var(--white-90);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--gold-light);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

/* ============================================
   Footer
   ============================================ */

footer {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--white-90);
  border-top: 4px solid var(--gold);
  padding: 5rem 0 2rem;
  margin-top: 6rem;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: radial-gradient(ellipse at 50% 0%, rgba(183, 148, 80, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .footer-grid {
    padding: 0 3rem;
    gap: 4rem;
  }
}

.footer-col h3 {
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.footer-col h4 {
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-col p {
  color: var(--white-70);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.footer-col a {
  color: var(--white-90);
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0.75rem;
  text-decoration: none;
  border-left: 3px solid transparent;
  padding-left: 0.75rem;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--gold);
  border-left-color: var(--gold);
  padding-left: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0.75rem;
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  border-top: 2px solid rgba(183, 148, 80, 0.3);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    padding: 3rem 3rem;
  }
}

.copyright {
  font-size: 0.85rem;
  color: var(--white-50);
}

.footer-links {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--white-90);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.25rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 639px) {
  .container {
    padding: 0 1rem;
  }
}

@media (min-width: 1025px) {
  .nav-mobile {
    display: none;
  }
}

/* ============================================
   Accordion (FAQ)
   ============================================ */

.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  border: 2px solid var(--navy);
  background-color: var(--surface);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.accordion-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.accordion-item:hover,
.accordion-item.active {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(183, 148, 80, 0.15);
}

.accordion-item:hover::before,
.accordion-item.active::before {
  transform: scaleX(1);
}

.accordion-button {
  width: 100%;
  padding: 2rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}

.accordion-button:hover {
  background-color: var(--gold-bg);
  color: var(--navy);
}

.accordion-item.active .accordion-button {
  background-color: var(--gold-bg);
  color: var(--gold);
}

.accordion-question {
  flex: 1;
}

.accordion-icon {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.5rem;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-top: 2px solid var(--gold-bg);
  padding: 0 2rem;
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
  padding: 2rem;
}

.accordion-content p {
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.accordion-content p:last-child {
  margin-bottom: 0;
}

/* ============================================
   Gallery Grid
   ============================================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2.5rem;
}

.gallery-item {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-warm) 100%);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out backwards;
}

.gallery-item:nth-child(1) { animation-delay: 0s; }
.gallery-item:nth-child(2) { animation-delay: 0.1s; }
.gallery-item:nth-child(3) { animation-delay: 0.2s; }
.gallery-item:nth-child(4) { animation-delay: 0.3s; }
.gallery-item:nth-child(5) { animation-delay: 0.4s; }
.gallery-item:nth-child(6) { animation-delay: 0.5s; }

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(183, 148, 80, 0.1), rgba(183, 148, 80, 0.3));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover {
  transform: scale(1.08);
  box-shadow: 0 20px 50px rgba(183, 148, 80, 0.3);
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-filter-btn {
  padding: 0.875rem 2rem;
  border: 2px solid var(--navy);
  background-color: transparent;
  color: var(--navy);
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  font-size: 1rem;
}

.gallery-filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.gallery-filter-btn.active {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border-color: var(--gold);
  box-shadow: 0 8px 20px rgba(183, 148, 80, 0.3);
}

/* ============================================
   Partner Posts
   ============================================ */

.partner-post {
  border: 2px solid var(--navy);
  border-left: 4px solid var(--gold);
  padding: 2.5rem;
  background-color: var(--surface);
  margin-bottom: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.partner-post::before {
  content: '';
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(183, 148, 80, 0.1), transparent);
  transition: right 0.6s ease;
}

.partner-post:hover {
  box-shadow: 0 12px 40px rgba(183, 148, 80, 0.2);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.partner-post:hover::before {
  right: 100%;
}

/* ============================================
   Results & Seasons
   ============================================ */

.result-item {
  border: 2px solid var(--navy);
  background-color: var(--surface);
  margin-bottom: 2rem;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.result-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.result-item:hover::before {
  transform: scaleX(1);
}

.result-header {
  width: 100%;
  padding: 2rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.result-header:hover {
  background-color: var(--gold-bg);
}

.result-icon {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.5rem;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.result-item.active .result-icon {
  transform: rotate(90deg);
}

.result-content {
  display: none;
  padding: 0 2rem 2rem 2rem;
  border-top: 2px solid var(--gold-bg);
  position: relative;
  z-index: 1;
}

.result-content.show {
  display: block;
  animation: slideInDown 0.4s ease-out;
}

.season-btn {
  padding: 1rem 2rem;
  border: 2px solid var(--navy);
  background-color: transparent;
  color: var(--navy);
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  font-size: 1rem;
}

.season-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.season-btn.active {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border-color: var(--gold);
  box-shadow: 0 8px 20px rgba(183, 148, 80, 0.3);
}

/* ============================================
   Pathway
   ============================================ */

.pathway-step {
  background-color: var(--surface);
  border: 2px solid var(--navy);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: var(--transition);
}

.pathway-step:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.pathway-step-number {
  display: inline-block;
  background-color: var(--gold);
  color: var(--navy);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.pathway-step-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.pathway-step-description {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ============================================
   Events Info
   ============================================ */

.event-info-card {
  background-color: var(--surface);
  border: 2px solid var(--gold);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: var(--transition);
}

.event-info-card:hover {
  box-shadow: var(--shadow-md);
}

.event-info-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.event-info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.event-info-table th {
  background-color: var(--gold);
  color: var(--navy);
  padding: 1rem;
  text-align: left;
  font-weight: 700;
}

.event-info-table td {
  border: 1px solid var(--border);
  padding: 1rem;
  color: var(--text);
}

.event-info-table tr:nth-child(even) {
  background-color: var(--bg-warm);
}

/* ============================================
   Breadcrumb
   ============================================ */

.breadcrumb {
  padding: 1.5rem 0;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .breadcrumb {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 1024px) {
  .breadcrumb {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.breadcrumb a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}

.breadcrumb-sep {
  margin: 0 0.5rem;
  color: var(--text-muted);
}

/* ============================================
   Page Hero (for subpages)
   ============================================ */

.page-hero {
  background-color: var(--navy);
  color: var(--white-90);
  padding: 3rem 0;
  text-align: center;
}

@media (min-width: 768px) {
  .page-hero {
    padding: 4rem 0;
  }
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.page-hero p {
  color: var(--white-70);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   Form Styles
   ============================================ */

.form-group {
  margin-bottom: 2rem;
}

.form-label {
  display: block;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 1.125rem 1.25rem;
  border: 2px solid var(--navy);
  border-left: 4px solid transparent;
  background-color: var(--surface);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1.125rem;
  transition: var(--transition);
  position: relative;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  border-left-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(183, 148, 80, 0.15);
}

.form-textarea {
  min-height: 180px;
  resize: vertical;
  line-height: 1.7;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23b79450' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  padding-right: 2.75rem;
  cursor: pointer;
}

/* ============================================
   Cards Grid (generic)
   ============================================ */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

@media (min-width: 768px) {
  .cards-grid {
    gap: 2.5rem;
  }
}

/* ============================================
   Related Pages Links
   ============================================ */

.related-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.related-link {
  display: block;
  padding: 2rem;
  border: 2px solid var(--navy);
  border-top: 4px solid transparent;
  background-color: var(--surface);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.related-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.related-link:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(183, 148, 80, 0.2);
  transform: translateY(-6px);
}

.related-link:hover::before {
  transform: scaleX(1);
}

.related-link h4 {
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.related-link p {
  color: var(--text-soft);
  font-size: 1rem;
  margin: 0;
  line-height: 1.6;
}

/* ============================================
   Print Styles
   ============================================ */

@media print {
  .no-print {
    display: none;
  }

  a {
    text-decoration: underline;
  }

  body {
    background-color: white;
    color: black;
  }

  header,
  footer {
    display: none;
  }
}

/* ============================================
   Enhanced Animations (New)
   ============================================ */

/* Page Fade In */
body {
  transition: opacity 0.4s ease-in-out;
}

/* Scroll Reveal Enhancement */
[data-reveal] {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header Hide/Show on Scroll */
header {
  transition: transform 0.3s ease-out, background-color 0.3s ease-out;
  transform: translateY(0);
  will-change: transform;
}

header.header-hidden {
  transform: translateY(-100%);
}

header.scrolled {
  background-color: rgba(28, 28, 40, 0.95);
  backdrop-filter: blur(10px);
}

/* Scroll Indicator */
.scroll-indicator {
  transition: opacity 0.3s ease-out;
  opacity: 1;
}

.scroll-indicator.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Hero Parallax */
.hero-content {
  will-change: transform;
  transition: none;
}

/* Card Glow Effect */
.event-card,
.news-card,
.discipline-card,
.card {
  position: relative;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.event-card:hover,
.news-card:hover,
.discipline-card:hover,
.card:hover {
  transform: translateY(-4px);
}

.card-glow {
  will-change: background;
}

/* Count Up Animation for Trust Items */
.trust-item-value {
  transition: opacity 0.6s ease-out;
  opacity: 1;
}

.trust-item-label {
  transition: opacity 0.6s ease-out 0.2s;
  opacity: 1;
}
