/* Event Banner */
.event-banner {
  position: relative;
  background: url('../images/GroupPhoto.JPG') no-repeat center center;
  background-size: cover;
  color: white;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.event-banner .section-title {
  color: white;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
}

.event-banner .event-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 25px;
  max-width: 600px;
  margin: 0 auto 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  text-align: left;
}

.event-banner .event-date {
  background: var(--primary-color);
  color: white;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  margin-right: 20px;
  min-width: 80px;
}

.event-banner .day {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.event-banner .month {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-banner .event-details h3 {
  color: var(--dark-blue);
  margin-bottom: 8px;
  font-size: 1.4rem;
}

.event-banner .event-details p {
  color: var(--dark-gray);
  margin: 5px 0;
  font-size: 0.95rem;
}

.event-banner .event-details i {
  color: var(--primary-color);
  margin-right: 8px;
  width: 20px;
  text-align: center;
}

.event-banner .btn-outline {
  border-color: white;
  color: white;
  background: transparent;
}

.event-banner .btn-outline:hover {
  background: white;
  color: var(--primary-color);
}

.event-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

@media (max-width: 768px) {
  .event-banner .event-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .event-banner .event-date {
    margin: 0 auto 15px;
    padding: 10px 15px;
  }
  
  .event-banner .day {
    font-size: 1.8rem;
  }
  
  .event-banner .month {
    font-size: 0.9rem;
  }
  
  .event-banner .event-details h3 {
    font-size: 1.2rem;
  }
}

/* Event Image Styles */
.event-image {
  max-width: 60%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .event-image {
    max-width: 90%;
  }
}

/* Base Styles */
:root {
  --primary-color: #0066cc;  
  --secondary-color: #ffcc00;  
  --dark-blue: #003366;
  --light-blue: #e6f0fa;
  --text-color: #333;
  --light-gray: #f8f9fa;
  --medium-gray: #e9ecef;
  --dark-gray: #495057;
  --white: #ffffff;
  --transition: all 0.3s ease;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--dark-blue);
}

h1 {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

h2 {
  font-size: 2.25rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1rem;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

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

a:hover {
  color: var(--dark-blue);
}

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

ul {
  list-style: none;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 6rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.bg-light {
  background-color: var(--light-gray);
}

.bg-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.bg-primary h2,
.bg-primary h3,
.bg-primary h4,
.bg-primary a {
  color: var(--white);
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
  font-size: 0.9rem;
}

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

.btn-primary:hover {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

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

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

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

.btn-white:hover {
  background-color: transparent;
  color: var(--white);
}

.btn-small {
  padding: 8px 20px;
  font-size: 0.8rem;
}

/* Top Bar */
.top-bar {
  background-color: var(--dark-blue);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.85rem;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
}

.social-icon:hover {
  color: var(--secondary-color);
  transform: translateY(-2px);
}

.top-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-link {
  color: var(--white);
  font-weight: 500;
  transition: var(--transition);
}

.top-link:hover {
  color: var(--secondary-color);
}

/* Header */
.main-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  height: 90px;
  display: flex;
  align-items: center;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}

.logo-container {
  max-width: 800px; /* Increased from 250px */
  margin-right: 10px; /* Increased from 40px */
  display: flex;
  align-items: center;
}

.logo {
  height: 200px; /* Increased from 70px */
  width: auto;
  transition: var(--transition);
  object-fit: contain;
  display: block;
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
  align-items: center;
}

.nav-item {
  margin: 0 14px;  /* Increased from 8px to 14px */
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.nav-link {
  color: var(--text-color);
  font-weight: 600;
  padding: 12px 16px;  /* Slightly reduced horizontal padding */
  border-radius: 4px;
  transition: var(--transition);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;  /* Increased letter spacing */
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
  white-space: nowrap;  /* Prevents text wrapping */
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color);
  background-color: rgba(0, 102, 204, 0.1);
}


/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('images/main photo.jpeg') no-repeat center center/cover;
  color: var(--white);
  padding: 6rem 0 12rem 0; /* Reduced top padding from 12rem to 6rem */
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: flex-start; /* Changed from center to flex-start */
  justify-content: center;
  padding-top: 8vh; /* Added viewport-based top padding */
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem; /* Reduced from 1.5rem */
  color: var(--white);
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-top: 0;
  padding-top: 2rem; /* Added padding to the top */
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 1rem; /* Reduced from 2.5rem */
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 0 20px;
  margin-top: 26rem; /* Increased from 2rem to 4rem */
  padding-top: 1rem; /* Added extra padding-top */
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
  border-top: 4px solid var(--primary-color);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 80px;
  height: 80px;
  background-color: var(--light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--primary-color);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background-color: var(--primary-color);
  color: var(--white);
  transform: rotateY(180deg);
}

/* Events Section */
#events {
  padding: 5rem 0;
  position: relative;
  background-image: url('photo8jpg.jpg') no-repeat center center/cover;
}

#events::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 51, 102, 0.8);
  z-index: 1;
}

#events .container {
  position: relative;
  z-index: 2;
}

