/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Animation Classes */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 0.8s ease forwards;
}

.slide-in-up {
  opacity: 0;
  transform: translateY(50px);
  animation: slideInUp 0.8s ease forwards;
}

.zoom-hover {
  transition: transform 0.3s ease;
}

.zoom-hover:hover {
  transform: scale(1.05);
}

.hover-lift {
  transition: all 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Hero Animations */
.animate-title {
  animation: fadeInUp 1s ease 0.2s both;
}

.animate-subtitle {
  animation: fadeInUp 1s ease 0.4s both;
}

.animate-description {
  animation: fadeInUp 1s ease 0.6s both;
}

.animate-date {
  animation: fadeInUp 1s ease 0.8s both;
}

.animate-buttons {
  animation: fadeInUp 1s ease 1s both;
}

.registration-closed-popup {
    position: absolute;
    background-color: #fbbf24;
    color: #1e3a8a;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 10;
    white-space: nowrap;
}

.register-animation {
  animation: fadeInUp 1.2s ease 0.6s both;
  position: relative;
}
/* Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Navigation */
.navbar {
  background: rgba(30, 58, 138, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.nav-logo:hover {
  color: #fbbf24;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
}

.nav-dropdown .dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 0.4s cubic-bezier(0.4,0,0.2,1), transform 0.4s cubic-bezier(0.4,0,0.2,1), visibility 0.4s;
  position: absolute;
  top: 110%;
  left: 0;
  background: white;
  min-width: 180px;
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.08);
  border-radius: 8px;
  z-index: 1001;
  padding: 0.5rem 0;
}

.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  background: white;
  min-width: 180px;
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.08);
  border-radius: 8px;
  z-index: 1001;
  padding: 0.5rem 0;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #1e3a8a;
  text-decoration: none;
  font-weight: 500;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.dropdown-menu a:hover {
  background: #f3f4f6;
  color: #3730a3;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 50%, #1e40af 100%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2rem;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("photos/52c48015-5c88-4a45-82e8-5cef28facb92.jpeg")
    center/cover;
  opacity: 0.9;
  z-index: 1;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 58, 138, 0.8);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 900;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.hero-subtitle {
  font-size: 3rem;
  font-weight: 600;
  color: #fbbf24;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.hero-description {
  font-size: 1.6rem;
  color: #e5e7eb;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-weight: 700;
}

.hero-date {
  font-size: 1.2rem;
  color: #e5e7eb;
  font-weight: 400;
  margin-bottom: 3rem;
}

.font-bold {
  font-weight: 700;
  color: #fbbf24;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border: none;
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
  position: relative;
  overflow: hidden;
}

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

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

.btn-secondary {
  background: transparent;
  border: 2px solid white;
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: white;
  transition: width 0.3s ease;
  z-index: -1;
}

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

.btn-secondary:hover {
  color: #1e3a8a;
}

/* Section Headers */
.section-header,
.about-header {
  text-align: center;
  margin-bottom: 4rem;
}

.about-main-title,
.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.highlight {
  color: #3730a3;
  position: relative;
}

