/* Noula Charity Website Styles */

:root {
  /* Caribbean-inspired colour palette */
  --cream: #FAF6F1;
  --warm-sand: #F5E6D3;
  --coral: #E8724F;
  --gold: #D4AF37;
  --emerald: #2D7961;
  --navy: #1a3a36;
  --text-dark: #2C2C2C;
  --text-light: #4A4A4A;

  /* Madras pattern colours */
  --madras-yellow: #F4D03F;
  --madras-red: #E74C3C;
  --madras-green: #27AE60;

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
  line-height: 1.8;
}

a {
  color: var(--coral);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--emerald);
  text-decoration: underline;
}

/* Navigation (legacy selectors for events.html compat) */
nav:not(.navbar) {
  background-color: white;
  padding: 1rem 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav:not(.navbar) .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1.3rem;
}

.logo-link:hover {
  color: var(--coral);
}

.logo-img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  object-fit: contain;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

nav a {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
}

nav a.active {
  color: var(--coral);
  border-bottom: 3px solid var(--coral);
  padding-bottom: 0.25rem;
}

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--warm-sand) 100%);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: repeating-linear-gradient(
    45deg,
    var(--madras-yellow),
    var(--madras-yellow) 15px,
    transparent 15px,
    transparent 30px
  ),
  repeating-linear-gradient(
    -45deg,
    var(--madras-red),
    var(--madras-red) 15px,
    transparent 15px,
    transparent 30px
  );
  opacity: 0.15;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: repeating-linear-gradient(
    45deg,
    var(--madras-green),
    var(--madras-green) 15px,
    transparent 15px,
    transparent 30px
  );
  opacity: 0.1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: var(--emerald);
  margin-bottom: 1rem;
  font-size: 4rem;
}

.hero-subtitle {
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.hero-tagline {
  font-size: 1.3rem;
  color: var(--coral);
  font-style: italic;
  margin-bottom: 2rem;
  font-weight: 500;
}

/* CTA Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: var(--font-body);
}

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

.btn-primary:hover {
  background-color: var(--emerald);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(232, 114, 79, 0.3);
}

.btn-secondary {
  background-color: var(--emerald);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--coral);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background-color: var(--coral);
  color: white;
  text-decoration: none;
}

/* Sections */
section {
  padding: 5rem 2rem;
}

section.alt {
  background-color: var(--warm-sand);
}

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 3rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--gold));
}

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

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.about-highlights {
  list-style: none;
  margin: 2rem 0;
}

.about-highlights li {
  padding: 1rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-light);
  font-size: 1rem;
}

.about-highlights li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--coral);
  font-size: 1.5rem;
}

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

.event-card {
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(232, 114, 79, 0.2);
}

.event-header {
  background: linear-gradient(135deg, var(--coral), var(--gold));
  color: white;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.event-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255,255,255,0.1) 10px,
    rgba(255,255,255,0.1) 20px
  );
}

