/*
  Saint Secondin ULM — styles.css
  Moderne, responsive, accessible
*/

:root {
  --bg: #e2e8f0;
  --surface: #f1f5f9;
  --elev: #e2e8f0;
  --text: #0f172a;
  --muted: #475569;
  --primary: #4f46e5; /* indigo-600 */
  --primary-2: #06b6d4; /* cyan-500 */
  --outline: #cbd5e1;
  --success: #10b981;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0,0,0,.15);
  --container: 1200px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 800px at 20% 0%, rgba(79,70,229,.06), transparent 60%),
              radial-gradient(900px 700px at 100% 0%, rgba(6,182,212,.04), transparent 50%),
              var(--bg);
  line-height: 1.6;
}

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

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(140%) blur(12px);
  background: rgba(248, 250, 252, .9);
  border-bottom: 1px solid var(--outline);
}
.header-inner {
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  padding: 1rem 0;
  min-height: 70px;
}
.brand { 
  display: inline-flex; 
  align-items: center; 
  gap: .8rem; 
  color: var(--text); 
  text-decoration: none; 
  font-weight: 700;
  transition: all 0.3s ease;
}
.brand:hover {
  transform: translateY(-1px);
}
.brand-mark { 
  display: grid; 
  place-items: center; 
  width: 48px; 
  height: 48px; 
  border-radius: 16px; 
  background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 50%, #10b981 100%); 
  box-shadow: 0 8px 25px rgba(79,70,229,.3), inset 0 1px 0 rgba(255,255,255,.2);
  font-size: 24px;
  color: white;
  position: relative;
  overflow: hidden;
}
.brand-mark::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,.1), transparent);
  transform: rotate(45deg);
  animation: shine 3s infinite;
}
.brand-text { 
  width: 150px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes shine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.nav { 
  display: flex; 
  align-items: center;
}
.nav ul { 
  list-style: none; 
  display: flex; 
  align-items: center;
  gap: 1rem; 
  padding: 0; 
  margin: 0; 
}
.nav a { 
  color: var(--text); 
  text-decoration: none; 
  padding: .7rem 1.1rem; 
  border-radius: 10px; 
  font-weight: 600; 
  opacity: .85; 
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  height: 48px;
  box-sizing: border-box;
  white-space: nowrap;
  font-size: 0.95rem;
}
.nav a:hover, .nav a.is-active { 
  background: var(--primary); 
  color: white; 
  opacity: 1; 
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(79,70,229,.3);
}

/* Facebook Button */
.facebook-btn { 
  display: inline-flex; 
  align-items: center; 
  gap: .5rem; 
  background: #1877f2; 
  color: white; 
  text-decoration: none; 
  padding: .7rem .9rem; 
  border-radius: 10px; 
  font-weight: 600; 
  font-size: .9rem;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(24, 119, 242, .2);
  height: 48px;
  box-sizing: border-box;
}
.facebook-btn:hover { 
  background: #166fe5; 
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(24, 119, 242, .3);
}
.facebook-btn svg { flex-shrink: 0; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; }
.nav-toggle .bar { display: block; width: 26px; height: 2px; background: var(--text); margin: 6px 0; border-radius: 1px; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-block; }
  .nav { position: fixed; inset: 64px 1rem auto 1rem; display: none; }
  .nav.open { display: block; }
  .nav ul { flex-direction: column; background: var(--surface); border: 1px solid var(--outline); border-radius: 14px; padding: .6rem; box-shadow: var(--shadow); }
  .nav a { padding: .9rem 1rem; }
  .facebook-btn { display: none; }
}

