/* filepath: c:\Users\haris\OneDrive\Desktop\PRAGYA2K25\home\styles\style.css */
/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Basic Styles */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Variables */
:root {
  /* Typography */
  --font-main: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-display: 'Space Grotesk', 'Poppins', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Colors */
  --primary: #0047AB;    /* Strong blue */
  --primary-dark: #003380;
  --primary-light: #0057d1;
  --secondary: #FFD700;  /* Gold accent */
  --secondary-light: #FFE44D;
  --background: #ffffff;
  --surface: #f0f2f5;    /* Lighter gray for boxes */
  --surface-hover: #e4e6e9;
  --card-bg: #ffffff;    /* White background for cards */
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-muted: #666666;
  --border-color: #dcdfe4;
  --white: #ffffff;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 2.5rem;
  
  /* Functional Colors */
  --bg: linear-gradient(180deg, var(--white) 0%, var(--gray-100) 100%);
  --text: var(--gray-800);
  --text-muted: var(--gray-600);
  --border: var(--gray-300);
  --primary: var(--navy);
  --accent: var(--gold);
  
  /* Layout */
  --container: 1200px;
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
  --shadow: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
}

/* Cursor Trail Effect */
.cursor-trail {
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, var(--neon-cyan) 0%, transparent 70%);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translate(-50%, -50%);
  animation: trailFade 1s linear forwards;
}

@keyframes trailFade {
  0% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(0.3); }
}

/* Base Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }

p {
  margin-bottom: 1rem;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* utility container */
.container{max-width:var(--container);margin:0 auto;padding:20px}

/* Header */
.site-header {
  background-color: #0047AB;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 15px;
}

.brand-text {
  color: white;
  font-size: 18px;
  font-weight: bold;
}

.brand-sub {
  color: #FFD700;
  font-size: 12px;
  display: block;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-3);
  max-width: var(--container);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
}

.brand-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.brand-sub {
  font-size: 0.875rem;
  color: var(--secondary);
  font-weight: 500;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--white);
}

.brand-text {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
}

.brand-sub {
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  width: 100%;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: #FFD700;
  background-color: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
  color: #FFD700;
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0.1);
}

@keyframes glow {
  from {
    box-shadow: 0 0 20px rgba(0,255,255,0.2);
  }
  to {
    box-shadow: 0 0 30px rgba(0,255,255,0.4);
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--neon-cyan);
}

.brand .logo {
  height: 44px;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,255,255,0.3);
}

.brand-text {
  font-weight: 700;
  font-size: 18px;
  display: inline-block;
  font-family: Inter, Segoe UI, Arial, sans-serif;
  text-shadow: 0 0 10px var(--neon-cyan);
}

.brand-sub {
  display: block;
  font-size: 12px;
  line-height: 1;
  margin-top: 2px;
  color: var(--neon-cyan);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-shadow: 0 0 8px var(--neon-cyan);
}

.nav {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-link {
  color: var(--muted);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 8px;
  transition: all 0.3s var(--ease);
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,255,255,0.2), transparent);
  transition: 0.5s;
}

.nav-link:hover::before {
  left: 100%;
}

.nav-link.active,
.nav-link:hover {
  background: rgba(0,255,255,0.1);
  color: var(--neon-cyan);
  text-shadow: 0 0 5px var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0,255,255,0.2);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 10px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.btn.small {
  padding: 6px 10px;
  font-size: 13px;
}

.btn.cyan {
  background: var(--neon-cyan);
  color: #000;
  box-shadow: 0 0 20px rgba(0,255,255,0.4);
}

.btn.magenta {
  background: var(--neon-magenta);
  color: #000;
  box-shadow: 0 0 20px rgba(255,0,255,0.4);
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0,255,255,0.2);
}

/* Outlined action button (used for Details / More) */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 2px solid var(--neon-cyan);
  background: transparent;
  color: var(--neon-cyan);
  font-weight: 800;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,255,255,0.2), transparent);
  transition: 0.5s;
}