.event-date {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.event-title {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  margin: 0;
  position: relative;
  z-index: 1;
}

.event-body {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.event-details {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.event-detail-item {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-light);
}

.event-detail-item strong {
  color: var(--text-dark);
  min-width: 80px;
}

.event-description {
  color: var(--text-light);
  margin-bottom: 2rem;
  flex-grow: 1;
  line-height: 1.8;
  font-size: 0.95rem;
}

.event-host {
  background-color: var(--warm-sand);
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.event-host strong {
  color: var(--emerald);
}

.btn-eventbrite {
  align-self: flex-start;
  margin-top: auto;
}

/* Programme Section */
.programme-header {
  text-align: center;
  margin-bottom: 3rem;
}

.programme-theme {
  font-size: 1.3rem;
  color: var(--coral);
  font-style: italic;
  margin-bottom: 1rem;
}

.programme-subtitle {
  font-size: 1.1rem;
  color: var(--emerald);
  margin-bottom: 2rem;
}

/* Footer */
footer {
  background-color: var(--navy);
  color: white;
  padding: 3rem 2rem 1rem;
  margin-top: 5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-section h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.footer-section p {
  color: rgba(255,255,255,0.8);
}

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

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

.footer-section a {
  color: rgba(255,255,255,0.8);
}

.footer-section a:hover {
  color: var(--gold);
  text-decoration: none;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--coral);
  color: white;
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  color: rgba(255,255,255,0.7);
}

.charity-info {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

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

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.event-card {
  animation: fadeInUp 0.6s ease-out;
}

/* Newsletter in dark sections */
.section-chante-nwel .newsletter-form input[type="email"] {
  background: rgba(255,255,255,0.95);
  border-color: rgba(255,255,255,0.3);
}

.section-chante-nwel .newsletter-email::placeholder {
  color: #888;
}

/* Newsletter input group layout fix */
.newsletter-input-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-input-group .newsletter-email {
  flex: 1;
  min-width: 250px;
  padding: 0.75rem 1rem;
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: 0.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
}

.newsletter-input-group .newsletter-email:focus {
  outline: none;
  border-color: var(--coral);
}

.newsletter-input-group .newsletter-submit {
  padding: 0.75rem 1.5rem;
}

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

  h2 {
    font-size: 2rem;
  }

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

  .hero-tagline {
    font-size: 1.2rem;
  }

  nav ul {
    gap: 1.5rem;
    font-size: 0.9rem;
  }

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

  section {
    padding: 3rem 1.5rem;
  }

  .hero {
    padding: 3rem 1.5rem;
  }

  .hero::before {
    width: 200px;
    height: 200px;
  }

  .footer-content {
    gap: 2rem;
  }

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

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

  .nav-links {
    gap: 1rem;
    font-size: 0.85rem;
  }
}

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

  h2 {
    font-size: 1.5rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  nav ul {
    gap: 1rem;
    font-size: 0.85rem;
  }

  nav .container,
  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }

  .hero {
    padding: 2rem 1rem;
  }

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

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  section {
    padding: 2.5rem 1rem;
  }

  .events-grid {
    gap: 2rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .lang-switch {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Language Switcher */
.lang-switch,
.language-switcher {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.lang-switch button,
.language-switcher button,
.lang-btn {
  background: none;
  border: 2px solid var(--coral);
  color: var(--coral);
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  font-family: var(--font-body);
  transition: all 0.3s ease;
}

.lang-switch button.active,
.language-switcher button.active,
.lang-btn.active {
  background: var(--coral);
  color: white;
}

.lang-switch button:hover,
.language-switcher button:hover,
.lang-btn:hover {
  background: var(--coral);
  color: white;
}

/* Default: hide FR and KR, show EN */
.lang-fr,
.lang-kr {
  display: none;
}

/* Newsletter Form */
.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 500px;
  margin: 1.5rem auto 0;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 250px;
  padding: 0.75rem 1rem;
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: 0.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--coral);
}

.newsletter-form button {
  padding: 0.75rem 1.5rem;
  background: var(--coral);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--emerald);
}

/* Roadmap / Timeline */
.roadmap-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  align-items: flex-start;
}

.roadmap-marker {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--coral), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  font-weight: 700;
  position: relative;
}

.roadmap-marker::after {
  content: '';
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + 1rem);
  background: rgba(0,0,0,0.1);
}

.roadmap-item:last-child .roadmap-marker::after {
  display: none;
}

.roadmap-content h4 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.roadmap-content p {
  color: var(--text-light);
  margin: 0;
  font-size: 0.95rem;
}

/* Chanté Nwel teaser */
.chante-nwel-teaser {
  background: linear-gradient(135deg, var(--navy), #2D4A46);
  color: white;
  padding: 4rem 2rem;
  border-radius: 1rem;
  text-align: center;
}

.chante-nwel-teaser h2,
.chante-nwel-teaser h3 {
  color: var(--gold);
}

.chante-nwel-teaser p {
  color: rgba(255,255,255,0.85);
}

/* Community Hub Section */
.section-community {
  background: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-community::after {
  content: '';
  position: absolute;
  top: -40px;
  left: -40px;
  width: 250px;
  height: 250px;
  background: repeating-linear-gradient(
    45deg,
    var(--madras-red),
    var(--madras-red) 10px,
    transparent 10px,
    transparent 20px
  ),
  repeating-linear-gradient(
    -45deg,
    var(--madras-yellow),
    var(--madras-yellow) 10px,
    transparent 10px,
    transparent 20px
  );
  opacity: 0.05;
  pointer-events: none;
  border-radius: 50%;
}

.community-intro {
  max-width: 750px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
}

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

.hub-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.hub-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(232, 114, 79, 0.15);
  border-bottom-color: var(--coral);
}

.hub-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hub-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--emerald);
}

.hub-card p {
  font-size: 0.95rem;
  margin: 0;
}

/* Mission Points (About section) */
.mission-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mission-points li {
  padding: 1rem 0 1rem 2.5rem;
  position: relative;
  color: var(--text-light);
  font-size: 1.05rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.mission-points li:last-child {
  border-bottom: none;
}

.mission-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, var(--coral), var(--gold));
  border-radius: 50%;
}

