* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

@font-face {
  font-family: 'Awesome';
  src: url('fonts/Awesome.otf') format('opentype');
  font-display: swap;
}

@font-face {
  font-family: 'Canva Sans Display';
  src: url('fonts/CanvaSansDisplay-Medium_0.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

    body {
     font-family: 'Awesome', cursive;
      color: #a14c76;
      overflow-x: hidden;
    }

    /* Header */
    header {
      position: fixed;
      top: 0;
      width: 100%;
      background: #fff;
      border-bottom: 1px solid #f3d9d9;
      z-index: 1000;
      transition: all 0.3s ease;
      padding: 10px 0;
    }

    .navbar {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 60px;
      font-family: 'Awesome', cursive;

    }

    .nav-group {
      display: flex;
      gap: 25px;
    }

    .navbar a {
      text-decoration: none;
      color: #a14c76;
      font-weight: 600;
      font-size: 1.1rem;
      transition: color 0.3s ease;
      font-family: 'Awesome', cursive;
      letter-spacing: 2px; 
      font-weight: normal;
      font-size:26px;
    }

    .navbar a:hover {
      color: #d87ca5;
    }

    .logo img {
      height: 55px;
      width: auto;
    }

    header.shrink {
      padding: 5px 0;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    /* Banner */
    .banner {
      position: relative;
      width: 100%;
      /*height: 100vh;*/
      height:950px;
      background: url('images/banner.jpg') no-repeat center center;
      background-size: cover;
      /*background-attachment: fixed;*/
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
      margin-top: 80px; /* prevent header overlap */
    }

    .banner-overlay {
      position: relative;
      color: #fff;
      text-align: center;
      z-index: 2;
      animation: fadeIn 1.8s ease-out;
    }

    .banner-overlay h1 {
      font-size: 3rem;
      font-weight: 700;
      letter-spacing: 2px;
      margin-bottom: 10px;
    }

    .banner-overlay p {
      font-size: 1.3rem;
      font-weight: 400;
      color: #f7d1d1;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Sections */
    .section {
      min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 3rem;
      color: #fff;
      scroll-margin-top: 90px;
      position: relative;
      z-index: 1;
    }

.about 
{ 
   background: url('images/aboutbg.jpg') no-repeat center center;
   background-size: cover; 
   display: flex;
   justify-content: center;
   align-items: center;
   overflow: hidden;
   height:950px;
}

.about-container {
  max-width: 1100px;
  width: 100%;
}

.about-header h2 {
  font-family: 'Awesome', cursive;
  color: #fff;
  font-size: 4.2rem;
  margin-bottom: 30px;
  /*text-shadow: 1px 1px 3px rgba(0,0,0,0.1);*/
  letter-spacing: 2px;
  text-align:center;
  font-weight: normal;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.about-image img {
  width: 450px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.about-text {
  flex: 1;
  font-size: 1.1rem;
  color: #4a2e35;
  line-height: 1.8;
  font-family: 'Canva Sans Display', sans-serif;
  /*margin-top: -189px;*/
  text-align:justify;

}

.about-text strong {
  color: #a14c76;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-header h2 {
    text-align: center;
  }

  .about-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-image img {
    width: 80%;
  }

  .about-text {
    font-size: 1rem;
    margin-bottom:190px;
    padding-left:14px;
    padding-right:14px;
    line-height:4px;
    line-height: 19px;
  }
}


    .info { background: #efb8b8; }
    .contact { background: #f7d1d1; }

    /* Responsive */
    @media (max-width: 768px) {
      .navbar {
        flex-direction: column;
        gap: 10px;
      }

      .nav-group {
        flex-direction: column;
        align-items: center;
      }

      .logo img {
        height: 45px;
      }

      .banner {
        height: 80vh;
        background-attachment: scroll;
      }

      .banner-overlay h1 {
        font-size: 2.2rem;
      }

      .banner-overlay p {
        font-size: 1rem;
      }

      .section {
        font-size: 2rem;
      }
    }

 /* --------------------
   GALLERY SECTION FIXED
-------------------- */

.gallery-section {
  background: url('images/gallery-bg.jpg') no-repeat center center;
  background-size: cover;
  padding: 100px 5%;
  text-align: center;
  overflow: hidden;
  /*height:950px;*/
}

.gallery-section h2 {
  font-family: 'Awesome', cursive;
  font-size: 4.2rem;  
  letter-spacing: 2px;
  color: #af6387;
  font-weight: normal;
  margin-bottom: 30px;
  text-align:left !important;
}

.gallery-section p {
  font-family: 'Canva Sans Display', sans-serif;
  font-size: 1.2rem;
  color: #f7d1d1;
  margin-bottom: 50px;
}

/* Responsive Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
  margin-top:130px;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

/* Lightbox Overlay */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(255,255,255,0.4);
  animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

/* Close Button */
.lightbox::after {
  content: "✕";
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s ease;
}

.lightbox::after:hover {
  color: #f7d1d1;
}

/* Responsive */
@media (max-width: 992px) {
  .gallery-section h2 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 70px 20px;
  }
  .gallery-section h2 {
    font-size: 2.2rem;
  }
  .gallery-section p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .gallery-section h2 {
    font-size: 1.8rem;
  }
}

/* Info Section /*

/* Info Section */
.info-section {
  background: url('images/info-bg.jpg') no-repeat center center;
  background-size: cover;
  padding: 100px 5%;
  text-align: center;
  overflow: hidden;
  height:950px;
}

/* Decorative wavy top & bottom (optional) */
.info-section::before,
.info-section::after {
  content: "";
  display: block;
  width: 100%;
  height: 40px;
  background: url('images/wave-border.svg') repeat-x center;
  background-size: contain;
}

.info-header h2 {
  font-size: 4.2rem;  
  letter-spacing: 2px;
  font-family: 'Awesome', cursive;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
  font-weight:400;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.info-card {
  background: rgb(255 255 255 / 30%);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.info-card h3 {
   font-family: 'Awesome', cursive;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #b34b6e;
  text-align: center;  
  letter-spacing: 2px;
}

.info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-card ul li {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.2rem;
  font-family: 'Canva Sans Display', sans-serif;
}

.info-card ul li::before {
  content: "•";
  color: #b34b6e;
  position: absolute;
  left: 0;
}

.overall-card {
  grid-column: span 2;
  text-align: center;
}

.overall-card p {
  font-size: 1rem;
  line-height: 1.6;
  font-family: 'Canva Sans Display', sans-serif;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .overall-card {
    grid-column: span 1;
  }

  .info-header h2 {
    font-size: 2.2rem;
  }

  .info-card h3 {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}
 

/* =====================
   Contact Section
===================== */


.contact-section {
 background: url('images/aboutbg.jpg') no-repeat center center;
   background-size: cover; 
   display: flex;
   justify-content: center;
   align-items: center;
   overflow: hidden;
   height:950px; /* striped background */
  padding: 4rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-container {
  /*max-width: 800px;*/
  width: 100%;
  text-align: center;
 /* padding: 2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);*/
}

.contact-container h2 {
  font-size: 4.2rem;
 font-family: 'Awesome', cursive;
  color: #fff;
  margin-bottom: 2rem;
  font-weight:400;
   letter-spacing: 2px;
}

.contact-container .contact-details p {
  font-size: 3.0rem;
  margin-bottom: 1.2rem;
  color: #000;
   font-family: 'Canva Sans Display', sans-serif;

}

.contact-details strong {
  color: #000;
   font-family: 'Canva Sans Display', sans-serif;
}

/* =====================
   Footer
===================== */
.footer {
  background: #b34b6e;
  color: #fff;
  padding: 2rem 1rem;
  text-align: center;
}

.footer-content p {
  margin: 0.5rem 0;
  font-family: 'Canva Sans Display', sans-serif;
  font-size:2rem;
}

.social-icons {
  margin: 1rem 0;
  /*display: flex;*/
  justify-content: center;
  gap: 1.5rem;
}

.social-icons img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}

.footer .copyright {
  font-size:1rem;
  margin-top: 1rem;
}

/* =====================
   Responsive
===================== */
@media (max-width: 768px) {
  .contact-container {
    padding: 1.5rem;
  }

  .contact-container h2 {
    font-size: 2rem;
  }

  .contact-details p {
    font-size: 1rem;
  }

  .social-icons img {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .contact-container {
    border-radius: 20px;
  }

  .contact-container h2 {
    font-size: 1.8rem;
  }

  .contact-details p {
    font-size: 0.95rem;
  }
}