.btn-outline:hover::before {
  left: 100%;
}

.btn-outline:hover {
  background: rgba(0,255,255,0.1);
  box-shadow: 0 0 20px rgba(0,255,255,0.4);
  transform: translateY(-3px);
}

.btn-outline:focus {
  outline: none;
  box-shadow: 0 0 25px rgba(0,255,255,0.5);
}

.card-actions .btn-outline {
  padding: 8px 12px;
  font-size: 14px;
}

/* Hero */
.hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}

.hero-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.7), rgba(0,0,0,0.8));
  z-index: 1;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 5;
  display: flex;
  gap: 36px;
  align-items: center;
  padding: 40px 20px;
}

.hero-left {
  flex: 1;
  max-width: 56%;
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-title {
  font-size: 56px;
  line-height: 1;
  color: var(--neon-cyan);
  text-shadow: 0 0 20px rgba(0,255,255,0.5);
  margin-bottom: 8px;
  letter-spacing: 1px;
  animation: textGlow 2s ease-in-out infinite alternate;
  position: relative;
}

.hero-title::before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent calc(var(--glitch-position) - 3%),
    var(--neon-magenta) calc(var(--glitch-position) - 2%),
    transparent calc(var(--glitch-position) + 2%)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  mix-blend-mode: screen;
  animation: glitchText 3s linear infinite;
  animation-delay: 2s;
}

@keyframes glitchText {
  0% { --glitch-position: 0%; }
  100% { --glitch-position: 100%; }
}

@keyframes textGlow {
  from {
    text-shadow: 0 0 20px rgba(0,255,255,0.5);
  }
  to {
    text-shadow: 0 0 30px rgba(0,255,255,0.8);
  }
}

.hero-title .neon {
  color: transparent;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
  -webkit-background-clip: text;
  background-clip: text;
  animation: gradientFlow 3s linear infinite;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero-sub {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 18px;
  text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.hero-ctas {
  display: flex;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) forwards 0.5s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-card{width:360px;border-radius:var(--radius);overflow:hidden;border:1px solid rgba(255,255,255,0.04)}
.hero-img{width:100%;height:220px;object-fit:cover;display:block}
.card-footer{display:flex;justify-content:space-between;padding:12px 14px;background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));color:var(--muted);font-weight:600}

/* Section Divider */
.section-divider {
  height: 2px;
  width: 100%;
  margin: 2rem 0;
  position: relative;
  background: linear-gradient(
    90deg,
    transparent,
    var(--neon-cyan),
    var(--neon-magenta),
    var(--neon-cyan),
    transparent
  );
  animation: borderFlow 3s linear infinite;
  background-size: 200% 100%;
}

@keyframes borderFlow {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* teaser section */
.about-teaser {
  padding: 40px 20px;
  display: block;
  position: relative;
}
.teaser-grid{display:grid;grid-template-columns:1fr 380px;gap:28px;align-items:start}
.teaser-left h2{font-size:24px;color:#fff;margin-bottom:8px}
.muted{color:var(--muted);line-height:1.6}
.highlight{padding:16px;border-radius:12px;background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));}

/* highlight cards */
.highlights{display:flex;gap:16px;margin-top:22px;flex-wrap:wrap}
.glass {
  background: rgba(0,0,0,0.6);
  border: 1px solid var(--neon-cyan);
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,255,255,0.2);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(var(--angle), var(--neon-cyan), var(--neon-magenta), var(--neon-yellow));
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  mask-composite: exclude;
  animation: rotate 3s linear infinite;
  opacity: 0.5;
}

@keyframes rotate {
  to {
    --angle: 360deg;
  }
}

.glass:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(0,255,255,0.3);
}

.glass:hover::before {
  opacity: 1;
}

