:root {
  --olive: #6b8e23;
  --olive-dark: #556b2f;
  --olive-light: #8f9779;
  --beige: #f5f5dc;
  --gold: #d4af37;
  --primary-color: #1a3c34;
  --secondary-color: #d4a76a;
  --light-color: #fff7ed;
  --dark-color: #1e1e1e;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Raleway', sans-serif;
  background-color: var(--beige);
  color: #333;
  overflow-x: hidden;
  line-height: 1.6;
}

.logo {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo:hover {
  text-decoration: none;
  color: inherit;
}


.logo img {
  height: 50px;
  border-radius: 12px;
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  color: var(--olive-dark);
}

/* Header Styles */
header {
  background: linear-gradient(135deg, #fff7ed, #ccb18e);
  color: white;
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  border-radius: 0 0 15px 15px;
}

header.scrolled {
  padding: 0.5rem 0;
  background: #ccb18e;
  backdrop-filter: blur(10px);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo img {
  height: 50px;
  border-radius: 12px;
  transition: all 0.5s ease;
}

header.scrolled .logo img {
  height: 40px;
}

.logo-text {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
  background: linear-gradient(to right, #487748, #233f33);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.5s ease;
  user-select: none;
}

.countdown-wrapper {
  padding: 0;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}


header.scrolled .logo-text {
  font-size: 1.5rem;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  color: #556b2f;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  border-radius: 12px;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--gold);
  transition: width 0.3s ease;
  border-radius: 0 0 12px 12px;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: #6b8e23;
  border-color: rgba(243, 156, 18, 0.8);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #556b2f;
  font-size: 1.8rem;
  cursor: pointer;
  border-radius: 12px;
  transition: background-color 0.3s ease;
}

.mobile-menu-btn:hover {
  background: transparent;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url('src/bg.jpeg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 1.5rem;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin: 6.5rem 1rem 3rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
  border-radius: 15px;
}

.hero-content {
  max-width: 800px;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 1rem;
  color: var(--gold);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  letter-spacing: 3px;
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero .date {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 2rem;
  display: inline-block;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

/* Timer clock box */
.countdown-container {
  position: relative;
  margin: 2vh auto 4vh;
  background: transparent; /* Remove white translucent background */
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  user-select: none;
  overflow: hidden;
}
/* Apply blurred background only to the timer clock box */
.countdown-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('src/bg_Blur-Gen-Alpha.jpeg') center/cover no-repeat; /* Match hero background */
  filter: blur(2px); /* Blur effect */
  z-index: -1; /* Place behind content */
}

.countdown-container h3 {
  color: #f39c12;
  margin-bottom: 15px;
  font-size: clamp(16px, 2vw, 30px);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.countdown-container h3 i {
  color: #f82003;
}

#countdown {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 2vw, 24px);
  font-weight: 800;
  position: relative;
  z-index: 1; /* Keep above blurred background */
}

#countdown > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#countdown > div > div {
  font-size: clamp(24px, 5vw, 48px);
  color: #f39c12;
  font-family: 'Montserrat', sans-serif;
  min-width: 2ch;
  text-align: center;
}

#countdown > div > span {
  font-size: 0.8rem;
  color: rgba(246, 243, 243, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--gold);
  color: white;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  margin: 0 0.5rem;
  user-select: none;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
  background: #e6c12e;
}

.btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline:hover {
  background: white;
  color: var(--olive-dark);
  border-color: var(--olive-dark);
}

/* Section Base */
.section {
  padding: 4rem 1.5rem 6rem;
  max-width: 1100px;
  margin: 0 auto 4rem;
  border-radius: 30px;
  background: #fff7ed;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 2px solid var(--olive-light);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  display: inline-block;
  position: relative;
  color: var(--olive-dark);
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
}

/* About Section */
.about-content {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 350px;
}

.about-text h3 {
  font-size: clamp(1.5rem, 2vw, 2rem);
  margin-bottom: 1.2rem;
  color: var(--olive);
}

.about-text p {
  margin-bottom: 1rem;
  line-height: 1.7;
  font-size: 1.05rem;
  color: var(--olive-dark);
}

.about-image {
  flex: 1 1 320px;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

/* Committees Section */
.committees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.committee-card {
  background: #F4F5F1;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--olive-light);
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}

.committee-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(34, 139, 131, 0.5); /* Teal glow */
  border-color: #228b83; /* Deep teal border */
}

.committee-image {
  height: 230px;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}

.committee-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.committee-card:hover .committee-image img {
  transform: scale(1.1);
}

.committee-content {
  padding: 1rem 1.25rem 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.committee-content h3 {
  margin-bottom: 0.5rem;
  color: var(--olive-dark);
  user-select: none;
}

.committee-content p {
  color: #555;
  flex-grow: 1;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Core Members Section */
.core-members-section {
  background: var(--light-color);
  padding: 4rem 1.5rem 6rem;
  max-width: 1100px;
  margin: 0 auto 4rem;
  border-radius: 15px;
  border: 2px solid var(--olive-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  text-align: center;
}

.core-members-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--olive-dark);
  margin-bottom: 2rem;
  position: relative;
}

.core-members-section h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
}

.core-members-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.core-member-card {
  background: #f5f5f5;
  text-align: center;
  overflow: hidden;
  position: relative;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  padding-bottom: 1rem;
}

.core-member-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.core-member-card .profile img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 4px solid var(--light-color);
  transition: all 0.4s ease;
  object-fit: cover;
  margin-top: 1.5rem;
}

.core-member-card:hover .profile img {
  border-color: var(--gold);
  transform: scale(1.2) rotate(5deg);
}

.core-member-card .main-content {
  margin-top: 1rem;
}

.core-member-card .name {
  font-size: 1.3rem;
  color: var(--olive-dark);
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.core-member-card:hover .name {
  color: var(--gold);
}

.core-member-card .title {
  display: block;
  font-size: 0.9rem;
  color: var(--olive);
  font-weight: 600;
  margin-bottom: 1rem;
}

.core-member-card .social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 0.5rem;
}

.core-member-card .social a {
  color: var(--olive-dark);
  font-size: 1.3rem;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.core-member-card:hover .social a {
  color: var(--gold);
  transform: scale(1.3) rotate(10deg);
}

.core-member-card .skills {
  padding: 0 1rem 1rem;
}

.core-member-card .skills h6 {
  font-size: 1rem;
  color: var(--olive-dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.core-member-card .skills ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.core-member-card .skills ul li {
  border: 1.5px solid #ddd;
  border-radius: 20px;
  font-size: 0.8rem;
  padding: 5px 10px;
  background: var(--light-color);
  transition: background-color 0.3s ease, color 0.3s ease,
    border-color 0.3s ease, transform 0.3s ease;
}

.core-member-card .skills ul li:hover {
  background-color: var(--gold);
  color: var(--light-color);
  border-color: var(--gold);
  transform: scale(1.1) rotate(3deg);
}

/* Schedule Section */
#schedule {
  max-width: 1100px;
  margin: 0 auto 4rem;
  padding: 3rem 1.5rem;
  border-radius: 15px;
  background: #fff7ed;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 5px solid var(--olive-light);
}

.section-title#schedule-title {
  margin-bottom: 2rem;
}

.schedule-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.tab-btn {
  padding: 0.8rem 1.4rem;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-weight: 600;
  color: var(--olive);
  font-size: 1rem;
  cursor: pointer;
  border-radius: 12px 12px 0 0;
  transition: all 0.3s ease;
}

.tab-btn.active {
  border-bottom-color: rgba(243, 156, 18, 0.8);
  color: var(--olive-dark);
  background: #fff7edcc;
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

.schedule-item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
  background: white;
  border-radius: 15px;
  padding: 1rem 1.2rem;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.06);
  border: 2px solid var(--olive-light);
  transition: all 0.3s ease;
}

.schedule-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--gold);
}

.schedule-time {
  flex: 0 0 130px;
  font-weight: 700;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 6px;
}

.schedule-details {
  flex: 1;
}

.schedule-details h3 {
  margin-bottom: 0.3rem;
  color: var(--olive-dark);
}

.schedule-details p {
  color: #222;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Registration Section */
.registration {
  max-width: 1100px;
  margin: 0 auto 4rem;
  padding: 3rem 1.5rem;
  background: #fff7ed;
  border-radius: 15px;
  border: 2px solid var(--olive-dark);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.registration .section-title {
  margin-bottom: 3rem;
  text-align: center;
}

.registration-image:hover {
  transform: scale(1.03);
}

.registration-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.registration-image {
  flex: 1 1 50%;
  border-radius: 15px;
  overflow: hidden;
}

.registration-image img {
  width: 100%;
  height: auto;
}

.registration-button {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1rem;
}

.registration-button .btn {
  padding: 1rem 2rem;
  background: var(--olive);
  color: white;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s ease;
  margin-top: 1rem;
}

.registration-button .btn:hover {
  background: var(--olive-dark);
}

.registration-button p {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: var(--olive-dark);
  text-align: center;
}

/* Testimonials Section */
.testimonials {
  max-width: 800px;
  margin: 0 auto 4rem;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 2px solid var(--olive-light);
  background: var(--beige);
  padding: 2rem 1.5rem;
}

.testimonials .section-title h2 {
  margin-bottom: 2rem;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
  height: 230px;
}

.testimonial {
  background: white;
  padding: 1.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  margin: 0 0.5rem;
  opacity: 0;
  transform: scale(0.95);
  position: absolute;
  width: calc(100% - 3rem);
  top: 0;
  left: 0;
  transition: all 0.5s ease;
}

.testimonial.active {
  opacity: 1;
  transform: scale(1);
  position: relative;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
  color: #444;
  user-select: none;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  margin-bottom: 0.1rem;
  color: var(--olive-dark);
}

.author-info p {
  color: #777;
  font-size: 0.85rem;
}

.slider-controls {
  display: flex;
  justify-content: center;
  margin-top: 1.8rem;
  gap: 1rem;
}

.slider-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: white;
  border: 1.5px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--olive-dark);
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: var(--olive);
  color: white;
  border-color: var(--olive);
}

/* FAQ Section */
.faq-item {
  background: white;
  border-radius: 15px;
  margin-bottom: 1.2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.faq-item.active {
  border-color: var(--gold);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.faq-question {
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--olive-dark);
  user-select: none;
}

.faq-question:hover {
  background: var(--beige);
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.2rem;
  max-height: 500px;
}

/* Contact Section */
.contact {
  max-width: 1100px;
  margin: 0 auto 4rem;
  padding: 3rem 1.5rem;
  background: #fff7ed;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  border: 2px solid var(--olive-light);
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
}

.contact-info {
  flex: 1 1 350px;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
  color: var(--olive-dark);
  font-weight: 700;
  user-select: none;
}

.contact-details {
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.contact-detail i {
  font-size: 1.3rem;
  color: var(--olive);
  margin-top: 3px;
  min-width: 24px;
}

.contact-detail h4 {
  margin-bottom: 0.3rem;
  color: var(--olive-dark);
  font-weight: 600;
}

.contact-detail p {
  color: #666;
  line-height: 1.6;
  white-space: pre-line;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--olive);
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--olive);
  color: white;
  transform: translateY(-3px);
}

.contact-map {
  flex: 1 1 400px;
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--olive-light);
  transition: box-shadow 0.3s ease;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-map:hover {
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

/* Footer */
footer {
  background: #223f33;
  color: white;
  padding: 3rem 1.5rem 2rem;
  border-radius: 15px 15px 0 0;
  user-select: none;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
  position: relative;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
}

.footer-col p {
  margin-bottom: 1rem;
  line-height: 1.6;
  opacity: 0.85;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  opacity: 0.85;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--gold);
  transform: translateX(5px);
}

.footer-newsletter input {
  width: 100%;
  padding: 0.8rem;
  border: none;
  border-radius: 12px;
  margin-bottom: 1rem;
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
}

.footer-newsletter .btn {
  width: 100%;
  padding: 0.8rem;
  background: var(--gold);
  color: white;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.footer-newsletter .btn:hover {
  background: #e6c12e;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  opacity: 0.7;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
}

.footer-bottom a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 48px;
  height: 48px;
  background: var(--olive);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
  user-select: none;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--olive-dark);
  transform: translateY(-5px);
}

