/* style.css - UPDATED VERSION */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Lato:wght@600&family=Open+Sans&family=Playfair+Display:wght@400;700&display=swap');

:root {
  --maroon: #7B1F3B;
  --gold: #F2C94C;
  --coral: #F28C82;
  --charcoal: #333;
  --offwhite: #FAF9F6;
  --sand: #F7F3EF;
  --light-gray: #f8f9fa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--offwhite);
  color: var(--charcoal);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.navbar {
  background: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  color: var(--maroon);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.navbar a {
  text-decoration: none;
  color: var(--charcoal);
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s;
  padding: 0.5rem 0;
  position: relative;
}

.navbar a:hover {
  color: var(--maroon);
}

.navbar a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}

.navbar a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(123, 31, 59, 0.85), rgba(123, 31, 59, 0.9));
  color: white;
  text-align: center;
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(242, 201, 76, 0.1)"/></svg>');
  background-size: cover;
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  position: relative;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero > p {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero .tagline {
  font-style: italic;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin: 2rem auto 3rem;
  color: var(--gold);
}

/* Section Styles */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  color: var(--maroon);
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--gold);
  margin: 1rem auto;
  border-radius: 2px;
}

.section p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* Grid & Cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 5px solid var(--gold);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.testimonial {
  background: linear-gradient(135deg, var(--coral), #f5a99c);
  color: #000;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  padding: 2rem;
  border-radius: 15px;
}

.testimonial img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid white;
}

/* Buttons */
.btn {
  display: inline-block;
  margin: 0.5rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  text-align: center;
  min-width: 180px;
  border: none;
  cursor: pointer;
}

.btn.primary {
  background: var(--gold);
  color: #000;
  box-shadow: 0 4px 15px rgba(242, 201, 76, 0.3);
}

.btn.secondary {
  background: var(--maroon);
  color: white;
  box-shadow: 0 4px 15px rgba(123, 31, 59, 0.3);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  opacity: 0.95;
}

/* Get Involved Section */
.get-involved {
  background: linear-gradient(rgba(123, 31, 59, 0.9), rgba(123, 31, 59, 0.95));
  color: white;
  text-align: center;
  position: relative;
}

.get-involved h2 {
  color: white;
}

.get-involved h2::after {
  background: var(--gold);
}

/* Partners Section */
.partners .logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 2rem;
}

.partners .logos img {
  max-height: 70px;
  max-width: 200px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s;
}

.partners .logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Form Styles */
form {
  max-width: 600px;
  margin: 2rem auto;
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

input, textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

/* Footer */
footer {
  background: var(--charcoal);
  color: white;
  text-align: center;
  padding: 3rem 2rem;
  margin-top: auto;
}

footer p {
  margin: 0.5rem 0;
  opacity: 0.9;
}

/* Initiative Cards */
.initiative-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.initiative-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  border-left: 5px solid var(--maroon);
}

.initiative-card h3 {
  color: var(--maroon);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.team-member {
  text-align: center;
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.team-member h3 {
  color: var(--maroon);
  margin: 1rem 0 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  
  .navbar ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .section {
    padding: 3rem 1rem;
  }
  
  .section h2 {
    font-size: 2rem;
  }
  
  .btn {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0.5rem auto;
  }
  
  .grid {
    grid-template-columns: 1fr;
  }
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card, .initiative-card, .team-member {
  animation: fadeIn 0.6s ease-out;
}