/* events grid */
.events-teaser{padding:40px 20px}
.section-title{font-size:28px;color:#fff;margin-bottom:16px}
.grid{display:grid;gap:18px}
.events-grid{grid-template-columns:repeat(4,1fr)}
.event-card {
  padding: 18px;
  border-radius: 12px;
  border: 1px solid var(--neon-cyan);
  background: rgba(0,0,0,0.6);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,255,255,0.1);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.event-card::after {
  content: '';
  position: absolute;
  inset: -100%;
  background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), 
    rgba(0,255,255,0.1) 0%, 
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}

.event-card:hover::after {
  opacity: 1;
}

.event-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent,
    var(--neon-cyan),
    transparent 30%
  );
  animation: rotate 4s linear infinite;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(0,255,255,0.2);
}

.event-card:hover::before {
  opacity: 0.1;
}

.event-card h3 {
  margin-bottom: 6px;
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(0,255,255,0.3);
}

.event-card p {
  color: var(--muted);
  font-size: 14px;
}

.card-actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
}

/* events list page layout */
.events-list .event-grid{grid-template-columns:repeat(auto-fit,minmax(260px,1fr));margin-top:10px}

/* register iframe wrapper */
.frame-wrap{border-radius:10px;overflow:hidden;border:1px solid rgba(255,255,255,0.03);height:520px}
.frame-wrap iframe{width:100%;height:100%;border:0}

/* Contact Page Styles */
.contact-section {
  padding: var(--space-6) 0;
  max-width: var(--container);
  margin: 0 auto;
}

.contact-section h1 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: var(--space-5);
  text-align: center;
}

.venue-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: var(--space-5);
  margin-bottom: var(--space-6);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border: 1px solid var(--border-color);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.venue-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.venue-card h3 {
  color: var(--primary);
  margin-bottom: var(--space-3);
  font-size: 1.5rem;
}

.venue-card p {
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.venue-card .muted {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.venue-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
  padding: var(--space-3) var(--space-4);
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.venue-link:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
}

.contact-form {
  background: var(--card-bg);
  padding: var(--space-5);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border: 1px solid var(--border-color);
  max-width: 800px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  background: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 12px 16px;
  width: 100%;
  margin-bottom: var(--space-4);
  transition: all 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: var(--card-bg);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,71,171,0.1);
  outline: none;
}

.contact-form label {
  display: block;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: var(--space-3);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  margin-bottom: var(--space-4);
  font-family: inherit;
  color: var(--text-primary);
  background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(26, 54, 93, 0.1);
}

.contact-form button {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: var(--space-3) var(--space-5);
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.contact-form button:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
}

/* Section Divider */
.section-divider {
  height: 1px;
  background: var(--border-color);
  margin: var(--space-6) 0;
  width: 100%;
}
.contact-section {
  padding: 36px 20px;
}

.venue-card {
  margin-bottom: 2rem;
}

.venue-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  padding: 10px 20px;
  background: transparent;
  border: 2px solid var(--neon-cyan);
  color: var(--neon-cyan);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  position: relative;
  z-index: 10;
}

.venue-link:hover {
  background: rgba(0,255,255,0.1);
  box-shadow: 0 0 20px rgba(0,255,255,0.3);
  transform: translateY(-2px);
}

.venue-link:hover {
  background: rgba(0,255,255,0.1);
  box-shadow: 0 0 20px rgba(0,255,255,0.3);
  transform: translateY(-2px);
}

.venue-link span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.organizing-team {
  margin-top: 2rem;
}
.contact-form{display:grid;gap:12px;padding:18px;border-radius:12px}
.contact-form label{display:block;color:var(--muted);font-size:14px}
.contact-form input,.contact-form textarea{width:100%;padding:10px;border-radius:8px;border:1px solid rgba(255,255,255,0.04);background:transparent;color:#fff}
.contact-form button{justify-self:start}

/* glass cards used everywhere */
.card{padding:16px;border-radius:12px;background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));border:1px solid rgba(255,255,255,0.04)}
/* modal: defined later once (kept single definition to avoid conflicts) */

