* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Fredoka', sans-serif;
  background: linear-gradient(135deg, #c8e987 0%, #a4df78 50%, #8bd65f 100%);
  color: #1a237e;
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Enhanced Background Patterns */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(209, 242, 90, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(26, 35, 126, 0.1) 0%, transparent 50%),
    linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.05) 50%, transparent 60%),
    linear-gradient(-45deg, transparent 40%, rgba(164, 223, 120, 0.1) 50%, transparent 60%);
  background-size: 400px 400px, 300px 300px, 500px 500px, 100px 100px, 150px 150px;
  background-position: 0 0, 100px 100px, 200px 50px, 0 0, 50px 50px;
  z-index: -2;
  pointer-events: none;
  animation: float 20s ease-in-out infinite;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="20" cy="20" r="1" fill="%23d1f25a" opacity="0.2"/><circle cx="80" cy="30" r="1.5" fill="%23ffffff" opacity="0.15"/><circle cx="30" cy="80" r="1" fill="%23a4df78" opacity="0.2"/></svg>'),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><polygon points="25,5 35,20 15,20" fill="%23ffffff" opacity="0.08"/><polygon points="10,35 20,45 5,45" fill="%23d1f25a" opacity="0.1"/></svg>');
  background-size: 200px 200px, 150px 150px;
  background-position: 0 0, 75px 75px;
  z-index: -1;
  pointer-events: none;
  animation: drift 15s linear infinite;
}

/* Mobile background patterns - smaller and more appropriate */
@media (max-width: 768px) {
  body::before {
    background-size: 150px 150px, 120px 120px, 200px 200px, 50px 50px, 75px 75px;
    background-position: 0 0, 50px 50px, 100px 25px, 0 0, 25px 25px;
  }
  
  body::after {
    background-size: 80px 80px, 60px 60px;
    background-position: 0 0, 30px 30px;
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(1deg); }
  66% { transform: translateY(10px) rotate(-1deg); }
}

@keyframes drift {
  0% { transform: translateX(0px); }
  100% { transform: translateX(100px); }
}

/* Navigation with enhanced styling */
#main-nav {
  background: linear-gradient(135deg, #d0f0b5 0%, #c8e987 100%);
  padding: 15px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 3px solid rgba(26, 35, 126, 0.1);
  transition: transform 0.3s ease;
}

/* Enhanced scroll behavior for all screen sizes */
#main-nav.nav-hidden {
  transform: translateY(-100%) !important;
  transition: transform 0.3s ease !important;
}

/* Hide search bar when navbar is hidden */
#main-nav.nav-hidden .nav-search {
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(-20px) !important;
  transition: all 0.3s ease !important;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  flex-wrap: nowrap;
  gap: 12px;
  height: 80px;
  overflow: visible;
}

/* Prevent navigation overlap */
.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 150px;
}

.nav-brand img {
  height: 60px;
  margin-right: 15px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.nav-brand h1 {
  font-size: 1.5rem;
  color: #1a237e;
  margin: 0;
  text-shadow: 0 1px 2px rgba(255,255,255,0.5);
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
  flex-shrink: 1;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  overflow: visible;
  min-width: 0;
}

.nav-menu a {
  color: #1a237e;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 30px;
  transition: all 0.3s ease;
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(213, 242, 90, 0.3) 100%);
  border: 2px solid rgba(26, 35, 126, 0.15);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  font-size: 0.9rem;
  white-space: nowrap;
  min-width: fit-content;
  backdrop-filter: blur(8px);
}

.nav-menu a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(213, 242, 90, 0.4) 0%, rgba(200, 233, 135, 0.4) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.nav-menu a:hover::before {
  opacity: 1;
}

.nav-menu a:hover,
.nav-menu a.active {
  background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(26, 35, 126, 0.4);
  border-color: rgba(26, 35, 126, 0.8);
}

