/* Global styles */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f8f9f4;
  color: #333;
}/*response for small screen*/
@media (max-width: 768px) {
   h1, h2, h3 {
    font-size: 1.2rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 1rem;
  }

  nav ul {
    font-size: 0.9rem;
  }
}
  


/* Header */
header {
  background-color: #2e7d32;
  color: white;
  padding: 1rem;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 2rem;
}

nav {
  margin-top: 0.5rem;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 500;
}

nav a:hover {
  text-decoration: underline;
}

/* Navbar styles */
.navbar {
  background-color: #2e7d32;
  padding: 1rem;
  position: relative;
}

/* Hamburger button */
.hamburger {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1001;
}

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 0;
  margin: 0;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 0.5rem 1rem;
}

/* Mobile styles */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    background-color: #2e7d32;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .nav-links.show {
    max-height: 300px; /* Enough to show all items */
  }

  .nav-links li {
    padding: 1rem 0;
    width: 100%;
    text-align: center;
  }
}





/* Hero Section */
.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-content h2 {
  margin: 0;
  font-size: 2.5rem;
}

/* Gallery Section */
.gallery-section {
  padding: 2rem;
}

.gallery-section h3 {
  color: #2e7d32;
  margin-bottom: 0.5rem;
}

.gallery {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
}

.gallery img {
  width: 250px;
  height: 170px;
  object-fit: cover;
  border: 4px solid #2e7d32;
  border-radius: 10px;
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Footer */
footer {
  background-color: #2e7d32;
  color: white;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}

.social-icons a {
  color: white;
  margin: 0 10px;
  font-size: 1.5rem;
}

.social-icons a:hover {
  color: #c8e6c9;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 1.8rem;
  }

  nav a {
    display: block;
    margin: 0.3rem 0;
  }

  .gallery img {
    width: 180px;
    height: 130px;
  }
}


@media (max-width: 600px) {
  nav {
    flex-direction: row;
    flex-wrap: wrap;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    gap: 10px;
  }
}

form {
  margin: 2em 0;
  background-color: #f3f3f3;
  padding: 0.5em;
  border-radius: 8px;
}

input[type="file"] {
  display: block;
  margin-top: 0.5em;
}

.video-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  margin-bottom: 1em;
}

.video-wrapper {
  flex: 1 1 300px;
  max-width: 320px;
  border: 2px solid #4CAF50;
  border-radius: 8px;
  padding: 0.5em;
  background-color: #fff;
  text-align: center;
}

.video-wrapper video {
  width: auto;
  height: 150px;
  border-radius: 4px;
  border: 4px solid;
  box-shadow: 0 1px 6px rgba(0,0,0,0.2);
}
.contact-container {
  max-width: 600px;
  margin: 3em auto;
  padding: 2em;
  background: #f0fdf4;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 100, 0, 0.1);
}

.contact-section {
  padding: 2rem 1rem;
  max-width: 600px;
  margin: auto;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.contact-section h2 {
  text-align: center;
  color: #2e7d32;
  margin-bottom: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: Arial, sans-serif;
}

.contact-form button {
  background-color: #2e7d32;
  color: white;
  border: none;
  padding: 0.8rem;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #256428;
}

.privacy-notice {
  margin-top: 2em;
  text-align: center;
}

.privacy-notice a {
  color: #2e7d32;
  text-decoration: underline;
}
.privacy-container {
  max-width: 800px;
  margin: 3em auto;
  padding: 2em;
  background-color: #f0fdf4;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 100, 0, 0.1);
  color: #333;
  line-height: 1.7;
}

.privacy-container h2,
.privacy-container h3 {
  color: #2e7d32;
  margin-top: 1em;
}

.privacy-container ul {
  padding-left: 1.5em;
}

.privacy-container a {
  color: #2e7d32;
  text-decoration: underline;
}
/* Reset & base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #f5fff5;
  color: #333;
}

/* Header styles */
header {
  background-color: #2e7d32;
  color: #fff;
  padding: 1rem 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover,
nav a.active {
  text-decoration: underline;
}

/* Main container */
main.container {
  padding: 2rem;
  max-width: 900px;
  margin: 2rem auto;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 128, 0, 0.05);
}

h2 {
  color: #2e7d32;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.date {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

section {
  margin-bottom: 2rem;
}

h3 {
  color: #388e3c;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

/* Cookie Banner */
.cookie-banner {
  background-color: #e8f5e9;
  border-left: 5px solid #66bb6a;
  padding: 1rem;
  border-radius: 4px;
}

.cookie-banner button {
  background-color: #43a047;
  color: white;
  border: none;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 0.5rem;
}

/* Footer */
footer {
  background-color: #1b5e20;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 3rem;
}

.social-icons a {
  color: white;
  margin: 0 0.5rem;
  font-size: 1.2rem;
}

/* Hamburger (optional) */
.hamburger {
  display: none;
}