.title-underline,
.section-underline {
  width: 4rem;
  height: 4px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

.section-description {
  font-size: 1.2rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* About Section */
.about-section {
  background: white;
  padding: 8rem 0;
  position: relative;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, #1e40af, transparent);
  opacity: 0.1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-image img {
  width: 100%;
  height: 340px;
  object-fit: initial;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.welcome-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.about-description {
  font-size: 1.1rem;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Stats */
.stats-container {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 4rem;
}

.stat-card {
  text-align: center;
  padding: 2.5rem;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  border-radius: 15px;
  min-width: 200px;
  transition: transform 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: #1e3a8a;
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 1.2rem;
  color: #3730a3;
  font-weight: 600;
  margin-top: 0.8rem;
}

.stat-card.orange {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.stat-card.orange .stat-number {
  color: #d97706;
}

.stat-card.orange .stat-label {
  color: #92400e;
}

/* Counter Animation */
.counter-animate .stat-number {
  opacity: 0;
  animation: countUp 2s ease-out forwards;
}

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

/* Committees Section */
.committees-section {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  padding: 8rem 0;
  position: relative;
}

.committees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.committee-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.committee-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #3730a3, #1e40af);
}

.committee-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.committee-image {
  height: 200px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #3730a3; /* fallback color */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.committee-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 58, 138, 0.45); /* dark overlay for text readability */
  z-index: 1;
}
.committee-short-name {
  font-size: 3rem;
  font-weight: 900;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.committee-content {
  padding: 2rem;
}

.committee-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.committee-agenda {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.committee-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.committee-type {
  background: #dbeafe;
  color: #1e40af;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.committee-type.national {
  background: #dcfce7;
  color: #16a34a;
}

.committee-delegates {
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Legacy Section */
.legacy-section {
  background: white;
  padding: 8rem 0;
}

.legacy-carousel {
  margin-top: 3rem;
}

.carousel-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
  gap: 20px;
  padding: 10px 0;
}

.carousel-slide {
  min-width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-slide img {
  width: 95%;
  height: 380px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background: #f8fafc;
  transition: box-shadow 0.3s;
}

.carousel-slide img:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: #3730a3;
  transform: scale(1.2);
}

/* Important Information Section */
.important-info-section {
  background: linear-gradient(135deg, #1e3a8a, #3730a3);
  padding: 6rem 0;
  color: white;
}

.info-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: white;
  margin-bottom: 3rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.info-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fbbf24;
  margin-bottom: 1rem;
}

.info-card-value {
  font-size: 1.1rem;
  color: white;
  font-weight: 500;
}

/* Footer */
.footer {
  background: #1f2937;
  color: white;
  padding: 4rem 0 2rem;
}

.contact-section {
  padding: 4rem 2rem;
  background: #f8fafc;
  text-align: center;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #fbbf24;
}

.footer-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #e5e7eb;
}

.footer-text {
  color: #9ca3af;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::before {
  content: "→";
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-links a:hover::before {
  opacity: 1;
  left: -15px;
}

.footer-links a:hover {
  color: #fbbf24;
  padding-left: 15px;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: #9ca3af;
}

/* Committee Page Specific Styles - keeping existing styles */

/* Committee Page Specific Styles */
.committee-header {
  min-height: 70vh;
  padding-top: 4rem;
}

.committee-agenda-container {
  max-width: 800px;
  margin: 0 auto 2rem;
}

.agenda-title {
  font-size: 1.7rem;
  font-weight: 200;
  color: white;
  margin-bottom: 1rem;
}

.committee-info-tags {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.committee-type-tag {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  margin-bottom: 10px;
}

.committee-delegates-info {
  color: #e5e7eb;
  padding-top: 5px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.committee-content {
  padding: 2rem;
}

.committee-description-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.card-description {
  font-size: 1.1rem;
  color: #4b5563;
  line-height: 1.8;
}

/* Map Styles */
.map-section {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 1rem;
  text-align: center;
}

.map-legend {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.legend-color {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.legend-color.available {
  background-color: #10b981;
}

.legend-color.taken {
  background-color: #ef4444;
}

.legend-color.crisis {
  background-color: #f59e0b;
}

.map-container {
  height: 500px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

/* Executive Board */
.executive-board {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.executive-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 2rem;
  text-align: center;
}

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

.executive-member {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.executive-member:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.executive-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid #3730a3;
  display: block;
}

.executive-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 0.5rem;
}

.executive-position {
  font-size: 1rem;
  color: #6b7280;
  font-weight: 500;
}

/* Portfolio Section */
.portfolio-section {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 2rem;
  text-align: center;
}

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

.portfolio-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

.portfolio-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.portfolio-item.available {
  border-left-color: #10b981;
}

.portfolio-item.taken {
  border-left-color: #ef4444;
}

.portfolio-info {
  flex: 1;
}

.portfolio-name {
  font-weight: 600;
  color: #1e3a8a;
  font-size: 1rem;
}

.portfolio-delegate {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

.portfolio-status {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}

.portfolio-status.available {
  background: #d1fae5;
  color: #065f46;
}

.portfolio-status.taken {
  background: #fee2e2;
  color: #991b1b;
}

/* Crisis Section */
.crisis-section {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.crisis-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 2rem;
  text-align: center;
}

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

.crisis-item {
  background: #fff7ed;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #f59e0b;
}

.crisis-name {
  font-weight: 700;
  color: #c2410c;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.crisis-description {
  color: #ea580c;
  font-size: 0.9rem;
  line-height: 1.5;
}

.crisis-tag {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.25rem 0.75rem;
  background: #fed7aa;
  color: #c2410c;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Back to Home */
.back-home-container {
  text-align: center;
  padding: 2rem 0;
}

/* Footer */
.footer {
  background: #1f2937;
  color: white;
  padding: 3rem 0 1rem;
}

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

.footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.footer-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #e5e7eb;
}

.footer-text {
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.8rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-container {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  .committees-grid {
    grid-template-columns: 1fr;
  }

  .map-legend {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .executive-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    gap: 1rem;
  }

  .nav-link {
    padding: 0.25rem 0.5rem;
    font-size: 0.9rem;
  }

  .container {
    padding: 0 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .committee-info-tags {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .nav-menu {
    display: none;
  }

  .map-container {
    height: 350px;
  }
}

/* Loading Animation */
.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.loading-spinner {
  border: 4px solid #f3f4f6;
  border-top: 4px solid #3730a3;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Utility Classes */
.hidden {
  display: none !important;
}

.text-center {
  text-align: center;
}

.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}

.mt-1 {
  margin-top: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}

#committee-executive {
  display: none !important;
}


.registration-section {
  background: linear-gradient(120deg, #3730a3 0%, #6366f1 60%, #fbbf24 100%);
  padding: 4rem 0 3rem 0;
  margin: 4rem 0 0 0;
  box-shadow: 0 8px 40px rgba(55,48,163,0.13);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.registration-content {
  text-align: center;
  color: #fffbea;
  max-width: 600px;
  margin: 0 auto;
}

.registration-heading {
  font-size: 2.3rem;
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  text-shadow: 0 4px 24px rgba(30,58,138,0.18);
}

.registration-subtext {
  font-size: 1.2rem;
  margin-bottom: 2.2rem;
  color: #fef9c3;
  font-weight: 500;
  text-shadow: 0 2px 12px rgba(30,58,138,0.10);
}

.btn-registration-pop {
  background: linear-gradient(90deg, #fbbf24 0%, #3730a3 100%);
  background-size: 200% 100%;
  background-position: left center;
  color: #1e3a8a;
  font-size: 1.25rem;
  font-weight: 800;
  padding: 1.2rem 3.5rem;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(251,191,36,0.18), 0 0 24px 4px #fbbf24;
  transition: background-position 0.7s cubic-bezier(0.4,0,0.2,1), color 0.2s, transform 0.2s, box-shadow 0.3s;
  display: inline-block;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  border: none;
  outline: none;
  margin-top: 1.5rem;
}

.btn-registration-pop:hover {
  background-position: right center;
  color: #fffbea;
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 12px 36px 0 #fbbf24, 0 0 32px 8px #3730a3;
}

.nav-logo-image {
  height: 40px;
  width: 40px;
  border-radius: 50% !important;
  margin-right: 10px;
  object-fit: cover;
}
