/* Community Council Color Overrides */
:root {
  --dcc-forest-green: #2d7f3e;
  --dcc-forest-green-dark: #245f31;
  --dcc-light-green: #7ab342;
  --dcc-light-green-dark: #689635;
  --dcc-medium-green: #4a9b59;
  --dcc-cream: #f8f7f4;
  --dcc-green-tint: #f0f7f2;
  --dcc-leaf-pattern: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 10c0 11.046-8.954 20-20 20M30 10c0 11.046 8.954 20 20 20' stroke='%237AB342' stroke-width='0.5' fill='none' opacity='0.1'/%3E%3C/svg%3E");
}

/* Override primary colors for DCC pages */
.dcc-navbar,
.dcc-footer {
  --primary-color: var(--dcc-forest-green);
  --primary-hover: var(--dcc-forest-green-dark);
  --secondary-color: var(--dcc-light-green);
  --accent-color: var(--dcc-medium-green);
}

/* Navbar Overrides */
.dcc-navbar {
  background-color: var(--dcc-forest-green);
  box-shadow: 0 2px 10px rgba(45, 127, 62, 0.1);
}

.dcc-navbar .nav-menu a {
  color: white;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.dcc-navbar .nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--dcc-light-green) !important;
  transition: width 0.3s ease;
}

.dcc-navbar .nav-menu a:hover {
  color: var(--dcc-light-green);
}

.dcc-navbar .nav-menu a:hover::after {
  width: 100%;
}

.dcc-navbar .nav-brand {
  position: relative;
}

.dcc-navbar .nav-brand img {
  height: 50px;
  width: auto;
  background-color: white;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dcc-navbar .back-to-main {
  background-color: rgba(122, 179, 66, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  margin-left: 1rem;
  transition: all 0.3s ease;
}

.dcc-navbar .back-to-main:hover {
  background-color: rgba(122, 179, 66, 0.3);
  transform: translateY(-1px);
}

/* Mobile Menu Toggle Override */
.dcc-navbar .mobile-menu-toggle span {
  background-color: white;
}

/* Mobile Menu Colors */
.dcc-navbar .nav-menu.active {
  background-color: var(--dcc-forest-green);
}

/* Ensure hamburger toggle is visible when menu is open */
.dcc-navbar .mobile-menu-toggle {
  z-index: 1001;
  position: relative;
}

.dcc-navbar .mobile-menu-toggle.active {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 5px;
}

/* Hero Section Overrides */
.dcc-hero {
  background-image: url("../images/town/town-square-aerial.jpg");
  background-position: center center;
  background-size: cover;
}

.dcc-hero .hero-overlay {
  background: linear-gradient(135deg, rgba(45, 127, 62, 0.85) 0%, rgba(122, 179, 66, 0.75) 100%);
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--dcc-leaf-pattern);
  background-repeat: repeat;
  opacity: 0.2;
  animation: floatPattern 20s ease-in-out infinite;
  pointer-events: none;
}

@keyframes floatPattern {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-10px) translateX(5px);
  }
  50% {
    transform: translateY(5px) translateX(-5px);
  }
  75% {
    transform: translateY(-5px) translateX(10px);
  }
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.dcc-hero .cta-button {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.dcc-hero .cta-button.primary {
  background-color: white;
  color: var(--dcc-forest-green);
  border-color: white;
}

.dcc-hero .cta-button.primary:hover {
  background-color: transparent;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.dcc-hero .cta-button.secondary {
  background-color: transparent;
  color: white;
  border-color: white;
}

.dcc-hero .cta-button.secondary:hover {
  background-color: white;
  color: var(--dcc-forest-green);
  transform: translateY(-2px);
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* Section Headers */
section h2 {
  color: var(--dcc-forest-green);
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  padding-bottom: 1.5rem;
}

section h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--dcc-forest-green) 0%,
    var(--dcc-light-green) 100%
  );
  border-radius: 2px;
}

/* About Section Enhancements */
.about-section {
  background: linear-gradient(180deg, white 0%, var(--dcc-green-tint) 100%);
  position: relative;
}

.lead-text {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--dcc-forest-green);
  font-weight: 500;
}

.mission-statement {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(45, 127, 62, 0.1);
  margin-bottom: 2rem;
  border-left: 5px solid var(--dcc-light-green);
}

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

.value-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 3px solid var(--dcc-light-green);
  text-align: center;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(45, 127, 62, 0.15);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.value-card h4 {
  color: var(--dcc-forest-green);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

/* Services Section Modern Design */
.services-section {
  padding: 5rem 0;
  background: var(--dcc-cream);
}

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

.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--dcc-forest-green) 0%,
    var(--dcc-light-green) 100%
  );
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(45, 127, 62, 0.15);
}