/* Additional Animations */
/* Additional Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Interactive Animations */
.glass {
  animation: float 4s ease-in-out infinite;
}

.event-card:hover h3 {
  animation: pulse 1s ease-in-out infinite;
}

.btn:hover {
  animation: pulse 1s ease-in-out infinite;
}

.hero-card {
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 255, 255, 0.2),
    transparent
  );
  transform: rotate(30deg);
  animation: shimmer 3s linear infinite;
  background-size: 200% 100%;
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--neon-cyan);
  transition: 0.3s;
  transform: translateX(-50%);
  box-shadow: 0 0 10px var(--neon-cyan);
}

.nav-link:hover::after {
  width: 100%;
}

/* Card Hover Effects */
.glass:hover img {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.glass img {
  transition: transform 0.3s ease;
}

/* Responsive */
@media(max-width:1100px){
  .hero-content{flex-direction:column;gap:18px;padding:28px}
  .hero-left{max-width:100%}
  .teaser-grid{grid-template-columns:1fr}
  .events-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:680px){
  .hero-title{font-size:34px}
  .events-grid{grid-template-columns:1fr}
  .header-inner{flex-direction:column;gap:8px}
  .nav{gap:8px;justify-content:center}
}
/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Basic Styles */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.section {
  margin-bottom: 60px;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.card {
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.card-title {
  color: var(--primary);
  margin-bottom: 10px;
}

.card-content {
  color: var(--text-light);
}

/* Utilities */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }

/* Media Queries */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
  
  .header-inner {
    padding: 10px var(--space-3);
    justify-content: flex-end;
  }

  .brand {
    display: none;
  }
  
  .nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
    width: 100%;
    justify-content: center;
  }
  
  .nav-link {
    white-space: nowrap;
    padding: 6px 8px;
    font-size: 14px;
  }
  
  .section {
    margin-bottom: 40px;
  }
  
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
}

/* Base Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--background);
  color: var(--text);
  font-family: var(--font-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 32px; }
h2 { font-size: 28px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p {
  margin-bottom: 1rem;
  color: var(--text);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background-color: #0047AB;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 15px;
}

.brand-text {
  color: white;
  font-size: 18px;
  font-weight: bold;
}

.brand-sub {
  color: #FFD700;
  font-size: 12px;
  display: block;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-3);
  max-width: var(--container);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
}

.brand-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.brand-sub {
  font-size: 0.875rem;
  color: var(--secondary);
  font-weight: 500;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--white);
}

.brand-text {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
}

.brand-sub {
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 16px;
}

.nav-link:hover,
.nav-link.active {
  color: #FFD700;
  background: rgba(255, 255, 255, 0.1);
}

.nav .btn {
  background: #FFD700;
  color: #0047AB;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav .btn:hover {
  background: #FFE44D;
  transform: translateY(-2px);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: var(--font-size-normal);
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--primary);
}

.btn-secondary:hover {
  background: var(--secondary-light);
}

/* Forms */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 5px;
  color: var(--text);
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: 8px 12px;
  font-size: var(--font-size-normal);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
}

textarea.form-input {
  min-height: 120px;
  resize: vertical;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--neon-cyan);
}

.brand .logo {
  height: 44px;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,255,255,0.3);
}

.brand-text {
  font-weight: 700;
  font-size: 18px;
  display: inline-block;
  font-family: Arial, sans-serif;
  color: white;
}

.brand-sub {
  display: block;
  font-size: 12px;
  line-height: 1;
  margin-top: 2px;
  color: #FFD700;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-link {
  color: var(--muted);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 8px;
  transition: all 0.3s var(--ease);
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,255,255,0.2), transparent);
  transition: 0.5s;
}

.nav-link:hover::before {
  left: 100%;
}