#events .section-title {
  color: white;
  position: relative;
}

#events .section-title::after {
  background: var(--secondary-color);
}

#events .event-card {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

#events .event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.event-date {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 100px;
}

.event-date .day {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
}

.event-date .month {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-details {
  padding: 1.5rem;
  flex-grow: 1;
}

.event-details h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.event-details p {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--dark-gray);
}

.event-details .btn-small {
  margin-top: 1rem;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: var(--primary-color);
  transform: translateX(-50%);
}

.timeline-item {
  margin-bottom: 3rem;
  position: relative;
  width: 50%;
  padding: 0 40px;
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-year {
  position: absolute;
  top: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 0 0 5px var(--light-blue);
  z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-year {
  right: -40px;
}

.timeline-item:nth-child(even) .timeline-year {
  left: -40px;
}

.timeline-content {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-content::after {
  content: '';
  position: absolute;
  top: 30px;
  right: -10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent var(--white);
  filter: drop-shadow(2px 0 2px rgba(0, 0, 0, 0.1));
}

.timeline-item:nth-child(even) .timeline-content::after {
  content: '';
  position: absolute;
  top: 30px;
  left: -10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 10px 0;
  border-color: transparent var(--white) transparent transparent;
  filter: drop-shadow(-2px 0 2px rgba(0, 0, 0, 0.1));
}

/* Join Section */
.join-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.join-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.join-content p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 4rem;
  opacity: 0.9;
}

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

.membership-card {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  backdrop-filter: blur(5px);
}

.membership-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.membership-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  position: relative;
  padding-bottom: 1rem;
}

.membership-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: var(--secondary-color);
}

.membership-card p {
  margin-bottom: 2rem;
  font-size: 1rem;
  opacity: 0.9;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  margin-top: 3rem;
}

.contact-info h3,
.contact-form h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.contact-info h3::after,
.contact-form h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.contact-info p {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-info i {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-top: 4px;
}

.contact-info a {
  color: var(--text-color);
  transition: var(--transition);
}

.contact-info a:hover {
  color: var(--primary-color);
  padding-left: 3px;
}

.language-note {
  background-color: var(--light-blue);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin-top: 2rem;
  border-right: 4px solid var(--secondary-color);
}

.language-note i {
  color: var(--primary-color);
  margin-right: 8px;
}

.social-links {
  margin-top: 3rem;
}

.social-links h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--light-blue);
  color: var(--primary-color);
  border-radius: 50%;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1000;
  position: relative;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
  border-radius: 3px;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu Styles */
@media (max-width: 1024px) {
  .mobile-menu-btn {
    display: flex;
  }
  
  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.4s ease-in-out;
    z-index: 999;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding: 2rem 0;
  }
  
  .nav-list.active {
    right: 0;
  }
  
  .nav-item {
    margin: 1rem 0;
    width: 100%;
    text-align: center;
  }
  
  .nav-link {
    font-size: 1.2rem;
    padding: 0.8rem 1.5rem;
    display: block;
    width: 100%;
  }
  
  .menu-open {
    overflow: hidden;
  }
  
  .menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  
  .menu-open::before {
    opacity: 1;
    pointer-events: auto;
  }
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* Footer */
.main-footer {
  background-color: #ffffff;
  color: var(--text-color);
  padding: 5rem 0 2rem;
  border-top: 1px solid #eee;
}

.main-footer a,
.main-footer h4 {
  color: var(--dark-blue);
}

.main-footer .social-icon {
  background-color: var(--light-blue);
  color: var(--primary-color);
}

