/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #fff;
  overflow-x: hidden;
   background: linear-gradient(to bottom, #0e1f09, #000000,#070f04);
}

/* Header / Navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 4rem;
  background: rgba(15, 20, 15, 0.8);
  backdrop-filter: blur(8px);
  z-index: 1000;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.8rem;

}

.logo-img {
  height: 45px;
  width: auto;
}

.logo-text {
  font-size: 1.6rem;
  font-weight: 700;
  color: #bdbdbd;
  letter-spacing: 1px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #3c9917;
  transition: width 0.3s;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url('images/f28243de2beff31caf923e967466ee0c.jpg') no-repeat center center/cover;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 2rem;
  position: relative;
}

@media (max-width: 768px) {
 .hero{
    background-attachment: scroll;
 }
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 15, 10, 0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-logo {
  height: 100px;
  width: auto;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

#subheading{
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.1rem;
  color: #eaeaea;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}

.btn {
  text-decoration: none;
  padding: 0.8rem 1.8rem;
  border: 2px solid #3c9917;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn.primary {
  background: #3c9917;
  color: #111;
}

.btn.primary:hover {
  background: transparent;
  color: #3c9917;
}

.btn.secondary {
  background: transparent;
  color: #3c9917;
}

.btn.secondary:hover {
  background: #3c9917;
  color: #111;
}
@media (max-width: 768px) {
    .buttons{
    flex-direction: column;
    }

    #subheading{
      font-size: 1.4rem;}
    
}
/* ---------------- Our Services Section with Image Layers ---------------- */

.services {
  background: linear-gradient(to bottom, #0a160600, #0e0f0e);  
  color: #f1f1f1;
  padding: 6rem 2rem;
  text-align: center;
}

.services-header {
  margin-bottom: 4rem;
}

.services-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  color: #3c9917;
  margin-bottom: 1rem;
}

.our-gallery-heading{
   font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  color: #3c9917;
  margin-bottom: 1rem;
}
.services-header p {
  color: #ccc;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Flex container for both menus */
.services-menus {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}

/* Each menu container */
.service-menu {
  position: relative;
  width: 380px;
  height: 478px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(119, 217, 110, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* The background image layer */
.service-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('images/pic4.jpg') no-repeat center center/cover; /* placeholder */
  background-attachment: fixed;
  opacity: 0.55; /* adjust for more/less visibility of image */
  z-index: 0;
}

/* The semi-transparent overlay to ensure text readability */
.service-menu::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.61);
  z-index: 1;
}

/* The text content sits above both layers */
.service-menu h3,
.service-menu ul {
  position: relative;
  z-index: 2;
}

.service-menu h3 {
  color: #3c9917;
  font-size: 1.5rem;
  border-bottom: 2px solid #3c9917;
  padding-bottom: 0.5rem;
  margin: 2rem 2rem 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: left;
}

.service-menu ul {
  list-style: none;
  margin: 0 2rem 2rem;
  text-align: left;
}

.service-menu li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
  font-size: 1rem;
  color: #e5e5e5;
}

.service-menu li span:last-child {
  color: #3c9917;
  font-weight: 600;
}


/* Background for Hair Services menu */
.service-menu.hair::before {
  background: url('images/menu\ photo3.jpg') no-repeat center center/cover;
  background-attachment: fixed;
  background-size: 40%;
  background-position: 23%;
}

/* Background for Facial Services menu */
.service-menu.facial::before {
  background: url('images/pic4.jpg') no-repeat center center/cover;
  background-attachment: fixed;
  background-size: 40%;
  background-position: 75% 95%;
}

/* ----------- NAVIGATION RESPONSIVE STYLES ----------- */

/* Hamburger icon styling */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
  z-index: 1100;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: #3c9917;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Initially hide nav on mobile */