.nav-link.active,
.nav-link:hover {
  background: rgba(0,255,255,0.1);
  color: var(--neon-cyan);
  text-shadow: 0 0 5px var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0,255,255,0.2);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 10px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.btn.small {
  padding: 6px 10px;
  font-size: 13px;
}

.btn.cyan {
  background: var(--neon-cyan);
  color: #000;
  box-shadow: 0 0 20px rgba(0,255,255,0.4);
}

.btn.magenta {
  background: var(--neon-magenta);
  color: #000;
  box-shadow: 0 0 20px rgba(255,0,255,0.4);
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0,255,255,0.2);
}

/* Outlined action button (used for Details / More) */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 2px solid var(--neon-cyan);
  background: transparent;
  color: var(--neon-cyan);
  font-weight: 800;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,255,255,0.2), transparent);
  transition: 0.5s;
}

.btn-outline:hover::before {
  left: 100%;
}

.btn-outline:hover {
  background: rgba(0,255,255,0.1);
  box-shadow: 0 0 20px rgba(0,255,255,0.4);
  transform: translateY(-3px);
}

.btn-outline:focus {
  outline: none;
  box-shadow: 0 0 25px rgba(0,255,255,0.5);
}

.card-actions .btn-outline {
  padding: 8px 12px;
  font-size: 14px;
}

/* Hero */
.hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: white;
}

.hero-layer {
  position: absolute;
  inset: 0;
  background: white;
  z-index: 1;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 5;
  display: flex;
  gap: 36px;
  align-items: center;
  padding: 40px 20px;
}

.hero-left {
  flex: 1;
  max-width: 56%;
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-title {
  font-size: 56px;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
}

@keyframes glitchText {
  0% { --glitch-position: 0%; }
  100% { --glitch-position: 100%; }
}

@keyframes textGlow {
  from {
    text-shadow: 0 0 20px rgba(0,255,255,0.5);
  }
  to {
    text-shadow: 0 0 30px rgba(0,255,255,0.8);
  }
}

.hero-title .neon {
  color: transparent;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
  -webkit-background-clip: text;
  background-clip: text;
  animation: gradientFlow 3s linear infinite;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero-sub {
  color: var(--text);
  font-size: 18px;
  margin-bottom: 24px;
  max-width: 600px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) forwards 0.5s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-card{width:360px;border-radius:var(--radius);overflow:hidden;border:1px solid rgba(255,255,255,0.04)}
.hero-img{width:100%;height:220px;object-fit:cover;display:block}
.card-footer{display:flex;justify-content:space-between;padding:12px 14px;background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));color:var(--muted);font-weight:600}

/* Section Divider */
.section-divider {
  height: 2px;
  width: 100%;
  margin: 2rem 0;
  position: relative;
  background: linear-gradient(
    90deg,
    transparent,
    var(--neon-cyan),
    var(--neon-magenta),
    var(--neon-cyan),
    transparent
  );
  animation: borderFlow 3s linear infinite;
  background-size: 200% 100%;
}

@keyframes borderFlow {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* teaser section */
.about-teaser {
  padding: 40px 20px;
  display: block;
  position: relative;
}
.teaser-grid{display:grid;grid-template-columns:1fr 380px;gap:28px;align-items:start}
.teaser-left h2{font-size:24px;color:var(--text);margin-bottom:8px}
.muted{color:var(--muted);line-height:1.6}
.highlight{padding:16px;border-radius:12px;background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));}