@media (max-width: 640px) {
  .header-inner { flex-wrap: wrap; }
  .facebook-btn { 
    display: inline-flex; 
    order: 3; 
    width: 100%; 
    justify-content: center; 
    margin-top: .5rem; 
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
}

h3 {
  font-weight: 600;
  color: var(--primary);
  font-size: 1.4rem;
  letter-spacing: -0.5px;
}

h4 {
  font-weight: 600;
  color: var(--text);
  font-size: 1.2rem;
  letter-spacing: -0.3px;
}

/* Sections */
.section { padding: 80px 0; }
.section.alt { background: linear-gradient(180deg, var(--elev), rgba(241,245,249,0)); }
.section-head { text-align: center; margin-bottom: 28px; }
.section-head h2 { 
  margin: 0 0 .4rem; 
  font-size: clamp(1.8rem, 1.3rem + 2.5vw, 2.8rem); 
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 50%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
  line-height: 1.2;
}
.section-head .sub { 
  color: var(--muted); 
  margin: 0; 
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 16px auto 0;
  background: linear-gradient(135deg, rgba(79,70,229,0.05), rgba(6,182,212,0.05));
  padding: 20px 24px;
  border-radius: 12px;
  border-left: 4px solid var(--primary-2);
  position: relative;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.section-head .sub::before {
  content: '✈️';
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 1.2rem;
  opacity: 0.6;
}

.section-head .sub strong {
  color: var(--primary);
  font-weight: 600;
}

.grid { display: grid; gap: 24px; align-items: start; }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.grid.three { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .grid.two, .grid.three { grid-template-columns: 1fr; } }

.card {
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

/* Booking Info */
.booking-info {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 8px 0 0;
  text-align: center;
  font-style: italic;
}

.list { margin: .2rem 0 0; padding-left: 1.2rem; }
.list li { margin: .25rem 0; }

.pill-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.pill { background: rgba(79,70,229,.1); color: var(--primary); border: 1px solid rgba(79,70,229,.2); padding: .3rem .6rem; border-radius: 999px; font-size: .9rem; }

/* Buttons */
.btn { display: inline-block; text-decoration: none; font-weight: 700; border-radius: 12px; padding: .8rem 1rem; border: 1px solid transparent; color: var(--text); }
.btn.primary { background: linear-gradient(135deg, var(--primary), var(--primary-2)); box-shadow: var(--shadow); }
.btn.ghost { background: transparent; border-color: var(--outline); }
.btn.small { padding: .6rem .8rem; font-size: .95rem; }
.btn:hover { filter: brightness(1.04); }

/* Hero */
.hero { padding: 90px 0 80px; }
.hero-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; align-items: start; }
.hero h1 { 
  font-size: clamp(2.5rem, 1.5rem + 4vw, 4rem); 
  margin: 0 0 .8rem; 
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b 0%, var(--primary) 30%, var(--primary-2) 70%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -2px;
  line-height: 1.1;
  text-shadow: 0 4px 8px rgba(0,0,0,.1);
}
.lead { color: var(--muted); margin: 0 0 1rem; font-size: 1.05rem; }

.hero-description {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 100%;
  width: 100%;
  font-style: italic;
  background: rgba(0,0,0,.4);
  padding: 20px 24px;
  border-radius: 12px;
  border-left: 4px solid var(--primary-2);
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 25px rgba(0,0,0,.2);
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
}
.cta-row { display: flex; gap: .8rem; margin: 1rem 0 1.2rem; flex-wrap: wrap; }
.badges { display: flex; gap: 1.2rem; list-style: none; padding: 0; margin: 0; color: var(--muted); }
.badges li { display: grid; gap: .2rem; }
.badges strong { font-size: 1.3rem; color: var(--text); }
.hero-visual { 
  display: flex; 
  flex-direction: column; 
  gap: 16px; 
}

.hero-image-container { 
  aspect-ratio: 3 / 2; 
  border-radius: var(--radius); 
  overflow: hidden; 
  box-shadow: var(--shadow); 
  background: var(--surface); 
  display: flex; 
  align-items: center; 
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image-container:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,.15);
}

.hero-image-secondary {
  aspect-ratio: 4 / 3;
}

.hero-image-container img { 
  max-width: 100%; 
  max-height: 100%; 
  object-fit: cover; 
  width: 100%;
  height: 100%;
}

@media (max-width: 1000px) { .hero-inner { grid-template-columns: 1fr; } }

/* Event CTA */
.cta-banner { margin-top: 24px; display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center; background: linear-gradient(135deg, rgba(79,70,229,.14), rgba(6,182,212,.14)); border: 1px solid var(--outline); border-radius: var(--radius); padding: 16px 20px; }
.cta-actions { display: flex; gap: .6rem; flex-wrap: wrap; }
@media (max-width: 640px) { .cta-banner { grid-template-columns: 1fr; } }

/* Machines Gallery */
.machines-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.machine-item { background: var(--surface); border: 1px solid var(--outline); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.3s ease, box-shadow 0.3s ease; cursor: pointer; }
.machine-item:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,.15); }
.machine-item:focus { outline: 2px solid var(--primary); outline-offset: 2px; }
.machine-item img { width: 100%; height: 200px; object-fit: cover; }
.machine-item h3 { margin: 0; padding: 16px 20px 8px 20px; font-size: 1.1rem; font-weight: 600; color: var(--text); text-align: center; }

