/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
}

/* ===== TOP BANNER ===== */
.top-banner {
  background: url('../images/img12.jpeg') center/cover no-repeat;
  height: 75px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  position: relative;
}

.top-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.top-banner h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  position: relative;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background: #efe3d3;
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 13rem;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 200px;
}

.logo-text h3 {
  font-size: 18px;
  color: #7a4b2c;
}

.logo-text p {
  font-size: 12px;
  color: #b58b65;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: #7a4b2c;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #7a4b2c;
  transition: 0.3s;
}

.nav-links a:hover::after,
.nav-links .active::after {
  width: 100%;
}

/* RIGHT SIDE */
.right {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* SOCIAL ICONS */
.socials i {
  background: #c0392b;
  color: #fff;
  padding: 8px;
  border-radius: 50%;
  font-size: 12px;
  cursor: pointer;
}

/* CALL BUTTON */
.call-btn {
  background: #c89263;
  border: 2px solid ;
  padding: 10px 22px;
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  height: 50px;
  transition: 0.3s;
}

.call-btn:hover {
  background: #7a4b2c;
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* Floating Buttons */

.floating-buttons{
position:fixed;
right:15px;
bottom:30px;
display:flex;
flex-direction:column;
gap:2px;
z-index:999;
}

.call-btn1,
.whatsapp-btn{
width:55px;
height:55px;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
color:white;
border-radius:50%;
box-shadow:0 6px 20px rgba(0,0,0,0.25);
transition:.4s;
}

.call-btn1{
background:#19d9b9;
}

.whatsapp-btn{
background:#25D366;
}

.call-btn1:hover{
transform:translateY(-5px);
background:#7a4b2c;
}

.whatsapp-btn:hover{
transform:translateY(-5px);
background:#1ebe5d;
}

@media(max-width:600px){

.call-btn1,
.whatsapp-btn{
width:48px;
height:48px;
font-size:18px;
}

}


/* ================= CTA BANNER ================= */
.cta-banner {
  background: url('../images/img2.jpeg') center/cover no-repeat;
  min-height: 420px;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Top Text */
.top-text {
  position: absolute;
  top: 5px;
  width: 100%;
  text-align: center;
  color: #e6d3b3;
  font-weight: 600;
  font-size: 2rem;
  z-index: 2;
   animation: glow 1s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073, 
    0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
  }
  
  to {
    text-shadow: 0 0 20px #fff, 0 0 30px #ff4da6, 0 0 40px #ff4da6,
     0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6;
  }
}

/* Center Content */
.center-content {
  position: relative;
  text-align: center;
  z-index: 2;
  margin-bottom: 8rem;
  margin-top: 2rem;
  align-items: center;
}

/* Mandala */
.mandala {
  width: 300px;
  margin-bottom: -90px;
  align-items: center;
  justify-content: center;
}

.cta-overlay {
  background: rgba(0, 0, 0, 0.55);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-content {
  text-align: center;
  padding: 2rem;
  max-width: 700px;
}

.cta-content h2 {
  font-size: 2.4rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.cta-content h2 span {
  color: #c89263;
}

.cta-content p {
  font-size: 1rem;
  color: #eaeaea;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #7a4b2c;
  color: #fff;
  padding: 0.9rem 2.4rem;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  transition: 0.3s ease;
}

.cta-btn i {
  font-size: 1.2rem;
}

.cta-btn:hover {
  background: #7a4b2c;
  transform: translateY(-2px);
}


/* ===== Banner SECTION ===== */
/* .banner {
  height: 150vh;
  width: 100%;
  background: url('../images/img2.jpeg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
} */

/* Overlay */
/* .banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
} */

/* Top Text */
/* .top-text {
  position: absolute;
  top: 8px;
  width: 100%;
  text-align: center;
  color: #e6d3b3;
  font-weight: 600;
  font-size: 2rem;
  z-index: 2;
   animation: glow 1s ease-in-out infinite alternate;
} */

/* @-webkit-keyframes glow {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073, 
    0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
  }
  
  to {
    text-shadow: 0 0 20px #fff, 0 0 30px #ff4da6, 0 0 40px #ff4da6,
     0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6;
  }
} */

/* Center Content */
/* .center-content {
  position: relative;
  text-align: center;
  z-index: 2;
  margin-bottom: 8rem;
  align-items: center;
} */

/* Mandala */
/*.mandala {
  width: 350px;
  margin-bottom: -80px;
  align-items: center;
  justify-content: center;
} */

/* Title Box */
/* .hero-title {
  background: rgba(0,0,0,0.6);
  padding: 5px 20px;
  border-radius: 5px;
  display: inline-block;
  margin-top: 30rem;
  text-align: center;
  align-items: flex-end;
}

.hero-title h1 {
  color: #000;
  font-size: 38px;
  text-align: center;
}

.hero-title p {
  color: #d9c2a3;
  font-size: 18px;
} */


/* ================= HERO SECTION ================= */
.hero{
position:relative;
height: 100vh;
overflow:hidden;
}

.slide{
position:absolute;
width:100%;
height:100%;
background-size:cover;
background-position:center;
background-repeat:no-repeat;
opacity:0;
transition:opacity 1.5s ease-in-out;
}

.slide.active{
opacity:1;
}

.overlay{
position:absolute;
width:100%;
height:100%;
background:linear-gradient(to right, rgba(0,0,0,0.65), rgba(0,0,0,0.2));
}

.hero-content{
position:absolute;
top:50%;
left:8%;
transform:translateY(-50%);
color:white;
max-width:550px;
}

.hero-content h1{
font-family:'Playfair Display',serif;
font-size:65px;
line-height:1.2;
margin-bottom:20px;
}

.hero-content span{
color:#c89b3c;
}

.hero-content p{
font-size:18px;
margin-bottom:35px;
line-height:1.6;
}

.hero-btn{
display:inline-block;
padding:14px 38px;
background:#c89b3c;
color:white;
text-decoration:none;
border-radius:40px;
font-size:16px;
}

/* ===== SECTION ===== */
.services {
  background: #e9dfcf;
  padding: 80px 40px;
  text-align: center;
}

/* Title */
.title {
  font-size: 42px;
  color: #7a4b2c;
  margin-bottom: 10px;
}

.subtitle {
  color: #555;
  margin-bottom: 50px;
}

/* Layout */
.services-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

/* VIDEO */
.video-box {
  flex: 1;
  max-width: 550px;
  background: #000;
}

.video-box video {
  width: 80%;
  border-radius: 12px;
}

/* TEXT SIDE */
.services-text {
  flex: 1;
  text-align: left;
  padding: 40px;
  border-radius: 12px;
}

/* Each Item */
.service-item {
  margin-bottom: 25px;
  border-bottom: 1px solid #d6c5ae;
  padding-bottom: 15px;
}

.service-item h3 {
  color: #7a4b2c;
  font-size: 20px;
  margin-bottom: 5px;
  position: relative;
  text-align: center;
  animation: glow 1s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073, 
    0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
  }
  
  to {
    text-shadow: 0 0 20px #fff, 0 0 30px #ff4da6, 0 0 40px #ff4da6,
     0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6;
  }
}

.service-item p {
  color: #555;
  font-size: 12px;
  text-align: center;
}


/* ================= GALLERY ================= */
.gallery{
padding:80px 8%;
background-image: url("../images/img2.jpeg") ;
background-repeat: no-repeat;
background-size: cover;
background-position: center;
text-align:center;
}

.gallery h2{
font-family:'Playfair Display',serif;
font-size:46px;
margin-bottom:20px;
}

.gallery h2 span{
color: #7a4b2c;
}

.gallery-subtitle{
max-width:650px;
margin:0 auto 60px;
color:#666;
font-size:16px;
}

.gallery-container{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.gallery-card{
position:relative;
overflow:hidden;
border-radius:25px;
cursor:pointer;
}

.gallery-card img{
width:100%;
height:380px;
/* object-fit:cover; */
transition:.6s ease;
}

.gallery-overlay{
position:absolute;
inset:0;
background:linear-gradient(transparent,#00000090);
display:flex;
align-items:flex-end;
padding:25px;
opacity:0;
transition:.5s;
}

.gallery-overlay h4{
color:white;
font-size:20px;
font-family:'Playfair Display',serif;
}

.gallery-card:hover img{
transform:scale(1.12);
}

.gallery-card:hover .gallery-overlay{
opacity:1;
}


/* ================= CONTACT US ================= */
.contact{
padding:120px 8%;
background-image: url('../images/footer.png');
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}

h4 {
  text-align: center;
  color: #7a4b2c;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact p {
  text-align: center;
  font-size: 15px;
  color: #555;
  margin-bottom: 4rem;
}

.contact-container{
display:flex;
justify-content:space-between;
align-items:flex-start;
gap:60px;
flex-wrap:wrap;
}

.contact-form{
flex:1;
min-width:300px;
background:#fffaf4;
padding:45px 35px;
border-radius:30px;
box-shadow:0 12px 40px rgba(0,0,0,0.08);
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:15px 18px;
margin-bottom:20px;
border:none;
border-radius:40px;
font-size:15px;
background:white;
box-shadow:0 4px 15px rgba(0,0,0,0.05);
}

.contact-form textarea{
height:130px;
border-radius:20px;
resize:none;
}

.contact-btn{
display:inline-block;
padding:14px 38px;
background: #c89263;
color:white;
border:none;
border-radius:40px;
font-size:16px;
cursor:pointer;
transition:.4s;
}

.contact-btn:hover{
background:#7a4b2c;
}

/* ===== FOOTER ===== */
.footer {
  background: #e9dfcf;
  padding: 60px 40px;
  position: relative;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
}

/* LOGO */
.footer-logo img {
  width: 220px;
  height: 170px;
  margin-bottom: 10px;
}

.footer-logo h2 {
  color: #7a4b2c;
}

.footer-logo p {
  color: #a67c52;
}

/* HEADINGS */
.footer-col h3 {
  color: #7a4b2c;
  margin-bottom: 15px;
}

.footer-col h4 {
  margin-top: 15px;
}

/* LIST */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.footer-col a {
  text-decoration: none;
  color: #444;
}

.footer-col a:hover {
   color: #c89263;
}

/* TEXT */
.footer-col p {
  font-size: 14px;
  margin-bottom: 8px;
  color: #444;
}

/* EMAIL */

.email-text {
  font-size: 20px;
  display: inline-block;
}
.email a {
  text-decoration: underline;
  font-size: 1rem;
}

/* INPUT */
.footer-col input {
  width: 100%;
  height: 20%;
  padding: 12px;
  border-radius: 25px;
  border: 1px solid #ccc;
  margin: 10px 0;
}

/* BUTTON */
.book-btn  {
  background: #a67c52;
  border: 2px solid #7a4b2c;
  padding: 10px 20px;
  border-radius: 25px;
  color: white;
  cursor: pointer;
  display: inline-block;
}

/* SPACING */
.mt {
  margin-top: 20px;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}


/* ===== RESPONSIVE ===== */

/* 1024px */
@media screen and (max-width:1024px){
  .hero{
    height: 85vh;
  }

  .gallery-container{
grid-template-columns:repeat(3,1fr);
}

 .cta-content h2 {
    font-size: 2.1rem;
  }
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #efe3d3;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 20px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .right {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

   .services-wrapper {
    flex-direction: column;
  }

  .services-text {
    text-align: center;
  }
}

/* ===== RESPONSIVE ===== */
@media(max-width: 768px) {

  .left-info {
    left: 20px;
    top: 80px;
  }

  .mandala {
    width: 150px;
    margin-bottom: -60px;
  }

  .hero-title h1 {
    font-size: 26px;
  }

  .hero-title p {
    font-size: 14px;
  }

  .top-text {
    font-size: 20px;
  }

  .mandala {
    width: 250px;
  }

   .hero{
    height: 80vh;
  }

  .gallery-container{
grid-template-columns:repeat(2,1fr);
}

.gallery h2{
font-size:36px;
}

.cta-banner {
    min-height: 380px;
  }

  .cta-content h2 {
    font-size: 1.9rem;
  }

  .email a {
    font-size: 14px;
  }
}

/* 480px */
@media(max-width:480px){

  .hero{
    height: 45vh;
  }

  .gallery{
padding:50px 6%;
}

.gallery-container{
grid-template-columns:1fr;
}

.gallery h2{
font-size:30px;
}

.gallery-card img{
height: 400px;
}

 .cta-banner {
    min-height: 340px;
  }

  .cta-content h2 {
    font-size: 1.5rem;
  }

  .cta-content p {
    font-size: 0.95rem;
  }

  .cta-btn {
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
  }

}