/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: 'Comic';
  src: url('assets/comic.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root {
  --bg: #f8f9fa;
  --fg: #111;
  --card-bg: #fff;
  --accent: #6c63ff;
  --hero-bg: #f0f0f2;
}

[data-theme="dark"] {
  --bg: #333333; /* Greyish dark background */
  --fg: #eaeaea;
  --card-bg: #1a1a1a;
  --accent: #bb86fc;
  --hero-bg: #1c1c1c;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--fg); /* Use the foreground color variable */
  background: var(--bg); /* Use the background color variable */
}

.hero-logo {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
}

.hero-logo img {
  height: 180px;
  width: auto;
  box-shadow: 0 0 44px rgba(80, 10, 120, 0.9);
  transition: transform 0.5s ease, box-shadow 0.7s ease;
}

@media (max-width: 768px) {
  .hero-logo img {
    height: 100px; /* Smaller on phones */
  }

  .hero-logo {
    top: 1rem;
    left: 1rem;
  }
}

.hero-logo img:hover{
  box-shadow: 0 0 72px rgba(22, 49, 186, 0.9); /* stronger glow on hover */
  transform: scale(1.01); /* subtle zoom on hover */
}



/* Hero Section */
.hero {
  height: auto;
  padding: 3.5rem 0 2rem 0;  /* space around content, starts from top */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--hero-bg);
  position: relative;
}

.hero-box {
  width: 90%;
  background: url('assets/bgimage.webp') no-repeat center center/cover;
  border-radius: 2rem;
  padding: 8rem 2rem; /* was 16rem – now balanced */
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
}



.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}


.hero-nav {
  position: absolute;
  top: 5rem;
  right: 8rem;
  display: flex;
  gap: 1rem;
  z-index: 5;
}


.hero-nav a {
  position: relative;
  display: inline-block;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 0.8rem 1.8rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, #9a6aff, #ff6bc0);
  box-shadow: 0 4px 8px rgba(255, 108, 192, 0.3);
  overflow: hidden;
  transition: all 0.25s ease;
  transform: translateY(-6px);
  z-index: 1;
}

.hero-nav a {
  position: relative;
  display: inline-block;
  color: #000000;
  font-family: 'Comic',sans-serif;
  font-weight: 550;
  text-decoration: none;
  padding: 0.8rem 1.8rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, #f6d365, #fda085);
  box-shadow: 0 8px 15px rgba(253, 160, 133, 0.4);
  transform: translateY(-8px);
  transition: all 0.25s ease-in-out;
  z-index: 2;
  opacity: 80%;
}

.hero-nav a::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f6d365aa, #fda085aa);
  opacity: 0.5;
  border-radius: 2rem;
  filter: blur(8px);
  z-index: 1;
  transition: opacity 0.25s ease-in-out;
}

.hero-nav a:hover {
  transform: translateY(0);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.hero-nav a:hover::before {
  opacity: 0;
}



@media (max-width: 768px) {
  .hero-nav {
    top: 1rem;
    right: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
  }

  .hero-nav a {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }
}





.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #20c35c; /* WhatsApp green */
  color: rgb(252, 221, 255);
  padding: 0.8rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  font-family:Georgia, 'Times New Roman', Times, serif;
  box-shadow: 0 0 60px rgba(63, 218, 40, 0.6); /* green glow */
  transition: transform 0.5s ease, box-shadow 0.7s ease;
  margin-bottom: 1rem;
  margin-right: 1rem;
}

.cta-button:hover {
  box-shadow: 0 0 120px rgba(68, 57, 194, 0.997); /* stronger glow on hover */
  transform: scale(1.12); /* subtle zoom on hover */
}

.whatsapp-logo {
  height: 24px;
  width: 24px;
}

/* Services Section */
:root {
  --card-bg: rgb(42, 42, 42);
}

.popularMassages {
  padding: 1rem 3rem;
  text-align: center;
  background: var(--card-bg);
}

.popularMassages-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.4s ease;
  cursor: pointer;
}

.popularMassages-link:hover .popularMassages-item,
.popularMassages-link:focus .popularMassages-item {
  box-shadow: 0 0 20px rgba(196, 27, 182, 0.5);
  transform: translateY(-4px) scale(1.08);
}

.popularMassages-link:focus .popularMassages-item {
  outline: 2px solid rgba(196, 27, 182, 0.8);
  outline-offset: 2px;
}

