@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --primary: rgb(0, 80, 53);
  --primary-dark: rgb(0, 60, 40);
  --primary-light: rgb(0, 120, 80);
  --accent: #00c97f;
  --dark: #1a1a2e;
  --light: #f8f9fa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

@media (max-width: 968px) {
  html {
    scroll-padding-top: 150px;
  }
}

body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  background: #fff;
  line-height: 1.6;
}

/* ================= NAVBAR ================= */
.navbar-custom {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: var(--primary);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}

.navbar-left {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
}

.navbar-left a {
  color: #fff;
  text-decoration: none;
}

.navbar-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #fff;
}

.search-bar {
  display: flex;
  gap: 0.5rem;
}

.search-bar form {
  display: flex;
  gap: 0.5rem;
}

.search-bar input {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  outline: none;
  width: 200px;
  font-size: 0.9rem;
}

.search-bar input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.search-bar button {
  padding: 0.5rem 1.2rem;
  border: none;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.search-bar button:hover {
  background: rgba(255, 255, 255, 0.35);
}

/* ================= HERO ================= */
.hero {
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.hero .text {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  text-align: center;
  padding: 0 2rem;
  letter-spacing: -1px;
}

/* ================= SECTIONS ================= */
section {
  padding: 4rem 0;
}

h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 2rem;
  letter-spacing: -0.5px;
}

/* ================= ABOUT ================= */
#about {
  background: #fff;
}

#about p {
  color: #444;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

#about p strong {
  color: var(--primary);
  font-weight: 700;
}

/* ================= EVENTS ================= */
#events {
  background: #f8f9fa;
}

.events-card {
  background: #fff;
  padding: 1.8rem;
  border-left: 4px solid var(--primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
  height: 100%;
}

.events-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateX(4px);
}

.events-card h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.events-card p {
  color: #555;
  font-size: 0.95rem;
  margin: 0;
}

/* ================= MEETINGS ================= */
#meetings {
  background: #fff;
}

#meetings p {
  color: #444;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}

#meetings .calendar-buttons {
  display: flex;
  gap: 0.8rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.calendar-btn {
  padding: 0.7rem 1.5rem;
  background: var(--primary);
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  transition: background 0.2s;
}

.calendar-btn:hover {
  background: var(--primary-light);
}

#meetings form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

#meetings input[type="email"] {
  flex: 1;
  padding: 0.7rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  font-size: 0.9rem;
  outline: none;
}

#meetings input[type="email"]:focus {
  border-color: var(--primary);
}

#meetings button {
  padding: 0.7rem 1.5rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s;
}

#meetings button:hover {
  background: var(--primary-light);
}

/* ================= RESOURCES ================= */
#resources {
  background: #f8f9fa;
}

.resource-card {
  background: #fff;
  padding: 1.8rem;
  border-top: 3px solid var(--primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.resource-card h3 {
  font-size: 1.1rem;
  color: var(--dark);
  font-weight: 700;
  margin: 0;
}

.resource-btn {
  padding: 0.6rem 1.2rem;
  background: var(--primary);
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  transition: background 0.2s;
  margin-top: auto;
}

.resource-btn:hover {
  background: var(--primary-light);
}

/* ================= FOOTER ================= */
footer {
  background: var(--dark);
  color: #fff;
  padding: 2rem 0;
  text-align: center;
  font-size: 0.9rem;
}

footer a {
  color: var(--accent);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* ================= MOBILE ================= */
@media (max-width: 968px) {
  .navbar-custom {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
    align-items: stretch;
  }

  .navbar-left {
    text-align: center;
    font-size: 1.2rem;
  }

  .navbar-right {
    align-items: center;
    width: 100%;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .search-bar {
    width: 100%;
    max-width: 400px;
  }

  .search-bar form {
    width: 100%;
  }

  .search-bar input {
    flex: 1;
    width: auto;
  }

  .hero {
    height: 50vh;
  }

  section {
    padding: 3rem 0;
  }
}

/* ================= PRIVACY ================= */
#privacy {
  background: #fff;
}

#privacy h1,
#privacy h2,
#privacy h3 {
  color: var(--primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

#privacy p,
#privacy ul {
  color: #444;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

#privacy ul {
  padding-left: 2rem;
}

#privacy a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

#privacy a:hover {
  text-decoration: underline;
}

/* ================= CONTACT FORM ================= */
#sign-up {
  padding: 4rem 0;
  background: #f8f9fa;
}

#sign-up h2 {
  color: var(--dark);
  margin-bottom: 2.5rem;
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
}

#sign-up form {
  background: #fff;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

#sign-up .form-label {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

#sign-up .form-control,
#sign-up .form-select {
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  transition: all 0.2s;
}

#sign-up .form-control:focus,
#sign-up .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(0, 80, 53, 0.15);
}

#sign-up .btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border: none;
  padding: 0.9rem;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 80, 53, 0.3);
  transition: all 0.3s;
}

#sign-up .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 80, 53, 0.4);
}

@media (max-width: 768px) {
  #sign-up form {
    padding: 1.5rem;
  }
}

.resource-btn[type="button"] {
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}
