/* Reset & Variables */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Montserrat:wght@500;700;800&display=swap');

:root {
  --color-bg: #ffffff;
  --color-bg-light: #f4f6f9;
  --color-bg-card: #ffffff;
  --color-primary: #418FDE;
  --color-primary-glow: rgba(65, 143, 222, 0.2);
  --color-primary-hover: #3172b6;
  --color-text: #212529;
  --color-text-muted: #6c757d;

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html,
body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
}

.fade-in.appear {
  animation: fadeIn 0.8s ease forwards;
}

.slide-left {
  opacity: 0;
  transform: translateX(-50px);
}

.slide-left.appear {
  animation: slideIn 0.8s ease forwards;
}

.slide-right {
  opacity: 0;
  transform: translateX(50px);
}

.slide-right.appear {
  animation: slideIn 0.8s ease forwards;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.scale-up {
  opacity: 0;
  transform: scale(0.9);
}

.scale-up.appear {
  animation: scaleUp 0.8s ease forwards;
}

@keyframes scaleUp {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

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

.section {
  padding: 6rem 0;
}

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

.cyan-text {
  color: var(--color-primary);
}

/* Typography */
.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  color: var(--color-text);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--color-primary);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  color: #fff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

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

.btn-outline:hover {
  background-color: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Navbar */
.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
  box-shadow: none;
  border-bottom: none;
}

/* Remove scrolled state as header is no longer floating */
.navbar.scrolled {
  padding: 1.5rem 0;
  background: transparent;
  box-shadow: none;
  border-bottom: none;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-body);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 15px;
  /* Give it more room like the image */
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  line-height: 1.25;
}

.logo-line1,
.logo-line2 {
  font-size: 1.05rem;
  /* Make sizes consistent and very legible */
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.navbar.scrolled .logo-line1,
.navbar.scrolled .logo-line2 {
  color: #00467f;
  /* Use dark blue for text on scrolled light background */
}

.logo-img-container {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.logo-img {
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
}

.navbar.scrolled .logo-img {
  filter: none;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  /* Tighter gap to fit more items */
  align-items: center;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0px;
  position: relative;
  color: #ffffff;
}

.navbar.scrolled .nav-link {
  color: #333;
}

/* Add style for SDG right logo */
.sdg-logo {
  height: 40px;
  margin-left: 10px;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--color-primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.navbar.scrolled .nav-link:hover {
  color: var(--color-primary);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
}

.navbar.scrolled .mobile-menu-btn {
  color: #333;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: url('https://www.orfonline.org/public/uploads/posts/image/1773667208_img-un-security.jpg') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(65, 143, 222, 0.6));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  color: #ffffff;
}

.hero-subtitle {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-desc {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-details {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  color: #fff;
}

.hero-detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
}

.hero-detail-item i {
  color: #fff;
  font-size: 1.2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

/* About / Details */
.about {
  background-color: var(--color-bg-light);
  position: relative;
}

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

.about-text p {
  margin-bottom: 1.5rem;
  color: var(--color-text-muted);
  font-size: 1.1rem;
}

.about-img-box {
  position: relative;
}

.about-img-box::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-primary);
  z-index: 1;
}

.about-img {
  position: relative;
  z-index: 2;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: float 6s ease-in-out infinite;
}

.objectives-list {
  margin-bottom: 2rem;
}

.objective-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.objective-item i {
  color: var(--color-primary);
  font-size: 1.5rem;
}

.objective-item h4 {
  color: var(--color-text);
}

.objective-item p {
  margin-bottom: 0;
  color: var(--color-text-muted);
}

/* ==========================================
   About the Organizer Section
   ========================================== */
.organizer-section {
  background-color: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.organizer-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-primary-glow) 0%, transparent 70%);
  top: -150px;
  right: -150px;
  z-index: 0;
  pointer-events: none;
}

/* DRV Intro Block */
.organizer-intro {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 3rem;
  background: var(--color-bg-card);
  border: 1px solid #eaeaea;
  border-radius: 10px;
  padding: 2.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 1;
}

.organizer-intro-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--color-primary), #002e60);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  box-shadow: 0 6px 20px rgba(65, 143, 222, 0.3);
}