@media (max-width: 768px) {
  nav {
    position: fixed;
    top: 70px;
    right: 0;
    width: 70%;
    height: calc(100vh - 70px);
    background: rgba(15, 20, 15, 0.95);
    backdrop-filter: blur(10px);
    transform: translateX(100%);
    transition: transform 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  nav ul {
    flex-direction: column;
    gap: 2rem;
  }

  nav a {
    font-size: 1.3rem;
  }

  /* Show menu toggle on mobile */
  .menu-toggle {
    display: flex;
  }

  /* Hide nav on mobile by default */
  nav.active {
    transform: translateX(0);
  }

  /* Animate hamburger to 'X' when active */
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* Hide normal desktop nav layout */
  nav ul {
    display: flex;
  }
  .hero-logo {
  margin-top: 35px;
}
 .hero h1 {
  font-size: 40px;
}  

.hero p{
    font-size: 17px;
}

.services-header h2 {
    font-size: 38px;
}

.service-menu.hair::before  {
    background-attachment: scroll;
    background-size: 125%;
}
.service-menu.facial::before {
    background-attachment: scroll;
    background-size: 145%;
}
#gallery{
  background: linear-gradient(to bottom,#0e0f0e, #0a160600 );
  color: #f1f1f1;
  padding: 80px 0;
}

}

/* ====== Our Gallery Section ====== */

.gallery-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
  padding: 0 20px;
}


#gallery p {
  color: #ccc;
  max-width: 600px;
  margin: auto;
  margin-bottom: 50px;
  line-height: 1.6;
  font-size: 1.1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding-top: 20px;
  padding-bottom: 30px;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.gallery-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(1, 225, 145, 0.4);
}

/* ====== Responsive Design ====== */

/* Tablets */
@media (max-width: 768px) {
  .our-gallery-heading {
    font-size: 2rem;
  }

  .gallery-item img {
    height: 450px;
  }
}

/* Phones */
@media (max-width: 480px) {
  #gallery {
    padding: 10px 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .gallery-item img {
    height: 420px;
  }

  .our-gallery-heading{
   font-family: "Playfair Display", serif;
  font-size: 38;
  color: #3c9917;
  margin-bottom: 1rem;
}

}

/*about */
.about {
  padding: 100px 0;
  color: #f1f1f1;
  font-family: "Poppins", sans-serif;
}

.about-container {
   background-color: #070f0400; 
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  gap: 60px;
  border-radius: 14px;
}

.about-us-heading{
      font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  color: #3c9917;
  margin-bottom: 1rem;
  text-align: center;
}
/* ==== MEDIA / VIDEO ==== */
.about-media {
  flex: 1;
  display: flex;
  justify-content: center;
  border-radius: 15px;
  overflow: hidden;
  width: 320px;
  height: 585px;
  box-shadow: 0 0 20px rgba(60, 153, 23, 0.15);
  padding: 0;
  margin: 0;
}

.about-video,
.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

/* ==== TEXT CONTENT ==== */
.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #3c9917;
  font-family: "Playfair Display", serif;
  
}

.about-text h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 25px;
  color: #f1f1f1;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #dcdcdc;
}

.about-text strong {
  color: #3c9917;
}

.about-highlights {
  list-style: none;
  margin-top: 25px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-highlights li {
  background: #0a1606;
  border: 1px solid #3c9917;
  color: #3c9917;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: background 0.3s ease, color 0.3s ease;
}

.about-highlights li:hover {
  background: #3c9917;
  color: #000;
}

.note {
  background-color: #141b14;
  border-radius: 10px;
  font-size: 0.9rem;
  color: #999;
  margin-top: 20px;
  font-style: italic;
  padding: 10px;
  
}

/* ==== RESPONSIVE ==== */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .about-media, .about-video,
.about-media img {
    width: 320px;
    height: 280px;
    margin: 0px;
    
  }

  .about-highlights {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .about {
    padding: 60px 20px;
  }

  .about-text h2 {
    font-size: 38px;
  }

  .about-text h3 {
    font-size: 1.2rem;
  }



  .about-highlights li {
    font-size: 0.85rem;
    padding: 6px 12px;
  }
}

.contact {
  padding: 100px 20px;
  color: #F1F1F1;
  font-family: "Poppins", sans-serif;
}

.contact-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  background: rgba(15, 20, 15, 0.8);
;
  box-shadow: 0 0 20px rgba(1, 225, 38, 0.05);
}

.contact-info {
  flex: 1 1 450px;
  padding: 60px;
}

.contact-info h2 {
   font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #3c9917;
  font-family: "Playfair Display", serif;
}

.contact-info h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: #3c9917;
  border-radius: 2px;
}