/* Hamburger Menu Styles */
.hamburger-toggle {
  display: none;
  flex-direction: column;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-left: 10px;
  z-index: 1001;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: #1a237e;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.hamburger-menu {
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  right: -10px;
  background: linear-gradient(135deg, #d0f0b5 0%, #c8e987 100%);
  border: 3px solid rgba(26, 35, 126, 0.1);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  min-width: 200px;
  z-index: 1002; /* Higher than other elements */
  transform-origin: top right;
  max-width: 250px;
  white-space: nowrap;
}

.hamburger-menu.active {
  display: block;
}

.hamburger-menu ul {
  list-style: none;
  margin: 0;
  padding: 15px 0;
}

.hamburger-menu li {
  margin: 0;
}

.hamburger-menu a {
  display: block;
  color: #1a237e;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 20px;
  transition: all 0.3s ease;
  border-radius: 0;
  background: transparent;
  border: none;
}

.hamburger-menu a:hover,
.hamburger-menu a.active {
  background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
  color: white;
  transform: none;
  box-shadow: none;
}

/* Navigation layout adjustments - removed duplicate */

/* Container for hamburger toggle and menu */
.hamburger-container {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 8px;
  visibility: visible !important;
  opacity: 1 !important;
  min-width: 50px;
  min-height: 50px;
  padding: 5px;
}

/* Dynamic responsive navigation - hamburger shows when needed */
.hamburger-toggle {
  display: flex !important; /* Force visible for debugging */
  position: relative;
  z-index: 1001; /* Ensure hamburger is above other elements */
  visibility: visible !important;
  opacity: 1 !important;
  transition: all 0.3s ease;
}

/* Enforce maximum 4 items at all screen sizes */
.nav-menu li:nth-child(n+5) {
  display: none !important;
}

.hamburger-toggle.show {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Responsive navigation with overlap prevention */
@media (max-width: 1200px) {
  /* Show only first 3 nav items on medium screens */
  .nav-menu li:nth-child(n+4) {
    display: none !important;
  }
  
  .nav-container {
    padding: 0 15px;
    gap: 10px;
  }
  
  .nav-menu {
    gap: 6px;
  }
  
  /* Force hamburger to show when items are hidden */
  .hamburger-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

@media (max-width: 900px) {
  /* Show only first 2 nav items */
  .nav-menu li:nth-child(n+3) {
    display: none !important;
  }
  
  .nav-container {
    padding: 0 12px;
    gap: 8px;
  }
  
  .nav-brand h1 {
    font-size: 1.4rem;
  }
  
  .nav-menu a {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
  
  /* Force hamburger to show when items are hidden */
  .hamburger-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

@media (max-width: 650px) {
  /* Show only first nav item */
  .nav-menu li:nth-child(n+2) {
    display: none !important;
  }
  
  .nav-container {
    padding: 0 10px;
    gap: 6px;
    justify-content: space-between;
  }
  
  .nav-menu a {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
  
  /* Force hamburger to show when items are hidden */
  .hamburger-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

/* Full hamburger mode for very small screens */
@media (max-width: 480px) {
  /* Hide all nav items, show everything in hamburger */
  .nav-menu li {
    display: none !important;
  }
  
  .nav-container {
    justify-content: space-between;
    padding: 0 8px;
    gap: 8px;
    height: 70px;
  }
  
  .nav-brand {
    flex-shrink: 0;
    min-width: auto;
  }
  
  .nav-brand h1 {
    font-size: 1.2rem;
  }
  
  .nav-search {
    min-width: auto;
    flex-shrink: 0;
    order: 2;
  }
  
  .hamburger-container {
    order: 1;
    margin-left: 0;
    margin-right: 8px;
  }
  
  /* Absolutely force hamburger to show on very small screens */
  .hamburger-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

/* Ensure main nav has proper positioning and z-index */
#main-nav {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1000 !important;
  transition: transform 0.3s ease-in-out !important;
  background: linear-gradient(135deg, #d0f0b5 0%, #c8e987 100%);
  width: 100% !important;
  transform: translateY(0) !important; /* Default visible state */
}

/* Enhanced nav-hidden class for proper hiding */
#main-nav.nav-hidden {
  transform: translateY(-100%) !important;
}

/* Mobile responsive adjustments */
@media (max-width: 1024px) {
  .hamburger-menu {
    right: 0;
    min-width: 180px;
  }
}

@media (max-width: 768px) {
  .hamburger-menu {
    right: 0;
    left: auto;
    min-width: 160px;
    max-width: 200px;
  }
  
  .nav-container {
    padding: 0 15px;
  }
  
  /* Ensure body has proper top padding to account for fixed nav */
  body {
    padding-top: 120px !important;
  }
}

/* Ensure proper body padding for all screen sizes */
body {
  padding-top: 120px; /* Account for fixed nav height */
}

.nav-search {
  position: relative;
  z-index: 1000;
  flex-shrink: 0;
  min-width: 120px;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.search-form {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-search-input {
  padding: 8px 12px;
  border: 2px solid rgba(26, 35, 126, 0.3);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  color: #1a237e;
  font-size: 14px;
  width: 100px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.nav-search-input:focus {
  outline: none;
  border-color: #1a237e;
  width: 120px;
  box-shadow: 0 2px 8px rgba(26, 35, 126, 0.2);
}

.nav-search-input::placeholder {
  color: rgba(26, 35, 126, 0.6);
}

.nav-search-button {
  background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.nav-search-button:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(26, 35, 126, 0.3);
}

.site-search-results {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 2px solid rgba(26, 35, 126, 0.2);
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  max-width: 400px;
  width: 300px;
  max-height: 400px;
  overflow-y: auto;
  z-index: 1001;
  display: none;
}

.site-search-results h3 {
  margin: 0;
  padding: 15px;
  background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
  color: white;
  font-size: 1rem;
  border-radius: 8px 8px 0 0;
}

.search-result-item {
  padding: 12px 15px;
  border-bottom: 1px solid rgba(26, 35, 126, 0.1);
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-title {
  color: #1a237e;
  font-weight: bold;
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
}

.search-result-title:hover {
  color: #3949ab;
}

.search-result-page {
  font-size: 12px;
  color: #666;
  margin-bottom: 5px;
}

.search-result-excerpt {
  font-size: 13px;
  color: #555;
  line-height: 1.3;
}

/* Main Content with enhanced visual appeal */
.main {
  padding: 100px 30px;
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

.main::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(209, 242, 90, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.3; }
  50% { transform: translateX(-50%) scale(1.1); opacity: 0.5; }
}

.main h1 {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(255,255,255,0.3);
  background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  font-size: 1.4rem;
  margin-bottom: 40px;
  opacity: 0.9;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.8);
  padding: 15px 30px;
  border-radius: 30px;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-buttons {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  padding: 15px 30px;
  border: 3px solid #1a237e;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

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

.cta-button:hover::before {
  left: 100%;
}

.cta-button.primary {
  background: linear-gradient(135deg, #d5f25a 0%, #c8e987 100%);
  color: #1a237e;
  box-shadow: 0 4px 15px rgba(213, 242, 90, 0.4);
}

.cta-button.primary:hover {
  background: linear-gradient(135deg, #c8e987 0%, #b2dd4f 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(213, 242, 90, 0.6);
}

.cta-button.secondary {
  background: rgba(255, 255, 255, 0.9);
  color: #1a237e;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-button.secondary:hover {
  background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(26, 35, 126, 0.4);
}

/* Enhanced Sections with patterns */
section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
  margin: 50px auto;
  padding: 50px;
  max-width: 1000px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
  border: 2px solid rgba(209, 242, 90, 0.3);
  overflow: hidden;
}

section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #d5f25a 0%, #c8e987 50%, #a4df78 100%);
}

section::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 100px;
  height: 100px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="30" fill="none" stroke="%23d1f25a" stroke-width="2" opacity="0.3"/><circle cx="50" cy="50" r="20" fill="none" stroke="%23a4df78" stroke-width="1" opacity="0.4"/><circle cx="50" cy="50" r="10" fill="%23c8e987" opacity="0.2"/></svg>');
  background-size: contain;
  z-index: -1;
}

.intro-section::after {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50,20 L60,40 L80,40 L65,55 L70,75 L50,62 L30,75 L35,55 L20,40 L40,40 Z" fill="%23d1f25a" opacity="0.3"/></svg>');
}

.fundraiser-section {
  background: linear-gradient(135deg, rgba(209, 242, 90, 0.2) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.fundraiser-section::after {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50,10 Q70,30 50,50 Q30,30 50,10" fill="%23a4df78" opacity="0.2"/><circle cx="50" cy="70" r="15" fill="%23c8e987" opacity="0.3"/></svg>');
}

section h2 {
  font-size: 2.3rem;
  margin-bottom: 25px;
  text-align: center;
  background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(255,255,255,0.3);
}

section p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 25px;
  text-align: center;
}

/* Enhanced Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  margin-top: 40px;
}

.feature-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(209, 242, 90, 0.1) 100%);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  border: 2px solid rgba(164, 223, 120, 0.3);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(209, 242, 90, 0.1) 0%, transparent 70%);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.feature-card:hover::before {
  transform: rotate(45deg) scale(1.1);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.feature-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

/* Social Media Section Enhancement */
.social-media {
  background: linear-gradient(135deg, rgba(164, 223, 120, 0.2) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.social-media::after {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="20" y="20" width="15" height="15" fill="%23d1f25a" opacity="0.3" rx="3"/><rect x="45" y="30" width="10" height="10" fill="%23a4df78" opacity="0.4" rx="2"/><rect x="65" y="25" width="12" height="12" fill="%23c8e987" opacity="0.3" rx="2"/></svg>');
}

/* Enhanced Social Media */
.social-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(209, 242, 90, 0.1) 100%);
  color: #1a237e;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid rgba(164, 223, 120, 0.3);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-link:hover::before {
  opacity: 1;
}

.social-link:hover {
  background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(26, 35, 126, 0.3);
}

.social-link span {
  font-size: 1.2rem;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

/* Enhanced Forms */
form {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(209, 242, 90, 0.05) 100%);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(164, 223, 120, 0.3);
}

form input,
form textarea,
form select {
  width: 100%;
  padding: 15px;
  margin-top: 8px;
  margin-bottom: 25px;
  border: 2px solid rgba(164, 223, 120, 0.4);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
  box-sizing: border-box;
}

/* Checkbox alignment and accessibility improvements */
form input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
  margin-bottom: 0;
  vertical-align: middle;
  transform: scale(1.2);
}

form input[type="checkbox"] + label {
  display: inline;
  margin-left: 5px;
  vertical-align: middle;
  line-height: 1.5;
}

form input:focus,
form textarea:focus,
form select:focus {
  outline: none;
  border-color: #d5f25a;
  box-shadow: 0 0 0 3px rgba(213, 242, 90, 0.3);
  transform: translateY(-1px);
}

form label {
  font-weight: bold;
  color: #1a237e;
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

form input[type="submit"] {
  background: linear-gradient(135deg, #d5f25a 0%, #c8e987 100%);
  color: #1a237e;
  border: 3px solid #1a237e;
  cursor: pointer;
  font-weight: bold;
  padding: 15px 35px;
  transition: all 0.3s ease;
  border-radius: 30px;
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
}

form input[type="submit"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s ease;
}

form input[type="submit"]:hover::before {
  left: 100%;
}

form input[type="submit"]:hover {
  background: linear-gradient(135deg, #c8e987 0%, #b2dd4f 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(213, 242, 90, 0.4);
}

/* Enhanced Calendar */
.calendar {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(209, 242, 90, 0.1) 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  border: 2px solid rgba(164, 223, 120, 0.3);
  position: relative;
}

.calendar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #d5f25a 0%, #c8e987 50%, #a4df78 100%);
}

.calendar-header {
  background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
  color: white;
  padding: 25px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  position: relative;
}

.calendar-header::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 10px solid #3949ab;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  padding: 20px;
}

.calendar-day {
  padding: 15px 10px;
  background: rgba(255, 255, 255, 0.8);
  min-height: 100px;
  position: relative;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid rgba(164, 223, 120, 0.2);
}

.calendar-day:hover {
  background: rgba(209, 242, 90, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.calendar-day-header {
  background: linear-gradient(135deg, #d5f25a 0%, #c8e987 100%);
  font-weight: bold;
  text-align: center;
  padding: 12px;
  color: #1a237e;
  text-shadow: 0 1px 2px rgba(255,255,255,0.5);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(213, 242, 90, 0.3);
}

.calendar-event {
  background: linear-gradient(135deg, #d5f25a 0%, #c8e987 100%);
  color: #1a237e;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 0.85rem;
  margin: 3px 0;
  font-weight: bold;
  border: 1px solid rgba(26, 35, 126, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.calendar-event:hover {
  background: linear-gradient(135deg, #c8e987 0%, #b2dd4f 100%);
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(213, 242, 90, 0.4);
}

/* Enhanced Footer */
footer {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(209, 242, 90, 0.1) 100%);
  margin-top: 80px;
  position: relative;
  z-index: 1;
  border-top: 5px solid rgba(164, 223, 120, 0.4);
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="5" fill="%23d1f25a" opacity="0.2"/><circle cx="80" cy="30" r="3" fill="%23a4df78" opacity="0.3"/><circle cx="50" cy="70" r="4" fill="%23c8e987" opacity="0.25"/></svg>');
  background-size: 300px 100px;
  background-repeat: repeat-x;
  z-index: -1;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  position: relative;
}

.footer-section {
  background: rgba(255, 255, 255, 0.8);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border: 2px solid rgba(164, 223, 120, 0.2);
  transition: transform 0.3s ease;
}

.footer-section:hover {
  transform: translateY(-5px);
}

.footer-section h3 {
  color: #1a237e;
  margin-bottom: 20px;
  font-size: 1.4rem;
  background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-section ul li a {
  color: #1a237e;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 8px;
  display: inline-block;
  font-weight: 500;
}

.footer-section ul li a:hover {
  background: linear-gradient(135deg, #d5f25a 0%, #c8e987 100%);
  color: #1a237e;
  transform: translateX(5px);
}

.footer-bottom {
  background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
  color: white;
  text-align: center;
  padding: 25px;
  font-weight: bold;
  font-size: 1.1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  position: relative;
}

.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d5f25a 0%, #c8e987 50%, #a4df78 100%);
}

/* Enhanced Leadership Cards */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.leader-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(209, 242, 90, 0.1) 100%);
  border-radius: 20px;
  padding: 35px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  border: 2px solid rgba(164, 223, 120, 0.3);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leader-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #d5f25a 0%, #c8e987 50%, #a4df78 100%);
}

.leader-card::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 80px;
  height: 80px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="25" fill="none" stroke="%23d1f25a" stroke-width="2" opacity="0.3"/><circle cx="50" cy="50" r="15" fill="%23c8e987" opacity="0.2"/></svg>');
  background-size: contain;
  z-index: -1;
}

.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.leader-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #d5f25a 0%, #c8e987 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: #1a237e;
  box-shadow: 0 8px 25px rgba(213, 242, 90, 0.4);
  border: 4px solid rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 1;
}

.leader-card h3 {
  color: #1a237e;
  margin-bottom: 12px;
  font-size: 1.4rem;
  background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.leader-title {
  color: #666;
  font-style: italic;
  margin-bottom: 20px;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.8);
  padding: 8px 16px;
  border-radius: 15px;
  display: inline-block;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: row !important; /* Keep logo and menu on same row */
    gap: 10px;
    padding: 0 15px;
    justify-content: space-between;
    align-items: center;
    height: auto;
    min-height: 70px;
  }
  
  .nav-brand {
    flex-shrink: 0;
    order: 1;
  }
  
  .nav-brand img {
    height: 50px !important;
  }
  
  .nav-brand h1 {
    font-size: 1.2rem !important;
  }
  
  .nav-menu {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 5px;
    flex: 1;
    order: 2;
    overflow: hidden;
  }
  
  .nav-menu li {
    margin: 2px;
  }
  
  .nav-menu a {
    padding: 8px 12px;
    font-size: 12px;
    white-space: nowrap;
    border-radius: 20px;
  }
  
  .hamburger-container {
    order: 3;
    flex-shrink: 0;
  }
  
  .hamburger-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  /* Force hamburger to show on mobile regardless of other rules */
  .hamburger-toggle.show,
  .hamburger-container .hamburger-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .nav-search {
    order: 4;
    flex-shrink: 0;
    width: auto;
    max-width: 150px;
  }
  
  .nav-search-input {
    width: 80px;
    font-size: 12px;
  }
  
  .nav-search-input:focus {
    width: 120px;
  }
  
  .site-search-results {
    width: 250px;
    right: -20px;
  }
  
  /* Enhanced navbar positioning for mobile */
  #main-nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    transition: transform 0.3s ease !important;
    transform: translateY(0) !important;
  }
  
  /* Ensure body has proper top padding to account for fixed nav */
  body {
    padding-top: 90px !important;
  }
  
  .main {
    padding: 40px 20px;
  }
  
  .main h1 {
    font-size: 2rem;
  }
  
  section {
    margin: 20px;
    padding: 25px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .social-links {
    flex-direction: column;
    align-items: center;
  }
  
  .calendar-day {
    min-height: 80px;
    padding: 10px 5px;
  }
} 