/* ===== ABOUT HERO SECTION ===== */
.about-hero {
  position: relative;
  width: 100%;
  height: 420px;
  background-image: url("../image/temple\ 2.jpeg"); /* change image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.about-hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 2;
}

.about-hero-content h1 {
  font-size: 64px;
  font-weight: 500;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
}

.about-hero-content p {
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero {
    height: 300px;
  }

  .about-hero-content h1 {
    font-size: 40px;
  }
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background-color: #f8f3ee;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

/* BACKGROUND LOTUS / MANDALA IMAGE */
.about-section::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  width: 900px;
  height: 900px;
  background-image: url("../image/m1.png"); /* background image */
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.06; /* very light */
  transform: translateY(-50%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

/* LEFT CONTENT */
.about-tag {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8b5a2b;
  display: inline-block;
  margin-bottom: 15px;
}

.about-content h2 {
  font-size: 42px;
  line-height: 1.25;
  font-family: "Playfair Display", serif;
  color: #3d2b1f;
  margin-bottom: 20px;
}

.about-content .highlight {
  background: #d66a2c;
  color: #fff;
  padding: 2px 8px;
}

.about-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #5c5047;
  max-width: 720px;
  margin-bottom: 25px;
}

/* PROGRESS */
.about-progress span {
  font-size: 14px;
  color: #3d2b1f;
}

.progress-line {
  width: 100%;
  height: 4px;
  background: #e3d8cf;
  margin: 10px 0 30px;
}

.progress-fill {
  width: 70%;
  height: 100%;
  background: #3d2b1f;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #d66a2c;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  transition: 0.3s;
  margin-top: 10px;
  color: #d35400;
  cursor: pointer;
  text-decoration: underline;
}


.about-btn:hover {
  background: #b85620;
}

/* RIGHT IMAGE */
.about-image {
  position: relative;
  border-radius: 200px 0 0 200px;
  overflow: hidden;
}

.container-xxl {
  position: relative;
  z-index: 2;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1400px) {
  .container-xxl {
    max-width: 1550px; /* wider hero container for large screens */
  }
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    border-radius: 30px;
  }

  .about-content h2 {
    font-size: 32px;
  }
}
/* ===== MOBILE / TABLET RESPONSIVE ===== */
@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr; /* stack columns vertically */
    gap: 30px; /* reduce gap */
    text-align: left; /* center content */
  }

  .about-image {
    border-radius: 30px;
    max-width: 100%;
    margin: 0 auto; /* center image */
  }

  .about-content h2 {
    font-size: 28px; /* smaller heading */
    line-height: 1.3;
  }

  .about-content .highlight {
    display: inline-block;
    padding: 2px 6px; /* smaller padding for mobile */
    font-size: 16px;
  }

  .about-content p {
    font-size: 14px;
    line-height: 1.6;
    max-width: 100%;
    margin: 0 auto 20px;
  }

  .about-btn {
    padding: 10px 20px;
    font-size: 13px;
    display: inline-block;
  }

  .about-section::after {
    width: 400px; /* smaller background lotus */
    height: 400px;
    right: -50px;
    opacity: 0.04; /* lighter for mobile */
  }
}

/* SMALLER PHONES */
@media (max-width: 575px) {
  .about-content h2 {
    font-size: 24px;
  }

  .about-content .highlight {
    font-size: 14px;
  }

  .about-content p {
    font-size: 13px;
  }

  .about-btn {
    padding: 8px 18px;
    font-size: 12px;
  }

  .about-section {
    padding: 60px 15px;
  }

  .about-section::after {
    width: 300px;
    height: 300px;
    right: -30px;
    opacity: 0.03;
  }
}
/* ===== LAPTOP RESPONSIVE (1024px – 1366px) ===== */
@media (min-width: 1024px) and (max-width: 1366px) {
  .about-section {
    padding: 70px 0;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr; /* balanced layout */
    gap: 40px; /* tighter gap for laptops */
    align-items: center;
  }

  .about-content h2 {
    font-size: 34px;
    line-height: 1.3;
  }

  .about-content .highlight {
    padding: 2px 6px;
    font-size: 18px;
  }

  .about-content p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 100%;
  }

  .about-image {
    border-radius: 120px 0 0 120px;
  }

  .about-section::after {
    width: 600px;
    height: 600px;
    right: -40px;
    opacity: 0.05;
  }

  .container-xxl {
    max-width: 1200px;
  }
}
/* ===== VIDEO BANNER ===== */
/* ===============================
   VIDEO BANNER
================================ */
.video-banner {
  position: relative;
  width: 100%;
  height: 620px;
  overflow: hidden;
}

/* Background Video */
.video-banner video {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: auto;
  min-width: 100%;
  object-fit: cover;
object-position: 50% 20%;

}

/* Dark Overlay */
.video-overlay {
  position: absolute;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}

/* Play Button (optional) */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #f7f2ed;
  border: none;
  font-size: 28px;
  color: #7a3e1d;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: 0.3s ease;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
}
.video-wrapper {
  width: 200%;
  height: 100vh;
  overflow: hidden;
  z-index: -1;            /* stays behind content */
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* fills screen without distortion */
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .video-banner {
    height: 400px
  }

  .play-btn {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }
}