/* Partners Section */
.partners-intro {
  max-width: 750px;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

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

.partner-type {
  background: white;
  padding: 2rem;
  border-radius: 0.75rem;
  border-left: 4px solid var(--emerald);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.partner-type h3 {
  font-size: 1.15rem;
  color: var(--emerald);
  margin-bottom: 0.75rem;
}

.partner-type p {
  margin: 0;
  font-size: 0.95rem;
}

/* Chanté Nwel Section Styling */
.section-chante-nwel {
  background: linear-gradient(135deg, var(--navy), #2D4A46);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-chante-nwel::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 250px;
  height: 250px;
  background: repeating-linear-gradient(
    45deg,
    var(--madras-yellow),
    var(--madras-yellow) 10px,
    transparent 10px,
    transparent 20px
  ),
  repeating-linear-gradient(
    -45deg,
    var(--madras-red),
    var(--madras-red) 10px,
    transparent 10px,
    transparent 20px
  );
  opacity: 0.08;
  border-radius: 50%;
  pointer-events: none;
}

.section-chante-nwel .section-title {
  color: var(--gold);
}

.section-chante-nwel .section-title::after {
  background: linear-gradient(90deg, var(--gold), var(--madras-yellow));
}

.section-chante-nwel p,
.chante-nwel-intro {
  color: rgba(255,255,255,0.9);
}

/* Newsletter Section */
.section-newsletter {
  background: linear-gradient(135deg, var(--emerald), #1a5c4a);
  color: white;
  text-align: center;
}

.section-newsletter .section-title {
  color: white;
}

.section-newsletter .section-title::after {
  background: linear-gradient(90deg, var(--gold), var(--madras-yellow));
}

.newsletter-subtitle {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
}

.section-newsletter .newsletter-form input[type="email"] {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.95);
}

/* Support Section */
.support-message {
  max-width: 700px;
  font-size: 1.05rem;
}

/* Caribbean decorative dividers */
.section-divider {
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--madras-yellow) 0px,
    var(--madras-yellow) 20px,
    var(--madras-red) 20px,
    var(--madras-red) 40px,
    var(--madras-green) 40px,
    var(--madras-green) 60px,
    var(--gold) 60px,
    var(--gold) 80px
  );
  border: none;
  margin: 0;
}

/* Madras accent on section titles */
.section-title::after {
  background: repeating-linear-gradient(
    90deg,
    var(--coral) 0px,
    var(--coral) 10px,
    var(--gold) 10px,
    var(--gold) 20px,
    var(--madras-red) 20px,
    var(--madras-red) 30px
  ) !important;
  height: 3px;
  width: 80px;
}

/* Madras corner accents on event cards */
.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: repeating-linear-gradient(
    45deg,
    var(--madras-yellow),
    var(--madras-yellow) 4px,
    transparent 4px,
    transparent 8px
  ),
  repeating-linear-gradient(
    -45deg,
    var(--madras-red),
    var(--madras-red) 4px,
    transparent 4px,
    transparent 8px
  );
  opacity: 0.3;
  border-radius: 0 0.75rem 0 0;
  pointer-events: none;
  z-index: 0;
}

.event-card {
  position: relative;
}

/* Madras border on hub cards on hover */
.hub-card:hover {
  border-bottom: 3px solid transparent;
  border-image: repeating-linear-gradient(
    90deg,
    var(--madras-yellow) 0px,
    var(--madras-yellow) 8px,
    var(--madras-red) 8px,
    var(--madras-red) 16px,
    var(--madras-green) 16px,
    var(--madras-green) 24px
  ) 1;
}

/* Madras top border on footer */
footer {
  border-top: 4px solid transparent;
  border-image: repeating-linear-gradient(
    90deg,
    var(--madras-yellow) 0px,
    var(--madras-yellow) 20px,
    var(--madras-red) 20px,
    var(--madras-red) 40px,
    var(--madras-green) 40px,
    var(--madras-green) 60px,
    var(--gold) 60px,
    var(--gold) 80px
  ) 1;
}

/* Madras pattern overlay on partner section */
.section-partners::before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 200px;
  height: 200px;
  background: repeating-linear-gradient(
    45deg,
    var(--madras-yellow),
    var(--madras-yellow) 10px,
    transparent 10px,
    transparent 20px
  ),
  repeating-linear-gradient(
    -45deg,
    var(--madras-green),
    var(--madras-green) 10px,
    transparent 10px,
    transparent 20px
  );
  opacity: 0.06;
  pointer-events: none;
  border-radius: 50%;
}

.section-partners {
  position: relative;
  overflow: hidden;
}

/* Navbar improvements */
.navbar {
  background-color: white;
  padding: 1rem 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-name h1 {
  font-size: 1.5rem;
  margin: 0;
  color: var(--emerald);
}

.nav-links,
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a,
.nav-menu .nav-link {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.25rem 0;
  position: relative;
}

.nav-links a:hover,
.nav-menu .nav-link:hover {
  color: var(--coral);
  text-decoration: none;
}

.nav-links a::after,
.nav-menu .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-menu .nav-link:hover::after {
  width: 100%;
}

.nav-menu .nav-link.active {
  color: var(--coral);
}

/* Nav logo (events.html compat) */
.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo .logo {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  object-fit: contain;
}

.lang-divider {
  color: var(--coral);
  opacity: 0.4;
  font-size: 0.85rem;
}

/* Donation placeholder */
.donation-notice {
  background: var(--warm-sand);
  border-left: 4px solid var(--coral);
  padding: 1.5rem 2rem;
  border-radius: 0 0.5rem 0.5rem 0;
  margin-top: 1.5rem;
}

.donation-notice p {
  margin: 0;
  color: var(--text-light);
}
