/* ===== BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Serif Devanagari", serif;
  background: #f4fbf5;
  color: #1b3d2f;
}

/* ===== LANGUAGE TOGGLE ===== */
.lang-toggle {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 999;
}

.lang-toggle button {
  background: #2e7d32;
  color: #fff;
  border: none;
  padding: 6px 10px;
  margin-left: 5px;
  cursor: pointer;
  border-radius: 4px;
}

/* ===== HEADER ===== */
.header {
  background: linear-gradient(to right, #1b5e20, #2e7d32);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.gp-title {
  font-size: 36px;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
  line-height: 1.2;
}

.header-badge {
  text-align: center;
}

.header-badge img {
  width: 70px;
}

.header-badge span {
  font-size: 12px;
}

/* ===== MENU ===== */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 18px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

nav ul li a:hover {
  text-shadow: 0 0 6px #a5d6a7;
}

/* ===== HERO ===== */
.hero {
  position: relative;
}

.hero img {
  width: 100%;
  display: block;
}

.hero-title {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  padding: 14px 18px;
  border-radius: 8px;
}

/* ===== ABOUT ===== */
.about {
  padding: 50px 20px;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

/* ===== ADARSH MAHITI ===== */
#adarsh {
  padding: 50px 20px;
  background: #e8f5e9;
}

.adarsh-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
  gap: 20px;
  max-width: 900px;
  margin: auto;
}

.adarsh-item {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.adarsh-item .label {
  font-weight: 700;
}

.adarsh-item .value {
  display: block;
  font-size: 22px;
  margin-top: 8px;
  color: #2e7d32;
}

/* ===== CONTACT ===== */
.contact-box {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.map-box iframe {
  width: 300px;
  height: 250px;
  border-radius: 10px;
  border: 0;
}

.qr-box img {
  width: 180px;
}

/* ===== COMMITTEE ===== */
#committee {
  padding: 50px 20px;
}

.members {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.member-card img {
  width: 170px;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.18);
}

/* ===== GALLERY ===== */
.slider {
  max-width: 600px;
  margin: auto;
  overflow: hidden;
}

.slides {
  display: flex;
  animation: slide 20s infinite;
}

.slides img {
  width: 100%;
}

@keyframes slide {
  0% { transform: translateX(0); }
  25% { transform: translateX(-100%); }
  50% { transform: translateX(-200%); }
  75% { transform: translateX(-300%); }
  100% { transform: translateX(0); }
}

/* ===== FOOTER ===== */
footer {
  background: #1b5e20;
  color: #fff;
  text-align: center;
  padding: 15px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .gp-title {
    font-size: 24px;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
    position: absolute;
    top: 70px;
    right: 0;
    background: #2e7d32;
    width: 100%;
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    padding: 15px;
  }

  .hero-title {
    position: static;
    margin: 10px;
    text-align: center;
  }
}