/* Color Palette */
:root {
    --primary-yellow: #e6e86a;
    --primary-green: #174c3c;
    --secondary-green: #256d4a;
    --text-dark: #174c3c;
    --text-light: #fff;
    --bg-light: #f8f9fa;
    --bg-white: #fff;
    --accent: #e6e86a;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--bg-white);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-green);
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-green);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-yellow);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-yellow);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-green);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--secondary-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--primary-green);
    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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--primary-green);
    animation: fadeInUp 1s ease 0.2s both;
}

.cta-button {
    background: var(--primary-green);
    color: var(--text-light);
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(23, 76, 60, 0.15);
    animation: fadeInUp 1s ease 0.4s both;
}

.cta-button:hover {
    background: var(--secondary-green);
    color: var(--primary-yellow);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(23, 76, 60, 0.18);
}

/* Section Styles */
section {
    padding: 80px 0;
}

section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-green);
}

/* About Section */
.about {
    background: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
    line-height: 1.8;
}

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

.stat {
    text-align: center;
    padding: 2rem;
    background: var(--primary-yellow);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(23, 76, 60, 0.08);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--primary-green);
    font-weight: 500;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(23, 76, 60, 0.08);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, var(--primary-green));
    color: var(--text-light);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* Services Section */
.services {
    background: var(--primary-green);
    color: var(--text-light);
}

.services h2 {
    color: var(--primary-yellow);
}

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

.service-card {
    background: rgba(230, 232, 106, 0.15);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(230, 232, 106, 0.2);
}

.service-card:hover {
    transform: translateY(-5px);
    background: var(--primary-yellow);
    color: var(--primary-green);
}

.service-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-yellow);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Events Section */
.events {
    background: var(--bg-light);
}

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

.event-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(23, 76, 60, 0.08);
    display: flex;
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    border: 2px solid var(--primary-yellow);
}

.event-date {
    background: var(--primary-yellow);
    color: var(--primary-green);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
}

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

.event-date .month {
    font-size: 0.9rem;
    opacity: 0.9;
}

.event-content {
    padding: 1.5rem;
    flex: 1;
}

.event-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-green);
}

.event-time {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.event-time i {
    margin-right: 0.5rem;
}

.event-btn {
    background: var(--primary-green);
    color: var(--primary-yellow);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.event-btn:hover {
    background: var(--primary-yellow);
    color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(23, 76, 60, 0.13);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-top: 0.2rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-green);
}

.contact-item p {
    color: var(--primary-green);
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid var(--primary-yellow);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.submit-btn {
    background: var(--primary-green);
    color: var(--primary-yellow);
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--primary-yellow);
    color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(23, 76, 60, 0.13);
}

/* Footer */
footer {
    background: var(--primary-green);
    color: var(--primary-yellow);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-yellow);
}

.footer-section p {
    color: var(--primary-yellow);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--primary-yellow);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-green);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--primary-yellow);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--secondary-green);
    color: var(--primary-yellow);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .event-card {
        flex-direction: column;
    }
    
    .event-date {
        min-width: auto;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Ensure mailto links in contact/footer match text color and style */
.contact-info a[href^="mailto:"],
.footer-section a[href^="mailto:"] {
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
}
.contact-info a[href^="mailto:"]:hover,
.footer-section a[href^="mailto:"]:hover {
  text-decoration: underline;
}

/* Enhance embedded Google Form appearance */
.contact-form-embed {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(23, 76, 60, 0.10);
  padding: 32px 16px;
  margin: 0 auto;
  max-width: 700px;
  width: 100%;
}
.contact-form-embed iframe {
  border-radius: 12px;
  border: none;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  background: transparent;
}
@media (max-width: 800px) {
  .contact-form-embed {
    padding: 16px 4px;
    max-width: 100%;
  }
  .contact-form-embed iframe {
    width: 100%;
    min-width: 0;
    height: 600px;
  }
}

/* Testimonials Section */
.testimonials {
  background: #f8f9fa;
  padding: 80px 0 60px 0;
}
.testimonials h2 {
  text-align: center;
  color: var(--primary-green);
  font-family: 'Playfair Display', serif;
  margin-bottom: 2.5rem;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.testimonial-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(23, 76, 60, 0.08);
  padding: 2rem 1.5rem;
  max-width: 350px;
  min-width: 260px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.2s, box-shadow 0.2s;
}
.testimonial-item:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(23, 76, 60, 0.13);
}
.testimonial-item p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1.2rem;
  font-style: italic;
}
.testimonial-item span {
  color: var(--primary-green);
  font-weight: 600;
  font-size: 1rem;
  align-self: flex-end;
}

/* FAQ Section */
.faq {
  background: #fff;
  padding: 80px 0 60px 0;
}
.faq h2 {
  text-align: center;
  color: var(--primary-green);
  font-family: 'Playfair Display', serif;
  margin-bottom: 2.5rem;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.faq-item {
  background: #f8f9fa;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(23, 76, 60, 0.07);
  padding: 1.5rem 1.5rem 1rem 1.5rem;
  transition: box-shadow 0.2s;
  cursor: pointer;
  position: relative;
}
.faq-item:hover {
  box-shadow: 0 6px 24px rgba(23, 76, 60, 0.13);
}
.faq-item h3 {
  font-size: 1.15rem;
  color: var(--primary-green);
  margin-bottom: 0.7rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-item p {
  color: #333;
  font-size: 1.05rem;
  margin: 0;
  line-height: 1.7;
  transition: max-height 0.3s, opacity 0.3s;
}

/* FAQ Accordion (JS optional, but style for future) */
.faq-item.collapsed p {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0;
}
.faq-item p {
  max-height: 500px;
  opacity: 1;
  overflow: hidden;
}

@media (max-width: 900px) {
  .testimonial-list {
    flex-direction: column;
    align-items: center;
  }
  .faq-list {
    padding: 0 10px;
  }
}