* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  background: #FFFDF6; /* Cream white */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #312003;
  line-height: 1.7;
  scroll-behavior: smooth;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #EAA221 70%, #C44900 100%);
  padding: 18px 32px;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 18px rgba(224, 152, 30, 0.13);
}

.logo img {
  width: 118px;
  max-height: 50px;
  object-fit: contain;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 1.07rem;
  transition: color 0.3s, border-bottom 0.3s;
}

nav ul li a:hover {
  color: #f04d29;
  border-bottom: 2px solid #ebecf3;
  padding-bottom: 2px;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #EAA221;
}

/* Carousel */
.carousel {
  position: relative;
  max-width: 100vw;
  overflow: hidden;
}

.carousel img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: none;
  border-bottom: 5px solid #EAA221;
  background: #FDF4DF;
}

.carousel img.active {
  display: block;
}

/* Content */
.content {
  padding: 48px 24px;
  text-align: center;
  background: #FDF4DF;
  border-radius: 13px;
  margin: 46px auto;
  max-width: 920px;
  box-shadow: 0 7px 18px rgba(224,152,30,0.07);
}

.content h2 {
  font-size: 2.2rem;
  font-weight: bold;
  color: #C44900;
  text-shadow: 1px 1px 6px rgba(234,162,33,0.11);
  margin-bottom: 15px;
  font-family: 'Georgia', serif;
  border-bottom: 3px solid #FFF3A3;
  display: inline-block;
  padding-bottom: 7px;
}

.content p {
  font-size: 1.13rem;
  line-height: 1.82;
  color: #335444;
  font-family: 'Verdana', sans-serif;
} 

.galleryDiv{
  text-align: center;
  margin-top: 54px;
}

.galleryHead{
   font-size: 2.2rem;
  font-weight: bold;
  color: #C44900;
  text-shadow: 1px 1px 6px rgba(234,162,33,0.11);
  margin-bottom: 15px;
  font-family: 'Georgia', serif;
  border-bottom: 3px solid #FFF3A3;
  display: inline-block;
  padding-bottom: 7px;
  text-align: center;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 38px;
  background: #FDF4DF;
  border-radius: 12px;
}

.gallery img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 3px solid #ECD690;
  background: #FFFDF6;
}

.gallery img:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 22px rgba(61,70,162,0.14);
}

/* Social */
.social {
  text-align: center;
  margin: 42px auto;
  padding: 28px;
  background: #FFFDF6;;
  border-radius: 12px;
  box-shadow: 0 4px 13px rgba(50,124,89,0.05);
  max-width: 620px;
  border-left: 6px solid #EAA221;
}

.social h2 {
  font-size: 1.6rem;
  color: #C44900;
  margin-bottom: 12px;
}

.social a {
  display: inline-block;
  font-size: 1.07rem;
  text-decoration: none;
  background: linear-gradient(90deg,#FFF3A3 70%,#EAA221 100%);
  color: #312003;
  padding: 10px 22px;
  border-radius: 7px;
  font-weight: bold;
  margin-top: 11px;
  transition: background 0.3s, color 0.3s;
  box-shadow: 0 2px 6px rgba(50,124,89,0.07);
}

.social a:hover {
  background: #EAA221;
  color: #FFFDF6;
}

/* Address Section */
.address {
  text-align: center;
  margin: 54px auto;
  padding: 34px;
  background: #FFFDF6;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(224,152,30,0.09);
  max-width: 740px;
  border: 2px solid #FFF3A3;
}

.address h2 {
  font-size: 1.7rem;
  color: #EAA221;
  margin-bottom: 13px;
}

.address p {
  font-size: 1.17rem;
  color: #335444;
  line-height: 1.65;
}

/* Updates */
.div-updates {
  background-color: #FDF4DF;
  max-width: 880px;
  margin: 38px auto;
  padding: 25px 28px;
  border-radius: 11px;
  box-shadow: 0 6px 15px rgba(224, 152, 30, 0.07);
  color: #312003;
  line-height: 1.74;
  font-size: 1.12rem;
  text-align: center;
}

.div-updates strong {
  color: #327C59; /* emerald highlight */
  font-weight: 700;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    padding: 22px;
  }
  .carousel img {
    height: 210px;
  }
  .content,
  .social,
  .address {
    max-width: 98vw;
    margin: 19px auto;
  }
}

@media (max-width: 600px) {
  nav ul {
    flex-direction: column;
    background: linear-gradient(110deg, #EAA221 80%, #C44900 100%);
    position: absolute;
    top: 55px;
    right: 0;
    width: 180px;
    display: none;
    padding: 12px;
    z-index: 1001;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 13px;
    box-shadow: 0 2px 8px rgba(224, 152, 30, 0.10);
  }
  nav ul.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .gallery {
    grid-template-columns: 1fr;
    gap: 13px;
    padding: 8px;
  }
  .carousel img {
    height: 120px;
  }
  .content,
  .social,
  .address {
    margin: 8px;
    padding: 12px;
  }
}

footer, .site-footer {
  background: linear-gradient(90deg, #FFF3A3 0%, #FFFDF6 120%);
  color: #EAA221;
  text-align: center;
  padding: 14px 0 10px 0;
  border-top: 2px solid #ECD690;
  margin-top: 35px;
  font-size: 1rem;
}


/* whatsapp and call */

.fixedbutton-whatsapp {
    position: fixed;
    bottom: 110px;
    left: 10px;
    animation-name: shake;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-out;
    z-index: 9;
    background: #f262222 !important;
     border: 2px solid #fff !important;
    border-radius: 12px 12px 12px 0px !important;
}

.fixedbutton-call {
    position: fixed;
    bottom: 50px;
    left: 10px;
    animation-name: shake;
    animation-duration: 3.5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-out;
    z-index: 9;
    background: #f26222 !important;
    border: 2px solid #fff !important;
    border-radius: 12px 12px 12px 0px !important;
}

@keyframes shake {
    0% {
        box-shadow: 0 0 0px -3px #000000;
    }

    50% {
        box-shadow: 0 0 10px 0px rgb(0 0 0 / 50%);
        transform: scale(1.15);
    }

    100% {
        box-shadow: 0 0 0px -3px #000000;
    }
}

.map-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}