.main-heading {
  color: brown;
  font-weight: bold;
  font-size: 38px;
  margin-top: 30px;
}

.main-heading span {
  color: #cc9900;
}

nav {
  background-color: rgb(245, 245, 209);
  border-bottom: 1px solid #ccc;
  padding: 0px 25px;
  padding-top: 10px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.3rem !important;
  font-weight: bold;
  color: brown;
  text-align: left;
}

.menu {
  display: flex;
  list-style: none;
  gap: 10px;
  align-items: center;
  padding-left: 0;
}

.menu li {
  position: relative;
}

.menu li a {
  text-decoration: none;
  color: brown;
  padding: 8px 8px;
  display: block;
  font-size: 18px;
}

.menu li a:hover {
  background-color: #ddd;
  border-radius: 4px;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border: 1px solid #ccc;
  display: none;
  min-width: 180px;
  z-index: 1000;
  list-style: none;
  padding-left: 0;
}

.dropdown li {
  width: 100%;
}

.dropdown li a {
  padding: 8px 12px;
}

.dropdown li a:hover {
  background-color: rgb(245, 245, 209);
  color: rgb(233, 38, 38);
}

.menu li:hover .dropdown {
  display: block;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background-color: #333;
}

#menu-toggle {
  display: none;
}

/* Footer  */
footer {
  background-color: #f5f2f2;
  padding: 50px 20px 20px 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-column {
  flex: 1;
  min-width: 220px;
}

.footer-column h2,
.footer-column h3 {
  color: brown;
  margin-bottom: 15px;
  font-size: 21px;
}

.footer-column p {
  margin-bottom: 8px;
  line-height: 1.6;
  color: black;
  font-size: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: black;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 15px;
}
.footer-logo {
  font-size: 22px;
  font-weight: bold;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  font-size: 15px;
  color: black;
}
/* Festival */
.festivals-section {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}

.festivals-section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: brown;
  font-size: 28px;
}

.festivals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.festival-month {
  background-image: linear-gradient(135deg, white, rgb(240, 247, 248));
  border-radius: 8px;
  padding: 15px 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.festival-month h3 {
  background-image: linear-gradient(135deg, rgb(253, 208, 166), white);
  padding: 8px 10px;
  border-radius: 6px;
  margin-bottom: 10px;
  color: #333;
  font-size: 18px;
  text-align: center;
}

.festival-month ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.festival-month ul li {
  padding: 6px 0;
  font-size: 14px;
  color: brown;
  font-weight: bold;
}

.festival-month ul li:last-child {
  border-bottom: none;
}

/* Mobile styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .menu {
    gap: 5px;
  }
  .menu li a {
    font-size: 12px;
    padding: 8px 5px;
  }
}

@media (max-width: 768px) {
  .main-heading {
    font-size: 30px;
  }

  nav {
    padding: 10px 25px;
    padding-top: 10px;
  }
  .hamburger {
    display: flex;
    margin-top: 16px;
  }

  .menu {
    flex-direction: column;
    text-align: center;
    font-size: 15px;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 0 !important;
  }

  #menu-toggle:checked ~ .menu {
    max-height: 500px;
  }

  .menu li {
    width: 100%;
  }

  .dropdown {
    position: static;
    border: none;
    box-shadow: none;
  }
  .dropdown li a:hover {
    background-color: #ccc;
    color: rgb(233, 38, 38);
  }
  /* Festival */
  .festivals-section {
    margin: 30px auto;
  }
  /* Footer  */
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    text-align: center;
  }

  .footer-column h2,
  .footer-column h3 {
    text-align: center;
  }
  /* Festival */
  .festivals-grid {
    grid-template-columns: 1fr 1fr;
  }


}

@media (max-width: 480px) {

   nav {
    padding: 0px 16px;
    padding-top: 10px;
  }
  .festivals-grid {
    grid-template-columns: 1fr;
  }
       .hamburger {
    margin-top: 10px;
  }
}
/* Content */
.content-heading {
  color: brown;
  font-weight: bold;
  font-size: 35px;
}
.content-para {
  color: #001567;
  font-size: 20px;
  line-height: 1.5;
}
.welcom-img {
  height: 350px;
  width: 430px;
  border-radius: 10px;
}
.one-img {
  height: 320px;
  width: 430px;
  border-radius: 10px;
}
.welcom-img-1 {
  height: 400px;
  width: 430px;
  border-radius: 10px;
}
.content-padding {
  padding: 10px 150px;
}
.row-padding {
  margin-top: 100px;
  margin-bottom: 10px;
}
.content-para-point {
  color: #36534f;
  font-size: 17px;
  line-height: 1.4;
  font-weight: bold;
}
.icon {
  font-size: 20px;
  color: rgb(219, 150, 10);
  margin-right: 10px;
}
/* Monthly */
.monthlypage-first-content {
  margin-top: 122px;
}
.spancolor {
  color: #ac8ee5;
  font-weight: 500;
}

/* Festival */
.festival-padding {
  padding: 0 100px;
}

@media (max-width: 768px) {
  .content-padding {
    padding: 0px 10px;
  }
  .content-heading {
    font-size: 24px;
    line-height: 1.4;
  }
  .welcom-img {
    height: 260px;
    width: 430px;
    border-radius: 10px;
  }
  .one-img {
    height: 215px;
    width: 430px;
    border-radius: 10px;
  }
  .welcom-img-1 {
    height: 300px;
    width: 430px;
    border-radius: 10px;
  }
  .row-padding {
    margin-top: 25px;
  }
  .content-para {
    font-size: 18px;
    line-height: 1.5;
  }
  .content-para-point {
    font-size: 15px;
  }
  /* Monthly */
  .monthlypage-first-content {
    margin-top: 0px;
  }
  /* Festival */
.festival-padding {
  padding: 0px
  ;
}
}


.highlited-link{
  color: #aa1f65;
  font-weight: 700;
  text-decoration: none;
   white-space: nowrap;   /* Prevents line breaks */
    display: inline-block; 
  

}