/* Tooltip Styles */
.tooltip-wrapper {
  position: relative;
  display: inline-block;
}

.tooltip-trigger {
  color: var(--gold);
  font-weight: bold;
  text-decoration: underline dotted;
  cursor: pointer;
  position: relative;
}

.tooltip-content {
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff7ed;
  border: 2px solid var(--olive-light);
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  padding: 1rem;
  min-width: 220px;
  max-width: 280px;
  text-align: center;
  display: none;
  z-index: 9999;
}

.tooltip-wrapper:hover .tooltip-content {
  display: block;
}

.tooltip-content img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  margin-bottom: 0.5rem;
}

.tooltip-content h3 {
  margin: 0.3rem 0;
  font-size: 1.1rem;
  color: var(--olive-dark);
}

.tooltip-content .social-icons {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.tooltip-content .social-icons a {
  font-size: 1.4rem;
  color: #333;
  transition: transform 0.3s ease, color 0.3s ease;
}

.tooltip-content .social-icons a:hover {
  transform: scale(1.2);
  color: var(--gold);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .header-container {
    padding: 0 1rem;
  }
  .about-content {
    flex-direction: column;
    gap: 2rem;
  }
  .registration-container {
    flex-direction: column;
    gap: 2rem;
  }
  .contact {
    flex-direction: column;
    gap: 2rem;
  }
  .schedule-time {
    flex: 0 0 120px;
    font-size: 0.95rem;
  }
  .tab-btn {
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
  }
}

/* Mobile Nav, Blur, Popup */
@media (max-width: 768px) {
  body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(40, 60, 40, 0.5);
    backdrop-filter: blur(6px);
    z-index: 998;
    pointer-events: auto;
    transition: opacity 0.3s;
  }
  body.menu-open {
    overflow: hidden;
  }
  nav ul {
    position: fixed;
    top: 70px;
    right: 16px;
    left: auto;
    width: 220px;
    height: auto;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
    border-radius: 18px;
    padding: 1rem 0.5rem;
    transition: transform 0.35s cubic-bezier(.23, 1.01, .32, 1), opacity 0.3s;
    transform: translateY(-30px) scale(0.95);
    opacity: 0;
    pointer-events: none;
    z-index: 1001;
  }
  nav ul.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
  }
  nav ul li {
    width: 100%;
    padding: 0.2rem 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }
  nav ul li a {
    font-size: 1.18rem;
    color: #223f33;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    background: none;
    border-radius: 12px;
    padding: 0.45rem 1rem;
    width: 100%;
    text-align: left;
    border: none;
  }
  nav ul li a:hover,
  nav ul li a:focus {
    color: var(--gold);
    background: #f8f6ef;
  }
  .mobile-menu-btn {
    display: block;
    z-index: 1002;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .hero {
    margin: 6.5rem 1rem 3rem;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
  .btn {
    margin: 0.5rem auto;
    width: 90%;
    border-radius: 25px;
    font-size: 1.1rem;
    display: block;
    padding: 1rem 0;
  }
  .btn-outline {
    margin: 0.5rem auto;
    width: 90%;
  }
  .committees-grid,
  .core-members-cards {
    grid-template-columns: 1fr;
  }
  .testimonial {
    width: 100% !important;
    position: relative !important;
  }
  .testimonial.active {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }
  .schedule-item {
    flex-direction: column;
    gap: 0.5rem;
  }
  .schedule-time {
    flex: none;
    width: 100%;
    font-weight: 700;
    color: var(--gold);
    border-bottom: 1px solid var(--olive-light);
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 480px) {
  header.scrolled .logo-text,
  .logo-text {
    font-size: 1.3rem;
  }
  nav ul {
    padding-top: 3rem;
  }
  .section {
    padding: 2.5rem 1.2rem 4rem;
    margin-left: 7px;
    margin-right: 7px;
  }
  .section-title h2 {
    font-size: 1.6rem;
  }
  .about-text h3 {
    font-size: 1.3rem;
  }
  .core-member-card {
    padding: 1rem;
  }
  .core-member-card .name {
    font-size: 1.1rem;
  }
  .core-member-card .title {
    font-size: 0.85rem;
  }
}
