/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #537D5D;
    --color-secondary: #73946B;
    --color-tertiary: #9EBC8A;
    --color-light: #D2D0A0;
    --color-dark: #3a5a42;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER SECTION */
.main-header {
  position: relative;
  background: linear-gradient(135deg, #a8e063, #56ab2f);
  color: white;
  text-align: center;
  padding: 60px 20px;
  overflow: hidden;
}

/* Optional overlay for subtle depth */
.header-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.header-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Brand section layout */
.brand-section {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.logo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease;
}

.logo:hover {
  transform: scale(1.08);
}

.brand-text h1 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
}

.tagline {
  font-size: 1rem;
  opacity: 0.9;
  margin-top: 4px;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-icon {
  color: white;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: white;
  color: #56ab2f;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .brand-text h1 {
    font-size: 1.5rem;
  }

  .tagline {
    font-size: 0.9rem;
  }

  .logo {
    width: 60px;
    height: 60px;
  }
}


/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    
}

.social-links a {
    color: white;
    transition: opacity 0.3s, transform 0.3s;
    display: inline-block;
}

.social-links a:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

.social-links svg {
    width: 32px;
    height: 32px;
}

footer .social-links {
    margin-bottom: 20px;
}

footer .social-links svg {
    width: 28px;
    height: 28px;
}

/* Navigation */
nav {
    background-color: rgba(83, 125, 93, 0.99);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.logo-img {
  width: 40px;       /* adjust size as needed */
  height: 40px;      /* keep proportions consistent */
  border-radius: 50%; /* optional – makes it round if you want */
  object-fit: cover; /* ensures it scales nicely */
  margin-right: 10px;
  vertical-align: middle;
}


.nav-brand {
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    padding: 15px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    width: 28px;
    height: 3px;
    background-color: white;
    position: relative;
    transition: 0.3s;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 3px;
    background-color: white;
    transition: 0.3s;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.nav-toggle.active .hamburger {
    background-color: transparent;
}

.nav-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 5px;
    margin: 0;
}

.nav-menu li a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 20px 20px;
    transition: all 0.3s;
    position: relative;
    font-weight: 500;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--color-light);
    transition: width 0.3s;
}

.nav-menu li a:hover::after {
    width: 60%;
}

.nav-menu li a:hover {
    color: var(--color-light);
    background-color: #9EBC8A;
    color: black;
}

.nav-cta {
    background-color: var(--color-secondary);
    border-radius: 25px;
    padding: 12px 25px !important;
    margin-left: 10px;
}

.nav-cta:hover {
    background-color: var(--color-tertiary);
    color: var(--color-dark) !important;
}

.nav-cta::after {
    display: none;
}

/* Hero Section */
#hero {
    background: url('/image/latest/main1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    padding: 120px 20px;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(83, 125, 93, 0.0), rgba(115, 148, 107, 0.0));
    z-index: 0;
}

#hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(210, 208, 160, 0.1) 39px, rgba(210, 208, 160, 0.1) 40px),
        repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(210, 208, 160, 0.1) 39px, rgba(210, 208, 160, 0.1) 40px),
        radial-gradient(circle 80px at 15% 25%, rgba(158, 188, 138, 0.3) 0%, transparent 100%),
        radial-gradient(circle 100px at 85% 70%, rgba(210, 208, 160, 0.25) 0%, transparent 100%),
        radial-gradient(circle 60px at 50% 40%, rgba(158, 188, 138, 0.25) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(158, 188, 138, 0.15), transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(83, 125, 93, 0.2), transparent 50%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
}

#hero h2 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    animation: fadeInDown 1s ease;
    color: white;
}

#hero p {
    font-size: 1.3em;
    max-width: 700px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.9);
    animation: fadeInUp 1s ease 0.3s backwards;
}

.hero-button {
    display: inline-block;
    background-color: var(--color-light);
    color: var(--color-dark);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease 0.6s backwards;
}

.hero-button:hover {
    background-color: var(--color-tertiary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile optimization for hero */
@media (max-width: 768px) {
    #hero {
        padding: 80px 20px;
        min-height: 400px;
    }
    
    #hero h2 {
        font-size: 2em;
    }
    
    #hero p {
        font-size: 1.1em;
    }
    
    .hero-button {
        padding: 12px 30px;
        font-size: 1em;
    }
}


/* about us */
#about{
  text-align: justify;
  text-align-last: center ;
}

/* Sections */
section {
    padding: 60px 20px;
}

section:nth-child(even) {
    background-color: #f9f9f9;
}

section h2 {
    font-size: 2.2em;
    color: var(--color-primary);
    margin-bottom: 30px;
    text-align: center;
}

section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Impact Statistics Section */
#impact {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    padding: 50px 20px;
}

#impact h2 {
    color: white;
    font-size: 2em;
    margin-bottom: 25px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    text-align: center;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s, background 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.18);
}

