/* =========================================================
   GLOBAL RESET + SMOOTH SCROLL
   ========================================================= */
   *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html{
    scroll-behavior: smooth;
  }
  body{
      font-family: "Playfair Display", serif;
    }
  
  
  /* =========================================================
     HEADER
     ========================================================= */

  .main-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    background: #fff;
    border-bottom: 1px solid #eee;
    position: relative;
  }
  
  .logo img{
    width: 200px;
    height: 110px;
    display: block;
  }
  
  /* Nav menu */
  .nav-menu{
    display: flex;
    gap: 28px;
    align-items: center;
  }
  
  .nav-menu a{
    position: relative;
    font-size: 20px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    padding-bottom: 4px;
  }
  
  /* underline hover for normal links */
  .nav-menu a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: goldenrod;
    transition: width 0.3s ease;
  }
  
  .nav-menu a:hover::after{
    width: 100%;
  }
  
  /* Book button (NO underline) */
  .book-btn{
    border: 2px solid goldenrod;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
  }
  
  .book-btn:hover{
    background: goldenrod;
    color: #fff;
  }
  
  /* Remove underline effect on Book Now */
  .nav-menu a.book-btn::after{
    display: none !important;
  }
  
  /* Social icons */
  .icons a{
    color: #000;
    font-size: 30px;
    margin-left: 10px;
    transition: color 0.3s ease;
    text-decoration: none;
  }
  
  .icons a:hover{
    color: goldenrod;
  }
  
  /* Hide header nav on smaller screens (you can later add hamburger) */
  @media (max-width: 900px){
    .nav-menu{
      display: none;
    }
  }
  
  /* =========================================================
     HERO / MIDDLE PART
     ========================================================= */
  .middle-part{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    background-image: url("image2.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
  }
  
  .middle-part::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
  }
  
  .middle-text{
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
  }
  
  .middle-text h1{
    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    margin-bottom: 18px;
  }
  
  .middle-text p{
    font-weight: bold;
    font-size: clamp(16px, 1.3vw, 20px);
    line-height: 1.6;
    color: #000;
    max-width: 900px;
    margin: 0 auto;
  }
  
  /* =========================================================
     FOUNDER SECTION
     ========================================================= */
  .founder-section{
    background: #fff;
    padding: 90px 40px;
  }
  
  .founder-container{
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 60px;
    align-items: center;
  }
  
  .founder-photo img{
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 240px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  }
  
  .founder-heading{
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 10px;
  }
  
  .founder-heading h2{
    font-size: 22px;
    letter-spacing: 3px;
    font-weight: 600;
    margin: 0;
  }
  
  .heading-line{
    height: 2px;
    width: 180px;
    background: rgba(0,0,0,0.30);
    display: inline-block;
  }
  
  .founder-content h3{
    font-family: "Playfair Display", serif;
    font-size: 40px;
    font-weight: 600;
    margin: 8px 0 18px;
  }
  
  .founder-content h3 span{
    font-size: 20px;
    font-weight: 500;
    opacity: 0.7;
  }
  
  .founder-content p{
    font-size: 18px;
    line-height: 1.9;
    max-width: 65ch;
    color: #222;
  }
  
  /* Founder mobile layout + circle image */
  @media (max-width: 900px){
    .founder-container{
      grid-template-columns: 1fr;
      gap: 30px;
      text-align: center;
    }
  
    .founder-heading{
      justify-content: center;
    }
  
    /* Make founder image circular on mobile */
    .founder-photo img{
      width: 260px;
      height: 260px;
      border-radius: 50%;
      margin: 0 auto;
      display: block;
    }
  
    .founder-content p{
      text-align: left;
      margin: 0 auto;
    }
  }
  
  /* =========================================================
     MOBILE SERVICES (ONLY SHOW ON PHONE)
     ========================================================= */
  .mobile-services{
    display: none; /* hide on laptop */
    padding: 35px 20px;
    text-align: center;
    background: #fff;
  }
  
  .mobile-services h2{
    font-family: "Playfair Display", serif;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 28px;
    color: #000;
  }
  
  /* The 2-left, 2-right layout */
  .mobile-services-nav{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 28px;
    justify-items: center;
    align-items: center;
    max-width: 420px;
    margin: 0 auto;
  }
  
  .mobile-services-nav a{
    font-family: "Playfair Display", serif;
    position: relative;
    font-size: 22px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    padding-bottom: 6px;
  }
  
  /* hover underline like header */
  .mobile-services-nav a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: goldenrod;
    transition: width 0.3s ease;
  }
  
  .mobile-services-nav a:hover::after{
    width: 100%;
  }
  
  /* Show mobile services ONLY on phone */
  @media (max-width: 768px){
    .mobile-services{
      display: block;
    }
  }
  
  /* =========================================================
     GOOGLE REVIEWS SECTION
     ========================================================= */
  .google-reviews{
    background: tan;
    padding: 90px 20px;
  }
  
  .reviews-title{
    font-family: "Playfair Display", serif;
    text-align: center;
    font-size: 46px;
    margin-bottom: 35px;
  }
  
  .reviews-grid{
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
  
  .review-card{
    background: #fff;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 14px 30px rgba(0,0,0,0.10);
  }
  
  .review-top{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
  }
  
  .review-avatar{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
  }
  
  .review-meta h4{
    margin: 0;
    font-size: 16px;
    font-weight: 700;
  }
  
  .review-meta p{
    margin: 2px 0 0;
    font-size: 12px;
    opacity: 0.7;
  }
  
  .google-icon{
    margin-left: auto;
    font-size: 18px;
    opacity: 0.65;
  }
  
  .review-stars{
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 8px;
  }
  
  .review-text{
    font-size: 14px;
    line-height: 1.6;
    color: #222;
    margin: 0;
  }
  
  /* Reviews: 1 column on phone */
  @media (max-width: 768px){
    .reviews-grid{
      grid-template-columns: 1fr;
    }
    .reviews-title{
      font-size: 34px;
    }
  }
  
  /* =========================================================
     FOOTER
     ========================================================= */
  .site-footer{
    background: white;
    color: #111;
    padding: 80px 40px 30px;
    font-size: 20px;
    width: 100%;
  }
  
  .footer-container{
    max-width: 1400px;
    width:100% ;
    margin: 0;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 0.8fr;
    gap: 80px;
    align-items: start;
  }
  .footer-col{
    text-align: left;
  }
  .footer-logo{
    width: 180px;
    height: auto;
    margin-bottom: 20px;
  }
  
  .footer-col h4{
    font-size: 25px;
    letter-spacing: 1px;
    margin-bottom: 18px;
    font-weight: 600;
  }
  
  .footer-col p{
    line-height: 1.7;
    margin-bottom: 20px;
  }
  
  .footer-col ul{
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-col ul li{
    margin-bottom: 12px;
  }
  
  .footer-col a{
    color: #111;
    text-decoration: none;
  }
  
  .footer-col a:hover{
    text-decoration: underline;
  }
  
  .footer-socials{
    display: flex;
    gap: 16px;
  }
  
  .footer-socials a{
    width: 42px;
    height: 42px;
    border: 1px solid #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .footer-socials a:hover{
    background: #111;
    color: #fff;
  }
  
  .footer-bottom{
    border-top: 1px solid rgba(0,0,0,0.3);
    margin-top: 60px;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
  }
  
  /* Footer responsive */
  @media (max-width: 900px){
    .footer-container{
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
    }
  
    .footer-socials{
      justify-content: center;
    }
  }
  
  /* =========================================================
     SERVICES PAGES (Makeup/Facials/Waxing/Hair)
     ========================================================= */

  .services-page{
    background: #fff;
    padding: 90px 20px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
  }
  .service-group-title{
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-weight: 700;
  text-align: left;
  margin: 80px 0 28px;
  position: relative;
}

.service-group-title::after{
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  background: rgba(0,0,0,0.15);
  margin-top: 12px;
}

  .services-title{
    font-family: "Playfair Display", serif;
    font-size: 56px;
    margin-bottom: 18px;
  }
  
  .services-subtext{
    color: #555;
    max-width: 850px;
    margin: 0 auto 30px auto;
    line-height: 1.8;
    font-size: 18px;
  }
  
  /* CTA button */
  .call-btn{
    display: inline-block;
    padding: 14px 34px;
    border: 2px solid #111;
    color: #111;
    text-decoration: none;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 70px;
    transition: 0.3s;
  }
  
  .call-btn:hover{
    background: #111;
    color: #fff;
  }
  
  /* Service list rows */
  .service-list{
    text-align: left;
    margin-top: 40px;
  }
  
  .service-row{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 26px 0;
    border-bottom: 1px solid rgba(0,0,0,0.15);
  }
  
  .service-left h3{
    font-size: 22px;
    margin-bottom: 8px;
  }
  
  .service-desc{
    color: #222;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
  }
  
  .service-desc:hover{
    text-decoration: underline;
  }
  
  .service-right{
    display: flex;
    gap: 14px;
    color: #444;
    font-size: 15px;
  }
  
  /* Category heading (optional) */
  .service-category{
    font-family: "Playfair Display", serif;
    font-size: 26px;
    font-weight: 600;
    margin: 50px 0 20px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    color: #000;
  }
  /* Alternating tan background for service rows */
.service-row:nth-of-type(even){
  background: tan;
}

.service-row{
  padding: 32px 20px;          /* more breathing room */
  margin: 0 -20px;             /* stretch background edge-to-edge */
}

  /* Services responsive */
  @media (max-width: 900px){
    .services-title{
      font-size: 42px;
    }
    .service-row{
      flex-direction: column;
      gap: 10px;
    }
  }
  
  /* =========================================================
     GALLERY BOX (TAN)
     ========================================================= */
  .gallery-box{
    background: tan;
    padding: 60px 40px;
    border-radius: 18px;
    max-width: 1200px;
    margin: 80px auto;
    box-shadow: 0 18px 40px rgba(0,0,0,0.10);
  }
  
  .gallery-title{
    font-family: "Playfair Display", serif;
    font-size: 40px;
    text-align: center;
    margin-bottom: 35px;
  }
  
  .gallery-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  
  .gallery-grid img{
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 14px;
    border: 6px solid rgba(255,255,255,0.6);
    transition: transform 0.3s ease;
  }
  
  .gallery-grid img:hover{
    transform: scale(1.03);
  }
  
  @media (max-width: 900px){
    .gallery-grid{
      grid-template-columns: 1fr;
    }
    .gallery-grid img{
      height: 260px;
    }
  }
  
  /* =========================================================
     BOOK PAGE (UNDER CONSTRUCTION)
     ========================================================= */
  .under-page{
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: #fff;
  }
  
  .under-card{
    width: 100%;
    max-width: 900px;
    background: tan;
    border-radius: 18px;
    padding: 60px 50px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.10);
    text-align: center;
  }
  
  .under-pill{
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid rgba(0,0,0,0.35);
    border-radius: 999px;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 700;
  }
  
  .under-title{
    font-family: "Playfair Display", serif;
    font-size: clamp(34px, 4.5vw, 56px);
    margin: 18px 0 12px;
  }
  
  .under-text{
    max-width: 65ch;
    margin: 0 auto 30px auto;
    line-height: 1.8;
    color: #222;
    font-size: 18px;
  }
  
  .under-actions{
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
  }
  
  .under-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 999px;
    border: 2px solid #111;
    color: #111;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: 0.25s ease;
    background: transparent;
  }
  
  .under-btn.primary{
    background: #111;
    color: #fff;
  }
  
  .under-btn:hover{
    transform: translateY(-2px);
  }
  
  .under-contact{
    max-width: 520px;
    margin: 0 auto;
    background: rgba(255,255,255,0.45);
    border-radius: 14px;
    padding: 18px 18px;
    text-align: left;
  }
  
  .contact-row{
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 6px;
    border-bottom: 1px solid rgba(0,0,0,0.12);
  }
  
  .contact-row:last-child{
    border-bottom: none;
  }
  
  .contact-row .label{
    font-weight: 700;
    color: #111;
  }
  
  .under-contact a{
    color: #111;
    text-decoration: none;
  }
  
  .under-contact a:hover{
    text-decoration: underline;
  }
  
  .under-note{
    margin-top: 18px;
    font-size: 14px;
    opacity: 0.75;
  }
  
  @media (max-width: 600px){
    .under-card{
      padding: 40px 22px;
    }
  }
  