.machine-item span {
  display: block;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
  font-style: italic;
  line-height: 1.4;
  background: linear-gradient(135deg, rgba(79,70,229,0.05), rgba(6,182,212,0.05));
  margin: 0 16px 16px 16px;
  border-radius: 8px;
  border-left: 3px solid var(--primary-2);
  position: relative;
}

.machine-item span::before {
  content: '✈️';
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 0.8rem;
  opacity: 0.6;
}
@media (max-width: 640px) { .machines-gallery { grid-template-columns: 1fr; } }

/* Gallery with Pagination */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 32px; }
.gallery-item { position: relative; aspect-ratio: 1; cursor: pointer; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.gallery-item:hover { transform: translateY(-2px); box-shadow: 0 15px 30px rgba(0,0,0,.2); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item .overlay { position: absolute; inset: 0; background: linear-gradient(45deg, rgba(79,70,229,.1), rgba(6,182,212,.1)); opacity: 0; transition: opacity 0.3s ease; }
.gallery-item:hover .overlay { opacity: 1; }

.gallery-pagination { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 24px; }
.gallery-pagination-top { margin-top: 0; margin-bottom: 24px; }
.pagination-btn { background: var(--surface); border: 1px solid var(--outline); color: var(--text); border-radius: 8px; padding: 8px 16px; cursor: pointer; font-weight: 600; transition: all 0.2s ease; }
.pagination-btn:hover:not(:disabled) { background: var(--primary); color: white; border-color: var(--primary); }
.pagination-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.page-info { font-weight: 600; color: var(--muted); }

@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .gallery-grid { grid-template-columns: 1fr; } }

/* Map Container */
.map-container { 
  margin-top: 16px; 
  border-radius: 12px; 
  overflow: hidden; 
  box-shadow: var(--shadow); 
  border: 1px solid var(--outline);
}

/* PDF Link */
.pdf-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(79,70,229,.1);
  border: 1px solid rgba(79,70,229,.2);
  transition: all 0.2s ease;
}
.pdf-link:hover {
  background: rgba(79,70,229,.2);
  border-color: rgba(79,70,229,.4);
  transform: translateY(-1px);
}
.pdf-link::before {
  content: "📄 ";
  margin-right: 4px;
}

/* Enhanced Buttons */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-icon {
  font-size: 1.1em;
  margin-right: 8px;
  transition: transform 0.3s ease;
}

.btn-arrow {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

.btn:hover .btn-icon {
  transform: scale(1.1);
}

/* Gradient Buttons */
.primary-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, #6366f1 100%);
  border: none;
  color: white;
  box-shadow: 0 4px 15px rgba(79,70,229,.3);
}

.primary-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79,70,229,.4);
  background: linear-gradient(135deg, #5b21b6 0%, var(--primary) 100%);
}

.secondary-gradient {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border: none;
  color: white;
  box-shadow: 0 4px 15px rgba(16,185,129,.3);
}

.secondary-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16,185,129,.4);
}

/* Hero CTA Buttons */
.hero-cta {
  font-size: 1.1rem;
  padding: 16px 32px;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(79,70,229,.3);
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(79,70,229,.4);
}

.hero-cta-secondary {
  border: 2px solid rgba(255,255,255,.3);
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.1);
}

.hero-cta-secondary:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.5);
  transform: translateY(-2px);
}

/* Event CTA with Pulse */
.event-cta {
  position: relative;
}

.btn-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: rgba(79,70,229,.3);
  transform: translate(-50%, -50%);
  animation: pulse 2s infinite;
  pointer-events: none;
}

@keyframes pulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  70% { transform: translate(-50%, -50%) scale(1.1); opacity: 0; }
  100% { transform: translate(-50%, -50%) scale(1.1); opacity: 0; }
}

/* Activity Cards */
.activity-card {
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--outline);
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.activity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(79,70,229,.1), transparent);
  transition: left 0.5s ease;
}

.activity-card:hover::before {
  left: 100%;
}

.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,.1);
  border-color: var(--primary);
}

.activity-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.1));
  transition: transform 0.3s ease;
}

.activity-card:hover .activity-icon {
  transform: scale(1.1) rotate(5deg);
}

