/* ---------- Top Info Bar ---------- */
.top-bar {
  background: #d8d37c;
  padding: 8px;
  text-align: center;
  font-size: 14px;
  animation: slideDown 0.8s ease-out;
}
.top-bar .info span {
  margin: 0 15px;
}

/* ---------- Header ---------- */
header {
  text-align: center;
  background: white;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  animation: fadeIn 1s ease-in;
}
header .logo h1 {
  color: #6b350f;
  font-size: 28px;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}
header .logo p {
  color: #777; 
  margin: 0;
  font-size: 14px;
}

/* ---------- Navbar ---------- */
nav {
  background-color: #8b4513;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
}

nav ul li {
  position: relative;
  color: white;
  padding: 12px 25px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
}

nav ul li a {
  color: white;
  text-decoration: none;
  display: block;
}

nav ul li:hover,
nav ul li a:hover {
  background: #a45d27;
  transform: translateY(-2px);
}

nav ul li.active,
nav ul li a.active {
  color: rgb(255, 230, 0);
  
}

/* ---------- Dropdown ---------- */
nav ul li ul.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #a45d27;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 180px;
  flex-direction: column;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  box-shadow: 0 5px 10px rgba(0,0,0,0.25);
  opacity: 0;
  transform: translateY(15px);
  pointer-events: none;
  transition: all 0.3s ease;
}

nav ul li:hover ul.dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

nav ul li ul.dropdown li {
  padding: 12px 18px;
  text-align: left;
  font-size: 15px;
  transition: all 0.25s ease;
  color: white;
}

nav ul li ul.dropdown li:hover {
  background: #b86a2e;
  padding-left: 22px;
}

nav ul li ul.dropdown li.active,
nav ul li ul.dropdown li a.active {
  color: red;
}

/* ---------- Mobile Responsive Menu ---------- */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 12px 20px;
  background: #8b4513;
  align-items: flex-end;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: white;
  margin: 4px 0;
  transition: all 0.3s ease;
}

/* ✅ Responsive CSS */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    background: #8b4513;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
  }

  nav ul.show {
    display: flex;
  }

  nav ul li {
    width: 100%;
    text-align: left;
    padding: 12px 20px;
  }

  nav ul li a {
    display: block;
  }

  .menu-toggle {
    display: flex;
  }

  nav ul li ul.dropdown {
    position: static;
    opacity: 1;
    transform: none;
    box-shadow: none;
    display: none;
  }

  nav ul li.active > ul.dropdown,
  nav ul li:hover > ul.dropdown {
    display: block;
  }
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


/* ---------- Footer ---------- */
footer {
  background: #6b350f;
  color: white;
  padding: 40px 0 0;
}

.footer-content {
  display: flex;
  justify-content: space-around;
  padding: 0 20px 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-section {
  width: 22%;
  min-width: 250px;
  margin-bottom: 30px;
}

.footer-section h3 {
  color: #f7d9a5;
  margin-bottom: 20px;
  font-size: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: #f7d9a5;
}

.footer-section p {
  line-height: 1.8;
  margin-bottom: 15px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #f3e1b9;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
}

.footer-section ul li a:hover {
  color: white;
  transform: translateX(5px);
}

.contact-info {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-info i {
  margin-right: 10px;
  color: #f7d9a5;
}

.social-links {
  display: flex;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #8b4513;
  color: white;
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #f7d9a5;
  color: #6b350f;
  transform: translateY(-5px);
}

.footer-bottom {
  background: #5a2d0c;
  text-align: center;
  padding: 20px;
  border-top: 1px solid #8b4513;
  font-size: 14px;
}

/* ======================================================
   ✅ RESPONSIVE DESIGN
   ====================================================== */

/* ---------- Tablets (max-width: 1024px) ---------- */
@media (max-width: 1024px) {
  .footer-section {
    width: 45%; /* 2 sections per row */
    text-align: center;
  }

  .footer-section h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .contact-info {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }
}

/* ---------- Mobiles (max-width: 768px) ---------- */
@media (max-width: 768px) {
  footer {
    padding-top: 30px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    padding: 0 10px 30px;
  }

  .footer-section {
    width: 90%;
    text-align: center;
  }

  .footer-section h3 {
    font-size: 18px;
  }

  .footer-section p,
  .footer-section ul li a {
    font-size: 14px;
  }

  .footer-section h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .contact-info {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }

  .social-links a {
    width: 35px;
    height: 35px;
    margin: 5px;
  }

  .footer-bottom {
    font-size: 13px;
    padding: 15px;
  }
}

/* ---------- Small Mobiles (max-width: 480px) ---------- */
@media (max-width: 480px) {
  .footer-section {
    width: 100%;
  }

  .footer-section h3 {
    font-size: 16px;
  }

  .footer-section p,
  .footer-section ul li a {
    font-size: 13px;
  }

  .social-links a {
    width: 30px;
    height: 30px;
  }

  .footer-bottom {
    font-size: 12px;
    padding: 12px;
  }

}
.map-container {
    width: 100%;
    height: 400px;
    background: #8b4513;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .map-container {
      height: 300px;
    }
  }

  @media (max-width: 480px) {
    .map-container {
      height: 250px;
    }
  }

  .footer-link {
    color: #ffd700; /* सोनेरी रंग */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }

  .footer-link:hover {
    color: #ffb300; /* hover झाल्यावर थोडा गडद */
    text-decoration: underline;
  }
