/* ============================================================
   VGSMUN'26 — Committees Shared Styles
   Palette: Deep Navy · Crimson Red · Steel Grey · White
   ============================================================ */

/* Import variables from front.css if possible, but for reliability we redefine core ones */
:root {
  --navy-900: #04080f;
  --navy-800: #070d1a;
  --navy-700: #0a1120;
  --navy-600: #0d1628;
  --navy-border: #1e2e4a;
  --red-600: #7a1108;
  --red-500: #921510;
  --red-400: #a61914;
  --red-glow: rgba(146, 21, 16, 0.25);
  --grey-400: #6b7280;
  --grey-300: #9ca3af;
  --white: #ffffff;
  --white-90: rgba(255, 255, 255, 0.90);
  --white-70: rgba(255, 255, 255, 0.70);
  --white-15: rgba(255, 255, 255, 0.15);
  --white-08: rgba(255, 255, 255, 0.08);
  --white-04: rgba(255, 255, 255, 0.04);
  --radius-md: 10px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.6);
  --header-h: 70px;
}

/* Base resets for committee pages */
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--navy-900);
  color: var(--white);
  line-height: 1.6;
}

.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero Section */
.committee-hero {
  position: relative;
  padding: calc(var(--header-h) + 6rem) 0 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: var(--navy-800);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(146, 21, 16, 0.15), transparent 70%);
  z-index: 1;
}

.committee-logo-container {
  position: relative;
  z-index: 2;
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
}

.committee-logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px var(--red-glow));
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 5vw, 5.6rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.hero-tagline {
  font-size: 1.8rem;
  color: var(--grey-300);
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Navigation inside page */
.page-nav {
  position: sticky;
  top: var(--header-h);
  background: rgba(7, 13, 26, 0.8);
  backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid var(--navy-border);
}

.page-nav ul {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1.5rem 0;
}

.page-nav a {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white-70);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color var(--transition);
}

.page-nav a:hover {
  color: var(--white);
}

/* Section Styling */
.committee-section {
  padding: 8rem 0;
  border-bottom: 1px solid var(--white-04);
}

.section-label {
  color: var(--red-400);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  margin-bottom: 3rem;
}

/* Content Cards (Glassmorphism) */
.glass-card {
  background: var(--white-04);
  border: 1px solid var(--white-08);
  border-radius: var(--radius-lg);
  padding: 4rem;
  backdrop-filter: blur(8px);
}

.agenda-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.key-questions {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--white-08);
}

.key-questions h4 {
  color: var(--red-400);
  margin-bottom: 1.5rem;
}

.key-questions ul {
  list-style: none;
}

.key-questions li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1.2rem;
  color: var(--white-90);
}

.key-questions li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--red-500);
}

/* Director Bio */
.director-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: start;
}

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

.director-image-wrapper {
  position: relative;
}

.director-img {
  width: 100%;
  border-radius: var(--radius-md);
  filter: grayscale(0.2);
  border: 1px solid var(--white-15);
}

.director-contact {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.4rem;
  color: var(--white-70);
}

.contact-item i {
  color: var(--red-400);
}

/* Resources / Downloads */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.resource-card {
  background: var(--navy-800);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  padding: 3rem;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}

.resource-card:hover {
  transform: translateY(-5px);
  border-color: var(--red-500);
}

.resource-icon {
  font-size: 4rem;
  color: var(--red-400);
  margin-bottom: 2rem;
}

.btn-download {
  display: inline-block;
  margin-top: 2rem;
  background: var(--red-500);
  color: var(--white);
  padding: 1.2rem 2.4rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  transition: all var(--transition);
}

.btn-download:hover {
  background: var(--red-400);
  box-shadow: 0 5px 15px var(--red-glow);
}

/* Animations */
[data-aos] {
  pointer-events: none;
}
.aos-animate {
  pointer-events: auto;
}