.popularMassages h2 {
  font-family: 'Comic Sans MS', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.popularMassages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  background: rgba(0, 0, 0, 0.3);
  padding: 2rem;
  border-radius: 10px;
  
  /* ✨ Add these: */
  max-width: 1200px;
  margin: 0 auto;
}

.popularMassages-item {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.7s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}


.popularMassages-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-family: 'Comic Sans MS', sans-serif;
}

.popularMassages-media {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  margin: 0 auto 1rem auto;
}

.popularMassages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  padding: 2rem;
  border-radius: 10px;
  max-width: 1200px;
  margin: 0 auto;
}



/* Testimonials Section */
.testimonials {
  padding: 2.5rem 2rem;
  text-align: center;
  background: var(--card-bg); /* Use the card background color */

}

.testimonials h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.testimonial-item {
  background: var(--card-bg); /* Use the card background color */
  background: rgb(43, 43, 43);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-item span {
  display: block;
  margin-top: 1rem;
  font-style: italic;
}

/* Contact Section */
.contact {
  padding: 1.5rem 2rem;
  background: var(--card-bg); /* Use the card background color */
  text-align: center;
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

#contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#contact-form input,
#contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

#contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

#contact-form button {
  background: #A0DAA9;
  color: #333;
  padding: 0.8rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#contact-form button:hover {
  background: #8CC084;
}

.cta-button.whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #25D366; /* WhatsApp green */
  color: white;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.6rem 1.4rem;
  border: none;
  border-radius: 2rem;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 6px 14px rgba(37, 211, 102, 0.3);
}

.cta-button.whatsapp-button:hover {
  background-color: #1ebe5d;
  transform: translateY(-2px);
}

.whatsapp-logo {
  width: 20px;
  height: 20px;
}


.contact-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  margin-top: 2rem;
}

.or-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--fg);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.8rem 1.6rem;
  border-radius: 2rem;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.cta-button.whatsapp-button {
  background-color: #25D366;
  color: white;
  box-shadow: 0 6px 14px rgba(37, 211, 102, 0.4);
}

.cta-button.whatsapp-button:hover {
  background-color: #1ebe5d;
  transform: translateY(-2px);
}

.cta-button.call-button {
  background-color: #3B82F6;
  color: white;
  box-shadow: 0 6px 14px rgba(59, 130, 246, 0.4);
}

.cta-button.call-button:hover {
  background-color: #2563EB;
  transform: translateY(-2px);
}

.button-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* Mobile fix: vertical stacking */
@media (max-width: 600px) {
  .contact-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}





/* Footer */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 2rem;
}

.social-links a {
  color: #fff;
  margin: 0 1rem;
  text-decoration: none;
}

.social-links a:hover {
  color: #A0DAA9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
      font-size: 2rem;
  }

  .hero p {
      font-size: 1rem;
  }

  /* Show hamburger and hide menu by default */
  .hamburger {
      display: flex;
  }

  nav ul.nav-menu {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 70px;
      left: 0;
      width: 100%;
      background: #3A3A3A;
      padding: 1rem 0;
  }

  nav ul.nav-menu.active {
      display: flex;
  }

  nav ul.nav-menu li {
      text-align: center;
      margin: 0.5rem 0;
  }
}

/* Ensure the WhatsApp button is centered */
.whatsapp-button {
  display: block; /* Make it a block element to allow margin: auto */
  margin: 1rem auto; /* Center the button with margin */
  text-align: center; /* Ensure text and image inside are centered */
  margin-left: 6rem;
  margin-right:6rem;
}

/* Contact Section */
.contact {
  padding: 1rem 2rem 2rem 2rem; /* Increased top padding to account for fixed header */
  background: var(--card-bg);
  text-align: center;
}

/* Google Map Styling */
.google-map {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 450px;
}

.google-map iframe {
  width: 100%;
  height: 100%;
  pointer-events: none; /* Prevents drag */
}

.map-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: transparent;
  cursor: pointer;
}


.location h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}



@media (max-width: 768px) {
  .hero-nav {
    top: 1rem;
    right: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.5rem;
  }

  .hero-nav a {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }

  .hero-logo {
    top: 5rem; /* pushes logo down if nav is too close */
  }
}

#custom-map {
  width: 100%;
  height: 450px;
}