/* highlight cards */
.highlights{display:flex;gap:16px;margin-top:22px;flex-wrap:wrap}
.glass {
  background: white;
  border: 1px solid #dcdfe4;
  padding: 16px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.glass:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* events grid */
.events-teaser{padding:40px 20px}
.section-title{font-size:28px;color:var(--text);margin-bottom:16px}
.grid{display:grid;gap:18px}
.events-grid{grid-template-columns:repeat(4,1fr)}
.event-card {
  padding: 18px;
  border-radius: 8px;
  border: 1px solid #dcdfe4;
  background: white;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.event-card h3 {
  margin-bottom: 6px;
  color: var(--primary);
  font-size: 20px;
}

.event-card p {
  color: var(--text);
  font-size: 14px;
  margin-bottom: 8px;
}

.card-actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
}

/* events list page layout */
.events-list .event-grid{grid-template-columns:repeat(auto-fit,minmax(260px,1fr));margin-top:10px}

/* register iframe wrapper */
.frame-wrap{border-radius:10px;overflow:hidden;border:1px solid rgba(255,255,255,0.03);height:520px}
.frame-wrap iframe{width:100%;height:100%;border:0}

/* Contact Page Styles */
.contact-section {
  padding: var(--space-6) 0;
  max-width: var(--container);
  margin: 0 auto;
}

.contact-section h1 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: var(--space-5);
  text-align: center;
}

.venue-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: var(--space-5);
  margin-bottom: var(--space-6);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border: 1px solid var(--border-color);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.venue-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.venue-card h3 {
  color: var(--primary);
  margin-bottom: var(--space-3);
  font-size: 1.5rem;
}

.venue-card p {
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.venue-card .muted {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.venue-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
  padding: var(--space-3) var(--space-4);
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.venue-link:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
}

.contact-form {
  background: var(--card-bg);
  padding: var(--space-5);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border: 1px solid var(--border-color);
  max-width: 800px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  background: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 12px 16px;
  width: 100%;
  margin-bottom: var(--space-4);
  transition: all 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: var(--card-bg);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,71,171,0.1);
  outline: none;
}

.contact-form label {
  display: block;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: var(--space-3);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  margin-bottom: var(--space-4);
  font-family: inherit;
  color: var(--text-primary);
  background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(26, 54, 93, 0.1);
}

.contact-form button {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: var(--space-3) var(--space-5);
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.contact-form button:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
}

/* Section Divider */
.section-divider {
  height: 1px;
  background: var(--border-color);
  margin: var(--space-6) 0;
  width: 100%;
}
.contact-section {
  padding: 36px 20px;
}

.venue-card {
  margin-bottom: 2rem;
}

.venue-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  padding: 10px 20px;
  background: transparent;
  border: 2px solid var(--neon-cyan);
  color: var(--neon-cyan);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  position: relative;
  z-index: 10;
}

.venue-link:hover {
  background: rgba(0,255,255,0.1);
  box-shadow: 0 0 20px rgba(0,255,255,0.3);
  transform: translateY(-2px);
}

.venue-link:hover {
  background: rgba(0,255,255,0.1);
  box-shadow: 0 0 20px rgba(0,255,255,0.3);
  transform: translateY(-2px);
}

.venue-link span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.organizing-team {
  margin-top: 2rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #dcdfe4;
  background: white;
  color: #333333;
  font-size: 16px;
}
.contact-form button{justify-self:start}

/* glass cards used everywhere */
.card{padding:16px;border-radius:12px;background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));border:1px solid rgba(255,255,255,0.04)}

/* footer */
.site-footer{padding:18px 0;margin-top:36px;background:linear-gradient(90deg, rgba(1,6,18,0.9), rgba(2,8,24,0.9));border-top:1px solid rgba(255,255,255,0.03)}

/* Typography Enhancements */
body, input, button, textarea {
  font-family: var(--font-main);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
  letter-spacing: -0.02em;
}

.brand-text {
  font-family: var(--font-display);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-xl);
  letter-spacing: -0.02em;
}

.brand-sub {
  font-family: var(--font-main);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav-link {
  font-family: var(--font-main);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
  letter-spacing: 0.01em;
}

.btn, .btn-outline {
  font-family: var(--font-main);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
  letter-spacing: 0.02em;
}

.event-card h3 {
  font-family: var(--font-display);
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-semibold);
  letter-spacing: -0.01em;
}

.modal-panel {
  font-family: var(--font-main);
}

/* modal */
.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.8);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s var(--ease);
}
.modal[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
}