.service-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, white 0%, var(--dcc-green-tint) 100%);
  border: 2px solid var(--dcc-light-green);
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--dcc-light-green);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.service-card h3 {
  color: var(--dcc-forest-green);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.service-card li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #555;
}

.service-card li::before {
  content: "🌱";
  position: absolute;
  left: 0;
  font-size: 0.875rem;
}

.service-link {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--dcc-forest-green);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: var(--dcc-light-green);
  transform: translateX(5px);
}

/* Community Garden Section */
.garden-section {
  background: linear-gradient(
    180deg,
    white 0%,
    var(--dcc-green-tint) 50%,
    white 100%
  );
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.garden-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background-image: var(--dcc-leaf-pattern);
  opacity: 0.05;
  transform: rotate(-15deg);
}

.garden-header {
  text-align: center;
  margin-bottom: 4rem;
}

.garden-tagline {
  font-size: 1.25rem;
  color: var(--dcc-medium-green);
  font-style: italic;
  margin-top: -2rem;
}

.garden-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: center;
}

.garden-image-placeholder {
  height: 400px;
  background-image: url("../images/town/modern-community-center.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.image-overlay {
  background: rgba(0, 0, 0, 0.3);
  color: white;
  padding: 1rem 2rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.garden-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dcc-forest-green);
}

