:root {
  --primary-blue: #3d84ed;
  --primary-blue-dark: #2b68c4;
  --primary-blue-light: #eaf2ff;
  --white: #ffffff;
  --soft-gray: #f4f6f8;
  --text-dark: #183153;
  --text-muted: #5f6f85;
  --border-light: #d9e3f2;
  --shadow: 0 12px 30px rgba(61, 132, 237, 0.12);
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--soft-gray);
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 55px;
  height: 55px;
}

.brand-text h2 {
  color: var(--primary-blue);
  font-size: 1.4rem;
}

.brand-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

/* NAVIGATION */
.nav-links {
  list-style: none;
  display: flex;
  gap: 18px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--primary-blue-light);
  color: var(--primary-blue);
}

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
  color: var(--white);
  padding: 80px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.hero h1 {
  font-size: 3rem;
  margin: 15px 0;
}

.hero p {
  color: rgba(255, 255, 255, 0.95);
}

.tag {
  background: rgba(255,255,255,0.2);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
}

/* BUTTONS */
.btn-primary,
.btn-secondary {
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

.btn-primary {
  background: var(--primary-blue);
  color: white;
}

.btn-secondary {
  border: 2px solid white;
  color: white;
}

/* HERO CARD FIX (IMPORTANT FIX FOR YOUR ISSUE) */
.hero-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

/* FIX TEXT VISIBILITY */
.hero-card h3,
.hero-card p,
.hero-card li {
  color: var(--text-dark);
}

/* SECTIONS */
.section {
  padding: 70px 0;
}

.alt-section {
  background: var(--primary-blue-light);
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.section-title h2 {
  color: var(--primary-blue);
}

/* CARDS */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 10px;
  color: var(--primary-blue);
}

/* CTA */
.cta-section {
  background: var(--primary-blue-dark);
  color: white;
}

.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* FOOTER */
.site-footer {
  background: white;
  padding: 40px 0;
  border-top: 1px solid var(--border-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.footer-logo {
  width: 80px;
  margin-bottom: 10px;
}

/* CONTACT FORM */
.contact-form {
  display: grid;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
}

/* EVENTS */
.event-date {
  background: var(--primary-blue-light);
  color: var(--primary-blue);
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
}

/* WHATSAPP BUTTON */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 999;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid,
  .cards-3,
  .cards-4,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    flex-direction: column;
    gap: 20px;
  }

  .nav {
    flex-direction: column;
    gap: 10px;
  }
}
.featured-event {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
  align-items: center;
}

.featured-event-image {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.featured-event-content h3 {
  margin: 12px 0;
  color: var(--primary-blue);
}

.featured-event-content p {
  margin-bottom: 10px;
  color: var(--text-dark);
}

@media (max-width: 900px) {
  .featured-event {
    grid-template-columns: 1fr;
  }
}