.modal-panel {
  width: min(820px, 94%);
  padding: 20px;
  border-radius: 12px;
  position: relative;
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  animation: modalAppear 0.5s var(--ease) forwards;
}

@keyframes modalAppear {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  right: 12px;
  top: 12px;
  background: transparent;
  color: var(--primary);
  color: var(--neon-cyan);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.modal-close:hover {
  background: rgba(0,255,255,0.1);
  box-shadow: 0 0 15px rgba(0,255,255,0.3);
  transform: rotate(90deg);
}

/* Additional Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Interactive Animations */
/* floating animation removed for stable layout */

.event-card:hover h3 {
  animation: pulse 1s ease-in-out infinite;
}

.btn:hover {
  animation: pulse 1s ease-in-out infinite;
}

.hero-card {
  position: relative;
  overflow: hidden;
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--neon-cyan);
  transition: 0.3s;
  transform: translateX(-50%);
  box-shadow: 0 0 10px var(--neon-cyan);
}

.nav-link:hover::after {
  width: 100%;
}

/* Card Hover Effects */
.glass:hover img {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.glass img {
  transition: transform 0.3s ease;
}

/* Responsive */
@media(max-width:1100px){
  .hero-content{flex-direction:column;gap:18px;padding:28px}
  .hero-left{max-width:100%}
  .teaser-grid{grid-template-columns:1fr}
  .events-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:680px){
  .hero-title{font-size:34px}
  .events-grid{grid-template-columns:1fr}
  .header-inner{flex-direction:column;gap:8px}
  .nav{gap:8px;justify-content:center}
}
/* --- Project-wide overrides: make PRAGYA visible, add text borders and highlight buttons --- */
:root {
  /* ensure neon tokens exist for old styles */
  --neon-cyan: #00bcd4;
  --neon-magenta: #ff4081;
  --neon-yellow: #ffd700;
}

/* Make the small brand subtitle clearly visible */
.brand-sub {
  color: var(--secondary) !important; /* gold */
  text-shadow: none !important;
}

/* Ensure hero neon text is readable on all backgrounds */
.hero-title .neon {
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 8px rgba(0,0,0,0.35);
}

/* Subtle bottom border for text blocks to increase legibility */
.container h1, .container h2, .container h3, .container h4, .container h5, .container h6,
.container p, .muted {
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding-bottom: 8px;
  margin-bottom: 16px;
}

/* Highlight buttons uniformly: add border and glow on hover */
.btn {
  border: 2px solid rgba(255,255,255,0.06);
}

.btn:hover, .btn:focus {
  box-shadow: 0 8px 24px rgba(0,188,212,0.14);
  transform: translateY(-3px);
}

.btn.gold, .btn.small.gold, .nav .btn {
  border-color: rgba(255,215,0,0.9);
}

/* Make outlines more visible */
.btn-outline {
  border-color: rgba(0,188,212,0.9);
}

/* Mobile Navigation Styles */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
}

.mobile-nav-overlay[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  width: 40px;
  height: 40px;
  padding: 8px;
  cursor: pointer;
  position: relative;
  margin-right: 16px;
}

.hamburger-icon,
.hamburger-icon::before,
.hamburger-icon::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  position: absolute;
  transition: all 0.3s ease;
}