.organizer-intro-content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.organizer-intro-content p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* Core Philosophy Block */
.organizer-philosophy {
  margin-top: 2rem;
  background: var(--color-bg-light);
  border: 1px solid #eaeaea;
  border-radius: 10px;
  padding: 2.5rem;
  position: relative;
  z-index: 1;
}

.organizer-philosophy-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--color-primary);
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
}

.organizer-philosophy-badge i {
  font-size: 1rem;
}

.organizer-philosophy>p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Initiatives Grid */
.initiatives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  position: relative;
  z-index: 1;
}

.initiative-card {
  background: var(--color-bg-card);
  border: 1px solid #eaeaea;
  border-radius: 10px;
  padding: 2rem 1.75rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.initiative-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.initiative-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-primary);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

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

.initiative-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(65, 143, 222, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.initiative-card:hover .initiative-icon-wrap {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(65, 143, 222, 0.3);
}

.initiative-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.3rem;
}

.initiative-subtitle {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.initiative-desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Global Mission Banner */
.global-mission-banner {
  margin-top: 3rem;
  display: flex;
  background: linear-gradient(135deg, #002e60 0%, #0a4a8a 100%);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 30px rgba(0, 46, 96, 0.2);
}

.mission-accent {
  width: 8px;
  flex-shrink: 0;
  background: var(--color-primary);
}

.mission-content {
  padding: 2.5rem;
}

.mission-content h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.mission-content h3 i {
  color: var(--color-primary);
  font-size: 1.3rem;
}

.mission-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Responsive: Organizer */
@media (max-width: 768px) {
  .organizer-intro {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .organizer-intro-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .mission-content {
    padding: 1.75rem;
  }
}

/* Scholarships -> Summit Goals & Precedent */
.scholarships {
  background-color: var(--color-bg);
}

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

.scholarship-card {
  background: var(--color-bg-card);
  padding: 3rem 2rem;
  border-radius: 8px;
  border: 1px solid #eaeaea;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.scholarship-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-primary);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.scholarship-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.scholarship-icon {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.scholarship-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.scholarship-features {
  margin-top: 1.5rem;
}

.scholarship-features li {
  margin-bottom: 0.5rem;
  color: var(--color-text-muted);
  padding-left: 1.5rem;
  position: relative;
  font-weight: 500;
}

.scholarship-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
}

/* Speakers */
.speakers {
  background-color: var(--color-bg-light);
}

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

/* Organizing Committee card is using scholarship-card classes now, so it inherits the correct styles. */

/* CTA Section */
.cta-section {
  background: var(--color-bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--color-primary);
  filter: blur(150px);
  opacity: 0.05;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cta-text {
  font-size: 1.5rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--color-text-muted);
}

/* ==========================================
   Summit Gallery Section
   ========================================== */
.gallery-section {
  background-color: var(--color-bg-light);
}

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

.gallery-card {
  background: var(--color-bg-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #eaeaea;
  transition: var(--transition);
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: var(--color-primary);
}

.gallery-img-container {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-card:hover .gallery-img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 46, 96, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: #fff;
  font-size: 2rem;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info {
  padding: 1.5rem;
}

.gallery-caption {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.6;
  font-weight: 500;
}

/* Footer */
.footer {
  background-color: #002e60;
  /* UN Dark Blue */
  padding: 5rem 0 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer .logo {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.2;
}

.footer-logo-box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
  /* Removed filter since v2 logo is already white/transparent */
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  margin: 1.5rem 0;
  max-width: 300px;
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
  color: #418FDE;
  /* UN Blue pop */
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-up {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.appear,
.slide-left.appear,
.slide-right.appear,
.scale-up.appear {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Committee Section */
.committee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.committee-member {
  text-align: center;
  transition: var(--transition);
  padding: 2rem;
  background: var(--color-bg-card);
  border-radius: 12px;
  border: 1px solid #eaeaea;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.committee-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-color: var(--color-primary);
}

.member-img-container {
  width: 180px;
  height: 180px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--color-primary-glow);
  transition: var(--transition);
}

.committee-member:hover .member-img-container {
  border-color: var(--color-primary);
  transform: scale(1.05);
}

.member-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.member-role {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    padding: 2rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links .nav-link {
    color: var(--color-text) !important;
  }

  .mobile-menu-btn {
    display: block;
  }

  .navbar.scrolled .mobile-menu-btn {
    color: var(--color-text);
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-details {
    flex-direction: column;
    gap: 1rem;
  }

  .section {
    padding: 4rem 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo-box {
    justify-content: center;
  }

  .footer-desc {
    margin: 1.5rem auto;
  }

  .footer-contact li {
    justify-content: center;
  }

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

/* ============================================
   Program Schedule Styles
   ============================================ */

/* Schedule Body */
.schedule-section {
  background: var(--color-bg-light);
  padding: 4rem 0 6rem;
}

.schedule-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.schedule-intro p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Day Block */
.day-block {
  margin-bottom: 3rem;
}

.day-block:last-child {
  margin-bottom: 0;
}

.day-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--color-bg-card);
  border: 1px solid #eaeaea;
  border-bottom: 3px solid var(--color-primary);
  border-radius: 10px 10px 0 0;
  padding: 1.5rem 2rem;
}

.day-label {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.day-date {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-text-muted);
}

/* Events List */
.events-list {
  background: var(--color-bg-card);
  border: 1px solid #eaeaea;
  border-top: none;
  border-radius: 0 0 10px 10px;
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

/* Individual Event */
.event-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
  position: relative;
}

.event-item:not(:last-child) {
  border-bottom: 1px solid #f0f2f5;
}

.event-icon-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.event-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  background: rgba(65, 143, 222, 0.08);
  color: var(--color-primary);
}

.event-item:hover .event-icon {
  background: var(--color-primary);
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(65, 143, 222, 0.35);
}

.event-connector {
  width: 2px;
  flex-grow: 1;
  min-height: 20px;
  background: linear-gradient(to bottom, #dde4ee, transparent);
  margin-top: 0.6rem;
}

.event-details {
  flex: 1;
  padding-top: 2px;
}

.event-time {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  background: rgba(65, 143, 222, 0.07);
  padding: 3px 10px;
  border-radius: 4px;
}

.event-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.3rem;
  transition: color 0.3s ease;
}

.event-item:hover .event-title {
  color: var(--color-primary);
}

.event-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Disclaimer */
.schedule-disclaimer {
  text-align: center;
  margin-top: 3rem;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .day-header {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .event-item {
    gap: 1rem;
  }

  .event-icon {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }

  .events-list {
    padding: 1.25rem;
  }
}

/* ============================================
   Previous Events Section
   ============================================ */
.previous-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.previous-event-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.previous-event-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
  border-color: var(--color-primary-light);
}

.event-placeholder-img {
  height: 220px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.event-placeholder-img i {
  font-size: 3.5rem;
  color: #dee2e6;
  transition: transform 0.5s ease;
}

.previous-event-card:hover .event-placeholder-img i {
  transform: scale(1.1) rotate(5deg);
  color: var(--color-primary-light);
}

.event-info-box {
  padding: 2rem;
}

.event-date-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(65, 143, 222, 0.1);
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 50px;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-info-box h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--color-text);
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.event-info-box p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   Mobile Responsiveness Enhancements
   ============================================ */
@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }

  .container {
    padding: 0 1.25rem;
  }

  .hero {
    height: auto;
    min-height: 100vh;
    padding: 100px 0 60px;
  }

  .hero-content {
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-subtitle {
    text-align: center;
    margin-bottom: 1rem;
  }

  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
  }

  .hero-desc {
    font-size: 1rem;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .hero-details {
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    align-items: center;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

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

  /* Fix circular partners on mobile */
  .partners-circle-container {
    height: auto !important;
    flex-direction: column !important;
    gap: 2.5rem !important;
    padding: 2rem 1rem !important;
    display: flex !important;
    align-items: center !important;
  }

  .partner-circle-item {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    max-width: 240px !important;
    margin: 0 auto !important;
  }

  .partners-circle-container>div[style*="border-radius: 50%"] {
    display: none !important;
  }

  .previous-events-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    padding: 2rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links .nav-link {
    display: block;
    padding: 1rem;
    color: var(--color-text) !important;
  }

  .mobile-menu-btn {
    display: block;
  }

  .logo-img-container {
    width: 60px;
    height: 60px;
  }
}

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

  .section-title {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }

  .organizer-intro {
    padding: 1.25rem;
    gap: 1.5rem;
  }

  .mission-content {
    padding: 1.5rem;
  }
}