.main-footer .social-icon:hover {
  background-color: var(--primary-color);
  color: white;
}

.main-footer .newsletter-form input {
  border: 1px solid #ddd;
  color: var(--text-color);
  background-color: #f9f9f9;
}

.main-footer .newsletter-form input::placeholder {
  color: #999;
}

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

.footer-logo img {
  max-width: 180px;
  margin-bottom: 1.5rem;
}

.footer-logo p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-links h4,
.footer-newsletter h4 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-links h4::after,
.footer-newsletter h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--secondary-color);
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #000000;
  transition: var(--transition);
  display: inline-block;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

.footer-newsletter p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.9rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .btn {
  white-space: nowrap;
  padding: 10px 20px;
  font-size: 0.85rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--secondary-color);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .timeline::before {
    left: 40px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 90px;
    padding-right: 0;
  }
  
  .timeline-item:nth-child(even) {
    left: 0;
  }
  
  .timeline-item:nth-child(odd) .timeline-year,
  .timeline-item:nth-child(even) .timeline-year {
    left: 0;
    right: auto;
  }
  
  .timeline-item:nth-child(odd) .timeline-content::after,
  .timeline-item:nth-child(even) .timeline-content::after {
    right: auto;
    left: -10px;
    border-width: 10px 10px 10px 0;
    border-color: transparent var(--white) transparent transparent;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .hero {
    padding: 6rem 0;
  }
  
  .hero h1 {
    font-size: 2.75rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .nav-list {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    padding: 80px 30px 30px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: 1000;
  }
  
  .nav-list.active {
    right: 0;
  }
  
  .nav-item {
    width: 100%;
    border-bottom: 1px solid #eee;
  }
  
  .nav-link {
    display: block;
    padding: 15px 0;
  }
  
  .nav-link::after {
    display: none;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    margin-top: 10px;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero h1 {
    font-size: 2.25rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .membership-options {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form .btn {
    width: 100%;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* Utility Classes */
.mb-0 {
  margin-bottom: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-1 {
  margin-bottom: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 1rem !important;
}

.mb-3 {
  margin-bottom: 1.5rem !important;
}

.mb-4 {
  margin-bottom: 2rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.w-100 {
  width: 100% !important;
}

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

.text-secondary {
  color: var(--secondary-color) !important;
}

.text-white {
  color: var(--white) !important;
}

.bg-dark {
  background-color: var(--dark-blue) !important;
}

.rounded {
  border-radius: var(--border-radius) !important;
}

.shadow {
  box-shadow: var(--box-shadow) !important;
}

.text-uppercase {
  text-transform: uppercase !important;
  letter-spacing: 1px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Print Styles */
@media print {
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
    background: none;
  }
  
  .container {
    width: 100%;
    padding: 0;
  }
  
  .main-header,
  .top-bar,
  .footer,
  .btn,
  .hero {
    display: none !important;
  }
  
  a {
    text-decoration: none;
    color: #000;
  }
  
  .section {
    padding: 1cm 0;
    page-break-inside: avoid;
  }
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }
  
  img {
    max-width: 100% !important;
    height: auto !important;
  }
}

  .event-image {
      max-width: 60%;
      height: auto;
      margin: 20px auto;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    
    .event-title {
      text-align: center;
      margin: 20px 0 15px;
      width: 100%;
    }
    
    @media (max-width: 768px) {
      .event-image {
        max-width: 90%;
      }
      
      .event-title {
        margin: 15px 0 10px;
      }
    }

/* Added temporarily for the event */
.event-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 30px auto;
  overflow: hidden;
  border-radius: 12px;
}

.slides-container {
  display: flex;
  transition: transform 0.4s ease;
  flex-wrap: nowrap;
  width:100%;
  height: 600px;
}

.slides-container img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;    
  object-position: center;
  flex-shrink: 0;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  border: none;
  color: white;
  padding: 12px 18px;
  font-size: 26px;
  cursor: pointer;
  z-index: 20;
  border-radius: 10px;
  backdrop-filter: blur(3px);
  transition: 0.2s ease;
}

.slide-btn:hover {
  background: rgba(0,0,0,0.6);
}

.slide-btn.prev {
  left: 12px;
}

.slide-btn.next {
  right: 12px;
}