.hamburger-icon {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-icon::before {
  top: -8px;
}

.hamburger-icon::after {
  bottom: -8px;
}

.mobile-menu-btn.active .hamburger-icon {
  background: transparent;
}

.mobile-menu-btn.active .hamburger-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.mobile-menu-btn.active .hamburger-icon::after {
  transform: rotate(-45deg);
  bottom: 0;
}

/* Responsive Layout */
@media (max-width: 1200px) {
  .container { padding: 0 20px; }
  .events-grid { grid-template-columns: repeat(3, 1fr); }
  .teaser-grid { gap: 20px; }
}

@media (max-width: 1100px) {
  .hero-content { 
    flex-direction: column; 
    gap: 24px; 
    padding: 32px 20px; 
  }
  .hero-left { 
    max-width: 100%; 
    text-align: center; 
  }
  .hero-ctas { justify-content: center; }
  .teaser-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  
  .workshop-banner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .workshop-thumb {
    max-width: 100%;
    width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  body { 
    font-size: 15px; 
  }
  
  .nav {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .nav-link {
    font-size: 14px;
    padding: 5px 10px;
  }
  
  .nav .btn.small {
    padding: 6px 12px;
    font-size: 14px;
    width: 100%;
    margin: 8px 0;
  }
  
  .hero-title { font-size: 36px; }
  .hero-sub { font-size: 16px; }
  
  .events-grid,
  .event-grid { 
    grid-template-columns: 1fr; 
  }
  
  .modal-panel {
    width: 92%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 16px;
  }
  
  .contact-form {
    padding: 20px;
  }
  
  .card-actions {
    flex-direction: column;
    gap: 12px;
  }
  
  .card-actions .btn,
  .card-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }
  
  .workshop-mini {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: 32px; }
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .brand-text {
    font-size: 16px;
  }
  
  .brand-sub {
    font-size: 11px;
  }
  
  .btn, .btn-outline {
    padding: 8px 16px;
    font-size: 14px;
  }
  
  .modal-close {
    top: 8px;
    right: 8px;
  }
  
  .workshop-thumb {
    margin: -16px -16px 16px -16px;
    width: calc(100% + 32px);
    border-radius: 12px 12px 0 0;
  }
}

/* Workshop popup / thumbnail styles */
.workshop-mini{
  margin-top: 16px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.03);
}
.workshop-mini .workshop-mini-inner{flex:1}
.workshop-mini strong{display:block;margin-bottom:4px;color:var(--white)}
.workshop-mini p{margin-bottom:8px;color:var(--text-muted)}

.workshop-banner{display:flex;gap:16px;align-items:center;padding:16px}
.workshop-thumb{width:220px;max-width:40%;cursor:pointer;border-radius:8px;overflow:hidden;border:1px solid rgba(0,0,0,0.12)}
.workshop-thumb img{display:block;width:100%;height:auto}
.workshop-cta{flex:1}

/* Modal image tweaks */
.modal-img{max-width:960px;width:100%;height:auto}

@media (max-width:700px){
  .workshop-thumb{max-width:48%}
  .workshop-banner{flex-direction:column;align-items:flex-start}
}

/* === Navbar overrides (layout-only, colors preserved) ===
   Layout: sticky glass header, brand left, links right on desktop,
   compact centered links on mobile. This block only changes layout
   and spacing; it preserves your existing color variables. */
.site-header {
  background: linear-gradient(90deg, rgba(0,71,171,0.95), rgba(0,71,171,0.9));
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 6px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 6px 18px;
}

/* brand (left) */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--secondary); /* gold accent for brand */
}
.brand .logo { height: 44px; width: auto; }
.brand-text { color: var(--white); font-weight: 700; font-size: 18px; }
.brand-sub { color: var(--secondary); font-size: 12px; font-weight: 700; }

/* navigation (right on desktop) */
.nav {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
}

.nav-link {
  color: var(--muted);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.18s var(--ease);
}

/* Hover / active: keep existing palette — use white on hover, gold accent */
.nav-link:hover,
.nav-link.active {
  background: rgba(255,255,255,0.04);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

.nav .btn { margin-left: 8px; }

/* Mobile: stack/center links below the brand */
@media (max-width: 768px) {
  .header-inner { flex-direction: column; align-items: center; padding: 8px 12px; }
  .brand { justify-content: center; margin-bottom: 8px; }
  .nav { justify-content: center; gap: 10px; flex-wrap: wrap; width: 100%; }
  .nav-link { padding: 8px 10px; }
}

/* End navbar overrides */