.activity-card h3 {
  margin: 16px 0 12px 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.activity-card p {
  margin: 0 0 20px 0;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.5;
}

.activity-card .btn {
  margin: 16px auto 8px auto;
}

.activity-card .booking-info {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 8px 0 16px 0;
  font-style: italic;
}

/* Hero Stat Cards with Hover Effects */
.hero-stat-card {
  cursor: default;
}

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

.hero-stat-card:hover::before {
  left: 100%;
}

.hero-stat-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,.2) !important;
  border-color: rgba(255,255,255,.4) !important;
  box-shadow: 0 20px 40px rgba(0,0,0,.2);
}

.hero-stat-card:hover .hero-stat-icon {
  transform: scale(1.1) rotate(5deg);
}

/* Stats Badges */
.stats-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  min-width: 120px;
  text-align: center;
}

.stat-item:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.3);
  box-shadow: 0 8px 25px rgba(0,0,0,.1);
}

.stat-icon {
  font-size: 2rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.2));
  transition: transform 0.3s ease;
  margin-bottom: 12px;
}

.stat-item:hover .stat-icon {
  transform: scale(1.1);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  margin-bottom: 20px;
  max-width: 600px;
}

.hero-description {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 100%;
  width: 100%;
  font-style: italic;
  background: rgba(0,0,0,.4);
  padding: 20px 24px;
  border-radius: 12px;
  border-left: 4px solid var(--primary-2);
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 25px rgba(0,0,0,.2);
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
}

@media (max-width: 640px) {
  .stats-badges {
    gap: 16px;
  }
  
  .stat-item {
    min-width: 100px;
    padding: 16px 12px;
  }
  
  .stat-icon {
    font-size: 1.5rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
}

/* Enhanced About Section */
#about {
  background: linear-gradient(135deg, var(--surface) 0%, var(--elev) 100%);
  position: relative;
  overflow: hidden;
}

#about::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(79,70,229,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

#about .grid.two {
  gap: 48px;
  align-items: start;
}

#about h2 {
  color: var(--primary);
  margin-bottom: 24px;
  position: relative;
}

#about h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  border-radius: 2px;
}

#about p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

#about strong {
  color: var(--primary);
  background: rgba(79,70,229,0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

#about .list {
  margin: 0;
  padding: 0;
  list-style: none;
}

#about .list li {
  position: relative;
  padding: 12px 0 12px 40px;
  margin-bottom: 8px;
  border-left: 3px solid var(--primary);
  background: rgba(79,70,229,0.05);
  border-radius: 0 8px 8px 0;
  transition: all 0.3s ease;
}

#about .list li::before {
  content: '✈️';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
}

#about .list li:hover {
  background: rgba(79,70,229,0.1);
  transform: translateX(8px);
}

#about .card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  color: white;
  border: none;
  position: relative;
  overflow: hidden;
}

#about .card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

#about .card h3 {
  color: white;
  margin-bottom: 16px;
  font-size: 1.5rem;
}

#about .card p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
}

#about .pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

#about .pill {
  background: rgba(255,255,255,0.2);
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

#about .pill:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Contact Redirect */
.contact-redirect {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.contact-redirect-content h2 {
  margin-bottom: 16px;
}
.contact-redirect-content p {
  margin-bottom: 32px;
  color: var(--muted);
}
.contact-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  padding: 12px 24px;
  transition: all 0.3s ease;
}
.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79,70,229,.3);
}
.contact-icon {
  font-size: 1.2rem;
}
.contact-info {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

/* Forms */
.contact-form .form-row { display: grid; gap: .3rem; margin-bottom: .8rem; }
input, textarea { background: var(--surface); border: 1px solid var(--outline); color: var(--text); border-radius: 10px; padding: .7rem .8rem; font: inherit; }
input:focus, textarea:focus { outline: 2px solid rgba(79,70,229,.4); border-color: rgba(79,70,229,.6); box-shadow: 0 0 0 4px rgba(79,70,229,.15); }
.small.help { color: var(--muted); font-size: .9rem; }

/* Posters Gallery */
.posters-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-bottom: 32px; }
.poster-item { cursor: pointer; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.poster-item:hover { transform: translateY(-4px); }
.poster-item:hover img { box-shadow: 0 20px 40px rgba(0,0,0,.4); }
.poster-item img { width: 100%; height: auto; display: block; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--outline); box-shadow: var(--shadow); transition: box-shadow 0.3s ease; }
.poster-year { text-align: center; font-weight: 700; font-size: 1.2rem; color: var(--text); margin-bottom: 8px; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.9); backdrop-filter: blur(8px); }
.lightbox-content { position: relative; max-width: 90vw; max-height: 90vh; display: flex; align-items: center; justify-content: center; }
.lightbox-image-container { position: relative; }
.lightbox-image-container img { max-width: 100%; max-height: 90vh; object-fit: contain; border-radius: 12px; box-shadow: 0 25px 50px rgba(0,0,0,.5); }
.lightbox-caption { position: absolute; bottom: -60px; left: 50%; transform: translateX(-50%); color: white; font-weight: 600; font-size: 1.1rem; white-space: nowrap; text-align: center; }
.lightbox-pagination { position: absolute; bottom: -100px; left: 50%; transform: translateX(-50%); color: white; font-size: 0.9rem; opacity: 0.8; }

