body {
  margin: 0;
  line-height: 1.6;
  font-family: 'Montserrat', sans-serif;
  background: #08f3f3;
  color: #2c2a2a;
}

h1, h2, h3 {
  font-family: 'Cinzel', serif;
  letter-spacing: 2px;
  color: #4b1c6f;
}

  


.hero {
  background: linear-gradient(to right, #7fc2ee, #fed6e3);
  text-align: center;
  padding: 60px 20px;
  
    text-align: center;
    background-image: url("images/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding: 100px 20px;
  text-align: center;
  color: rgb(212, 36, 36)
  }
  
.logo {
  display: block;
  margin: 0 auto 15px;
  width: 140px;        /* 👈 smaller, perfect size */
  max-width: 60%;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.25));
}
@media (max-width: 768px) {
  .logo {
    width: 80px;       /* 👈 smaller on mobile */
  }
}
.hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
  
    text-shadow: 0 2px 6px rgba(0,0,0,0.25);
  }
  
.hero p {
  font-size: 18px;
  .hero p {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    font-size: 16px;
    color: #555;
    line-height: 1.5;
  }
  
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #2c7a7b;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
}

section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

h2 {
  text-align: center;
  color: #2c7a7b;
  margin-bottom: 20px;
}

.services .service-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  color: #2011f1;
}


.why-us ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.why-us li {
  margin: 10px 0;
}

.contact {
  background-image: url("images/background.jpg");
  background-position: center center; /* 👈 centers image */
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
 border-radius: 30px; 
  
  
}

footer {
  background: #2c7a7b;
  color: #fff;
  text-align: center;
  padding: 15px;
  
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  font-size: 28px;
  text-align: center;
  line-height: 55px;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  z-index: 1000;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
}


.booking {
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 25px;
  max-width: 700px;
  margin: 60px auto;
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.booking h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #4b1c6f;
}

/* Form layout */
.booking form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Inputs */
.booking input,
.booking select,
.booking textarea {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #ccc;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
}

/* Focus effect */
.booking input:focus,
.booking select:focus,
.booking textarea:focus {
  outline: none;
  border-color: #4b1c6f;
  box-shadow: 0 0 0 3px rgba(75, 28, 111, 0.15);
}

/* Textarea */
.booking textarea {
  min-height: 120px;
  resize: vertical;
}

/* Submit button */
.booking button {
  margin-top: 10px;
  padding: 14px;
  background: linear-gradient(to right, #7b4397, #dc2430);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.booking button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Mobile responsive */
@media (max-width: 600px) {
  .booking {
    padding: 40px 15px;
  }
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  letter-spacing: 2px;
  color: #4b1c6f; /* purple tone from logo */
  .hero h1::after {
    content: "";
    display: block;
    width: 120px;
    height: 2px;
    background: var(--gold);
    margin: 12px auto;
  }
  
}
:root {
  --gold: #d4af37;
  --purple: #4b1c6f;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero,
.booking,
section {
  animation: fadeUp 1.5s ease forwards;
}
.banner-img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 25px;
  margin-bottom: 25px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  
}

.service-card {
  background: rgb(218, 134, 197);
  border-radius: 20px;
  padding: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: scale(1.05);
}

.service-card img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 10px;
}
.gallery {
  padding: 60px 20px;
  text-align: center;
}

.gallery h2 {
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;          /* SAME HEIGHT */
  object-fit: cover;     /* CROPS, NO STRETCH */
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}
.gallery-grid img:hover {
  transform: scale(1.05);
}



.about-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Owner image */
.about-image img {
  
  width: 250px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  
  
}

/* Text section */
.about-text h2 {
  font-size: 32px;
  margin-bottom: 15px;
  font-weight: bold;
  color: #182bd1;
}

.about-text p {
  font-size: 18px;
  line-height: 2;   /* 👈 THIS controls paragraph spacing */
 font-variant: var(--gold); color: #ca0b1b;
}
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    width: 200px;
  }
}

.about-us {
  
  background-image: url("images/background.jpg");
  background-position: center center; /* 👈 centers image */
  background-repeat: no-repeat;
  background-size: cover;
}

.owner-img {
  width: 220px;
  border-radius: 15px;
  display: block;
  margin: 0 auto;
   
}

.owner-name {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #9b7b3e;   /* gold / wellness tone */
}
.owner-box {
  text-align: center;   /* centers image + text */
}

.owner-img {
  display: block;
  margin: 0 auto;       /* centers the image */
  width: 220px;
  border-radius: 15px;  /* use 50% for circular */
}

.owner-Degree {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #9b7b3e;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
}

img {
  display: block;
}