.stat-number {
    font-size: 2.5em;
    font-weight: bold;
    color: var(--color-light);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.95);
}

/* Park Amenities Section */
#park-amenities {
    background-color: #f9f9f9;
}

.park-description {
    text-align: center;
    font-size: 1.15em;
    margin-bottom: 40px;
    color: #555;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.amenity-category {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.amenity-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.amenity-category h3 {
    color: var(--color-primary);
    font-size: 1.4em;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-light);
}

.amenity-category ul {
    list-style: none;
    padding: 0;
}

.amenity-category ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.amenity-category ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: bold;
    font-size: 1.2em;
}

/* Slideshow Gallery */
.slideshow-container {
    max-width: 900px;
    position: relative;
    margin: 40px auto;
    background-color: #333;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.slide {
    display: none;
    position: relative;
}

.slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 1.1em;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -30px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.3s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.dots-container {
    text-align: center;
    padding: 20px 0;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.dot:hover {
    background-color: #717171;
}

.dot.active {
    background-color: #73946B;
}

.fade {
    animation-name: fade;
    animation-duration: 1s;
}

@keyframes fade {
    from {opacity: 0.4}
    to {opacity: 1}
}

/* Mobile responsive for slideshow */
@media (max-width: 768px) {
    .slideshow-container {
        margin: 20px 10px;
        border-radius: 8px;
    }
    
    .slide img {
        height: 250px;
    }
    
    .slide-caption {
        font-size: 0.9em;
        padding: 12px 10px;
    }
    
    .prev, .next {
        padding: 10px 12px;
        font-size: 18px;
        margin-top: -20px;
    }
    
    .dots-container {
        padding: 15px 0;
    }
    
    .dot {
        height: 12px;
        width: 12px;
        margin: 0 4px;
    }
}

@media (max-width: 480px) {
    .slide img {
        height: 200px;
    }
    
    .slide-caption {
        font-size: 0.85em;
        padding: 10px 8px;
    }
    
    .prev, .next {
        padding: 8px 10px;
        font-size: 16px;
    }
}
/* Garden Grid */
.garden-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.garden-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.garden-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.garden-card h3 {
    color: var(--color-secondary);
    margin-bottom: 15px;
    font-size: 1.5em;
}

/* Volunteer Section */
.volunteer-intro {
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 40px;
    text-align: justify;
    text-align-last: center ;
}

.volunteer-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.volunteer-card {
    background: white;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.volunteer-card h3 {
    color: var(--color-secondary);
    margin-bottom: 20px;
    font-size: 1.6em;
    
}
.volunteer-card p{
  text-align: justify;
  text-align-last: center ;
}

.volunteer-card ul {
    list-style-position: inside;
    margin-bottom: 20px;
}

.volunteer-card ul li {
    margin-bottom: 10px;
    padding-left: 10px;
}

.button {
    display: inline-block;
    background-color: var(--color-secondary);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin-top: 15px;
}

.button:hover {
    background-color: var(--color-primary);
}

/* Testimonials Section */
#testimonials {
    background: linear-gradient(to bottom, #f9f9f9, #ffffff);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--color-secondary);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.quote-icon {
    font-size: 4em;
    color: var(--color-tertiary);
    line-height: 0.5;
    margin-bottom: 15px;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1.05em;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: bold;
    color: var(--color-primary);
    text-align: right;
}

/* Location Section */
#location {
    background-color: #f9f9f9;
}

.location-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.location-info {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.location-info h3 {
    color: var(--color-primary);
    font-size: 1.8em;
    margin-bottom: 20px;
}

.location-info p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.map-placeholder {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-tertiary) 100%);
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.map-icon {
    margin-bottom: 20px;
}

.map-placeholder p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.map-link {
    display: inline-block;
    background-color: white;
    color: var(--color-primary);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s;
}

.map-link:hover {
    background-color: var(--color-light);
    transform: scale(1.05);
}

/* Contact Section */
.contact-info {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 30px auto;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

/* Footer */
footer {
    background-color: var(--color-primary);
    color: white;
    text-align: center;
    padding: 30px 20px;
}

footer p {
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }
    
    #hero h2 {
        font-size: 2em;
    }
    
    #hero p {
        font-size: 1.1em;
    }
    
    nav .container {
        flex-direction: column;
    }
    
    .nav-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .nav-brand span {
        display: none;
    }
    
    .nav-brand {
        font-size: 1em;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: rgba(83, 125, 93, 0.98);
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        gap: 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-menu li a {
        padding: 18px 20px;
    }
    
    .nav-menu li a::after {
        display: none;
    }
    
    .nav-cta {
        margin: 10px 20px;
        border-radius: 25px;
    }
    
    section h2 {
        font-size: 1.8em;
    }
    
    .slide img {
        height: 300px;
    }
    
    .prev, .next {
        padding: 12px;
        font-size: 18px;
    }
}