.lightbox-close, .lightbox-prev, .lightbox-next { 
  position: fixed; 
  background: rgba(0,0,0,.9); 
  border: 2px solid rgba(255,255,255,.8); 
  color: white; 
  border-radius: 50%; 
  width: 56px; 
  height: 56px; 
  display: grid; 
  place-items: center; 
  cursor: pointer; 
  font-size: 32px; 
  font-weight: 700; 
  backdrop-filter: blur(12px); 
  transition: all 0.2s ease; 
  box-shadow: 0 8px 25px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.2); 
  z-index: 1001;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { 
  background: rgba(255,255,255,.2); 
  border-color: rgba(255,255,255,1); 
  transform: scale(1.1); 
  box-shadow: 0 12px 30px rgba(0,0,0,.8), inset 0 1px 0 rgba(255,255,255,.3);
}
.lightbox-close { 
  top: 30px; 
  right: 30px; 
  font-size: 36px; 
  width: 60px; 
  height: 60px;
}
.lightbox-prev { 
  left: 30px; 
  top: 50%; 
  transform: translateY(-50%); 
  font-size: 28px;
}
.lightbox-next { 
  right: 30px; 
  top: 50%; 
  transform: translateY(-50%); 
  font-size: 28px;
}
.lightbox-prev.hidden, .lightbox-next.hidden { opacity: 0; pointer-events: none; }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.1); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.1); }

@media (max-width: 640px) {
  .posters-gallery { grid-template-columns: 1fr; }
  .lightbox-prev, .lightbox-next { 
    width: 48px; 
    height: 48px; 
    font-size: 24px; 
    border-width: 3px;
  }
  .lightbox-prev { left: 15px; }
  .lightbox-next { right: 15px; }
  .lightbox-close { 
    top: 15px; 
    right: 15px; 
    width: 52px; 
    height: 52px; 
    font-size: 28px; 
    border-width: 3px;
  }
  .lightbox-prev:hover { transform: translateY(-50%) scale(1.05); }
  .lightbox-next:hover { transform: translateY(-50%) scale(1.05); }
}

/* Redirect Modal */
.redirect-modal { position: fixed; inset: 0; z-index: 1100; display: none; align-items: center; justify-content: center; }
.redirect-modal.open { display: flex; }
.redirect-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.8); backdrop-filter: blur(8px); }
.redirect-content { position: relative; background: var(--surface); border: 1px solid var(--outline); border-radius: var(--radius); padding: 32px; max-width: 400px; text-align: center; box-shadow: 0 25px 50px rgba(0,0,0,.3); }
.redirect-icon { font-size: 3rem; margin-bottom: 16px; color: var(--primary); }
.redirect-content h3 { margin: 0 0 16px; color: var(--text); }
.redirect-content p { margin: 8px 0; color: var(--muted); }
.redirect-club { background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: white; padding: 12px 16px; border-radius: 8px; margin: 16px 0; font-size: 1.1rem; }
.redirect-progress { background: var(--elev); border-radius: 4px; height: 6px; margin: 16px 0; overflow: hidden; }
.progress-bar { background: linear-gradient(90deg, var(--primary), var(--primary-2)); height: 100%; width: 0%; border-radius: 4px; animation: progress 3s linear forwards; }
.redirect-timer { font-weight: 600; color: var(--text); }

@keyframes progress {
  from { width: 0%; }
  to { width: 100%; }
}

/* Footer */
.site-footer { border-top: 1px solid var(--outline); margin-top: 40px; background: var(--elev); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 18px 0; }
.footer-nav { display: flex; gap: .8rem; }
.footer-nav a { color: var(--muted); text-decoration: none; }
.footer-nav a:hover { color: var(--text); }