.contact-info p {
  line-height: 1.7;
  color: #F1F1F1;
  opacity: 0.9;
  margin-bottom: 25px;
}

.contact-details p {
  margin: 10px 0;
}

.contact-details strong {
  color: #3c9917;
}

.contact-details a {
  color: #F1F1F1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #3c9917;
}

.opening-hours h3 {
  margin-top: 40px;
  color: #3c9917;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

.opening-hours table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

.opening-hours td {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
}

.opening-hours td:first-child {
  color: #F1F1F1;
  opacity: 0.9;
}

.opening-hours td:last-child {
  text-align: right;
  color: #3c9917;
  font-weight: 600;
}

.map {
  flex: 1 1 450px;
  min-height: 400px;
  overflow: hidden;
}

.map iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(0%) brightness(80%) invert(0%);
  transition: filter 0.3s ease;
}

.map iframe:hover {
  filter: grayscale(0%) brightness(100%) invert(0%);
}

/* 📱 Responsive Layout */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    text-align: center;
  }

  .contact-info {
    padding: 40px 15px;
     width: 100%;
     align-items: center;
  }

  .map {
    height: 300px;
  }


  .opening-hours table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  text-align: start;
}

.contact-info h2{
    font-size: 38px;
}


}


/*footer styling*/

/* Footer Section */
/* ===== Footer Section ===== */
.footer {
  color: #ffffff;
  padding: 60px 20px 30px;
  font-family: "Poppins", sans-serif;
   background: rgba(15, 20, 15, 0.8);
  backdrop-filter: blur(8px);
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

/* --- Logo & Tagline --- */
.footer-logo {
  flex: 1 1 220px;
}

.footer-logo img {
  width: 90px;
  height: auto;
  margin-bottom: 10px;
}

.footer-logo h3 {
  font-size: 1.4rem;
  color: #3c9917;
  margin-bottom: 5px;
}

.footer-logo p {
  font-size: 0.95rem;
  color: #ccc;
}

/* --- Quick Links --- */
.footer-links {
  flex: 1 1 150px;
}

.footer-links h4 {
  color: #3c9917;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #3c9917;
}

/* --- Working Hours --- */
.footer-hours {
  flex: 1 1 200px;
}

.footer-hours h4 {
  color: #3c9917;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.footer-hours ul {
  list-style: none;
  padding: 0;
  font-size: 0.95rem;
  color: #ccc;
}

.footer-hours ul li {
  margin-bottom: 6px;
}

/* --- Social Media --- */
.footer-socials {
  flex: 1 1 150px;
}

.footer-socials h4 {
  color: #3c9917;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: #0a1606;
  border-radius: 50%;
  color: #3c9917;
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #3c9917;
  color: #000000;
  transform: translateY(-3px);
}

/* --- Footer Bottom --- */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #0a1606;
  padding-top: 15px;
  font-size: 0.9rem;
  color: #888;
}

/* --- Responsive --- */
@media (max-width: 950px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .social-icons {
    justify-content: center;
  }

  .map-button {
    position: absolute;
 align-self: center;
 left: 0%;
 top: 80%;
}
}


.map-container {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: brightness(0.8);
}


/*--------------------*/
.contact-section {
  color: #fff;
  padding: 60px 8%;
}

.contact-container {
  display: flex;
  flex-direction: row-reverse;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

/* Map Styling */
.map-container {
  position: relative;
  flex: 1 1 45%;
  min-width: 350px;
  height: auto;
  border-radius: 12px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: brightness(0.8);
}

/* Centered Button on Map */
.map-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #3c9917;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 26px;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.map-button:hover {
  background-color: #4bb11a;
  transform: translate(-50%, -50%) scale(1.05);
}

/* Contact Details */
.contact-details {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}

.contact-details h2 {
  color: #3c9917;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.contact-details h3 {
  color: #3c9917;
  margin-top: 20px;
  font-size: 1.2rem;
}

.contact-details p {
  line-height: 1.6;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column-reverse;
  }

  .map-container, .contact-details {
    flex: 1 1 100%;
  }

  .map-container iframe {
    height: 300px;
  }

  .map-button {
  position: absolute;
  top: 50%;
  left: 45%;
}

}