.stat-label {
  font-size: 0.875rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.programs-title {
  text-align: center;
  color: var(--dcc-forest-green);
  margin-bottom: 3rem;
  margin-top: 3rem;
  font-size: 2rem;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.program-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  text-align: center;
}

@media (max-width: 768px) {
  .programs-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.program-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(45, 127, 62, 0.15);
}

.program-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.garden-cta {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  margin-top: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* Events Section */
.events-section {
  padding: 5rem 0;
  background: white;
}

.featured-event {
  background: linear-gradient(
    135deg,
    var(--dcc-forest-green) 0%,
    var(--dcc-medium-green) 100%
  );
  color: white;
  padding: 3rem;
  border-radius: 20px;
  margin-bottom: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  box-shadow: 0 10px 30px rgba(45, 127, 62, 0.3);
}

.featured-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.featured-event h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.event-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(5px);
}

.detail {
  font-size: 1.05rem;
}

.featured-event .cta-button {
  background: white;
  color: var(--dcc-forest-green);
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.featured-event .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.featured-event-image {
  position: relative;
}

.image-placeholder {
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

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

.event-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  display: flex;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(45, 127, 62, 0.12);
}

.event-date {
  background: var(--dcc-forest-green);
  color: white;
  padding: 2rem 1.5rem;
  text-align: center;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.event-month {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.9;
  font-weight: 600;
}

.event-day {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 0.25rem;
}

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

.event-content h3 {
  color: var(--dcc-forest-green);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.event-time {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.event-location {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.event-content p:not(.event-time):not(.event-location) {
  color: #555;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}

.dcc-event .event-link {
  color: var(--dcc-forest-green);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  margin-top: auto;
}

.dcc-event .event-link::after {
  content: "→";
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.dcc-event .event-link:hover {
  color: var(--dcc-light-green);
}

.dcc-event .event-link:hover::after {
  transform: translateX(3px);
}

/* Get Involved Section */
.get-involved-section {
  background: var(--dcc-green-tint);
  padding: 5rem 0;
}

.involvement-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.involvement-card {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefits-list {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.benefit {
  display: flex;
  gap: 1.5rem;
  align-items: start;
}

.benefit-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.benefit h4 {
  color: var(--dcc-forest-green);
  margin-bottom: 0.5rem;
}

.involvement-options {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.option-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.option-card.special {
  background: linear-gradient(135deg, white 0%, var(--dcc-green-tint) 100%);
  border: 2px solid var(--dcc-light-green);
}

.welcome-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--dcc-forest-green);
  font-weight: 600;
  text-decoration: none;
}

.welcome-link:hover {
  color: var(--dcc-light-green);
  text-decoration: underline;
}

/* Volunteer Testimonials */
.volunteer-testimonials {
  margin-top: 4rem;
  margin-bottom: 4rem;
  padding: 3rem 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--dcc-green-tint) 50%,
    transparent 100%
  );
}

.volunteer-testimonials h3 {
  text-align: center;
  color: var(--dcc-forest-green);
  font-size: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.volunteer-testimonials h3::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--dcc-light-green);
}

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

.testimonial {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  position: relative;
  transition: all 0.3s ease;
  border-top: 3px solid var(--dcc-light-green);
}

.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(45, 127, 62, 0.12);
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  font-size: 3.5rem;
  color: var(--dcc-light-green);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  font-style: normal;
}

.testimonial cite {
  color: var(--dcc-forest-green);
  font-weight: 600;
  font-style: normal;
  display: block;
  font-size: 0.9rem;
  opacity: 0.9;
}

.join-cta {
  background: white;
  padding: 4rem 3rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--dcc-light-green);
}

.join-cta::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    var(--dcc-light-green) 0%,
    transparent 70%
  );
  opacity: 0.05;
}

.join-cta h3 {
  color: var(--dcc-forest-green);
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.join-cta p {
  color: #555;
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button.large {
  padding: 1.25rem 3rem;
  font-size: 1.1rem;
}

/* Partners Section */
.partners-section {
  padding: 5rem 0;
  background: white;
}

.partners-grid {
  display: grid;
  gap: 3rem;
  margin-top: 3rem;
}

.partner-category {
  text-align: center;
}

.partner-category h3 {
  color: var(--dcc-forest-green);
  margin-bottom: 2rem;
}

.partner-logos {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.partner-item {
  background: var(--dcc-cream);
  padding: 2rem;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.partner-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(45, 127, 62, 0.1);
}

.partner-item img {
  height: 60px;
  object-fit: contain;
}

.partner-placeholder {
  padding: 1rem 2rem;
  color: var(--dcc-forest-green);
  font-weight: 500;
}

/* News Section */
.news-section {
  background: var(--dcc-cream);
  padding: 5rem 0;
}

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

.news-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(45, 127, 62, 0.12);
}

.news-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: auto;
}

.featured .news-image {
  height: 100%;
  min-height: 300px;
}

.featured .news-content {
  padding: 3rem;
}

.news-image {
  height: 200px;
  background: var(--dcc-green-tint);
  position: relative;
  overflow: hidden;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  position: relative;
}

.before-after::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.before,
.after {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.before {
  background: #757575;
}

.after {
  background: var(--dcc-forest-green);
}

.news-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}

.news-category {
  display: inline-flex;
  align-items: center;
  background: var(--dcc-light-green);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-card h3 {
  color: var(--dcc-forest-green);
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
}

.news-link {
  color: var(--dcc-forest-green);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  transition: all 0.3s ease;
}

.news-link::after {
  content: "→";
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.news-link:hover {
  color: var(--dcc-light-green);
}

.news-link:hover::after {
  transform: translateX(3px);
}

.volunteer-spotlight {
  background: linear-gradient(135deg, white 0%, var(--dcc-green-tint) 100%);
  border: none;
  position: relative;
  overflow: hidden;
}

.volunteer-spotlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--dcc-forest-green) 0%,
    var(--dcc-light-green) 100%
  );
}

.spotlight-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.spotlight-badge {
  background: var(--dcc-forest-green);
  color: white;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Resources Section */
.resources-section {
  padding: 5rem 0;
}

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

.resource-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--dcc-light-green);
}

.resource-card h3 {
  color: var(--dcc-forest-green);
  margin-bottom: 1.5rem;
}

.resource-card ul {
  list-style: none;
  padding: 0;
}

.resource-card li {
  padding: 0.5rem 0;
}

.resource-card a {
  color: var(--dcc-medium-green);
  text-decoration: none;
  transition: all 0.3s ease;
}

.resource-card a:hover {
  color: var(--dcc-forest-green);
  text-decoration: underline;
}

.view-all {
  display: inline-block;
  margin-top: 1rem;
  color: var(--dcc-forest-green);
  font-weight: 600;
  text-decoration: none;
}

.view-all:hover {
  color: var(--dcc-light-green);
  transform: translateX(3px);
}

/* Contact Section */
.contact-section {
  background: var(--dcc-green-tint);
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-card {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: fit-content;
  margin-bottom: 2rem;
}

.contact-details {
  margin: 2rem 0;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
}

.contact-item > div {
  flex: 1;
  min-width: 0;
}

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

.contact-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.contact-item strong {
  color: var(--dcc-forest-green);
  display: block;
  margin-bottom: 0.5rem;
}

.contact-item a {
  color: var(--dcc-medium-green);
  text-decoration: none;
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
}

.contact-item a:hover {
  color: var(--dcc-forest-green);
  text-decoration: underline;
}

.quick-contact {
  background: var(--dcc-green-tint);
  padding: 2rem;
  border-radius: 15px;
  margin-top: 2rem;
}

.quick-contact h4 {
  color: var(--dcc-forest-green);
  margin-bottom: 1rem;
}

/* Form Styling */
.contact-form-wrapper {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form {
  margin-top: 2rem;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--dcc-forest-green);
  font-weight: 600;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: inherit;
  transition: border-color 0.3s ease;
  background-color: white;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--dcc-light-green);
  box-shadow: 0 0 0 3px rgba(122, 179, 66, 0.1);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form .submit-button {
  background: linear-gradient(
    135deg,
    var(--dcc-forest-green) 0%,
    var(--dcc-medium-green) 100%
  );
  color: white;
  transition: all 0.3s ease;
  width: 100%;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 1rem;
}

.contact-form .submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(45, 127, 62, 0.3);
  background: linear-gradient(
    135deg,
    var(--dcc-forest-green-dark) 0%,
    var(--dcc-forest-green) 100%
  );
}

/* Footer */
.dcc-footer {
  background: var(--dcc-forest-green);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-logo {
  height: 80px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.dcc-footer h4 {
  color: var(--dcc-light-green);
  margin-bottom: 1rem;
}

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

.dcc-footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.dcc-footer a:hover {
  color: var(--dcc-light-green);
}

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

.social-links a:hover {
  background-color: var(--dcc-light-green);
  transform: translateY(-2px);
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 25px;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
  padding: 0.75rem 1.5rem;
  background-color: var(--dcc-light-green);
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background-color: var(--dcc-light-green-dark);
  transform: translateY(-1px);
}

.partner-logos-footer {
  margin-top: 2rem;
}

.logo-row {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 10px;
  margin-top: 0.5rem;
}

/* Cookie Banner Theming */
.dcc-cookie-banner {
  background: var(--dcc-forest-green);
}

.dcc-cookie-banner .cookie-link {
  color: var(--dcc-light-green);
  opacity: 0.9;
}

.dcc-cookie-banner .cookie-link:hover {
  opacity: 1;
}

.dcc-cookie-banner .cookie-accept {
  background: var(--dcc-light-green);
  color: white;
  font-weight: 600;
}

.dcc-cookie-banner .cookie-accept:hover {
  background: var(--dcc-light-green-dark);
  transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 968px) {
  .garden-intro,
  .featured-event,
  .involvement-grid {
    grid-template-columns: 1fr;
  }

  .service-card.featured {
    grid-column: 1;
  }

  .news-card.featured {
    grid-template-columns: 1fr;
    grid-column: 1;
  }

  .featured .news-image {
    min-height: 200px;
  }

  .featured .news-content {
    padding: 2rem;
  }

  .program-card {
    width: 100%;
    margin: 1rem 0;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .values-grid,
  .services-grid,
  .events-grid,
  .testimonials-grid,
  .resources-grid {
    grid-template-columns: 1fr;
  }

  .event-card {
    flex-direction: column;
  }

  .event-date {
    width: 100%;
    padding: 1.5rem;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    min-width: auto;
  }

  .event-month {
    font-size: 0.75rem;
  }

  .event-day {
    font-size: 2rem;
  }

  /* Hero Mobile Fixes */
  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .hero-tagline {
    font-size: 1.1rem;
    line-height: 1.4;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }
  
  .hero-badge {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
    margin-bottom: 0.75rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .dcc-hero .cta-button {
    text-align: center;
    width: 100%;
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
  }
  
  /* Mobile Menu Fixes */
  .dcc-navbar .nav-menu {
    position: fixed;
    left: -100%;
    top: 0;
    flex-direction: column;
    background-color: var(--dcc-forest-green);
    width: 100%;
    height: 100vh;
    text-align: center;
    transition: 0.3s;
    padding-top: 5rem;
    gap: 1.5rem;
  }
  
  .dcc-navbar .nav-menu.active {
    left: 0;
  }
  
  .dcc-navbar .back-to-main {
    margin: 0;
    display: inline-block;
  }

  .garden-stats {
    justify-content: space-around;
  }

  .involvement-options {
    margin-top: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

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

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-info-card,
  .contact-form-wrapper {
    padding: 1.5rem;
  }
  
  .contact-details {
    margin: 1rem 0;
  }
  
  .contact-item {
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }
  
  .quick-contact {
    padding: 1rem;
    margin-top: 1rem;
  }
  
  /* Center social links on mobile */
  .social-links {
    justify-content: center;
    text-align: center;
  }
  
  .footer-social {
    text-align: center;
  }
  
  .footer-brand {
    text-align: center;
  }
  
  .footer-brand img {
    margin: 0 auto;
  }
}

/* Animation Classes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.section-intro {
  text-align: center;
  color: var(--dcc-medium-green);
  font-size: 1.25rem;
  margin-top: -2rem;
  margin-bottom: 2rem;
}
