:root {
  --primary: #d4a5a5;
  --dark: #1a1a1a;
  --light: #f9f6f6;
  --accent: #b76e79;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
  background: #ffffff;
  overflow-x: hidden;
  width: 100%;
}

/* Safety net so no image/video/frame can ever force horizontal scroll */
img,
video,
iframe {
  max-width: 100%;
}

body.menu-open {
  overflow: hidden;
}

/* HEADER */
header {
  width: 100%;
  padding: 0 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  height: 70px;
  background-size: cover;
  margin-bottom: px;
}

header h1 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  cursor: pointer;
}

nav a {
  margin-left: 20px;
  cursor: pointer;
  text-decoration: none;
  color: var(--dark);
  transition: 0.3s;
  font-size: 15px;
}

nav a:hover {
  color: var(--accent);
}

.hero h2 {
  font-size: 72px;
  margin-bottom: 20px;
  text-align: end;
  font-family: "Playfair Display", serif;
  font-weight: bold;
  font-style: capitalize;
}

.hero button {
  padding: 12px 25px;
  border: none;
  background: var(--accent);
  color: white;
  background: var(--accent);
  border-radius: 25px;
  cursor: pointer;
  background: #000000;
  transition: 0.3s;
}

.hero button:hover {
  background: #a05560;
}

/* SECTIONS */
section {
  padding: 60px 10%;
  text-align: center;
}

section h2 {
  font-family: "Playfair Display", serif;
  margin-bottom: 20px;
  font-size: 32px;
}

/* SERVICES */
#services p {
  max-width: 600px;
  margin: auto;
}

.services-subtitle {
  color: #555;
  font-size: 18px;
  margin-bottom: 40px;
  text-align: justify;
}

.my-services {
  background: var(--light);
  border-radius: 12px;
  padding: 40px 20px;
}
/* GALLERY */ /* Center aligned headers */
.gallery {
  padding: 60px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  font-family: "Poppins", sans-serif; /* Change to match your font */
}

.section-title h2 {
  font-size: 2rem;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.section-title p {
  color: #666;
  font-style: italic;
  margin-bottom: 30px;
}

/* Filter Buttons Styling */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid #ddd;
  padding: 8px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #000; /* Use your accent theme color here */
  color: #fff;
  border-color: #000;
}

/* Responsive Grid (Your boxes) */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.gallery-item {
  position: relative;
  height: 320px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.gallery-item img,
.gallery-item video,
.gallery-item iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

/* Hide filtered items smoothly */
.gallery-item.hide {
  transform: scale(0.8);
  opacity: 0;
  position: absolute;
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

/* Overlay Effect */
.gallery-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none; /* Allows clicking through to media */
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-item .overlay h3 {
  color: #fff;
  font-size: 1.1rem;
}

/* Gallery Footer & Stats Elements */
.enlarge-text {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 25px;
}

.gallery-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stars {
  color: #f39c12; /* Gold color */
  font-size: 1.2rem;
}

.stat-number {
  font-size: 1.2rem;
  font-weight: bold;
}

.stat-text {
  font-size: 0.85rem;
  color: #555;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 30px;
  background-color: #ddd;
}

/* Appointment CTA Button */
.btn-book {
  display: inline-block;
  background: #000; /* Brand background color */
  color: #fff;
  padding: 12px 35px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  transition: background 0.3s ease;
}

.btn-book:hover {
  background: #333;
}
/* CONTACT */ /* Base Layout Setup */
.contact-section {
  padding: 80px 0 0 0; /* No bottom padding so map rests cleanly on the footer */
  background-color: #fafafa;
  font-family: "Poppins", sans-serif;
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto 60px auto;
  padding: 0 20px;
}

/* Left Column Aesthetics */
.contact-info h2 {
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: #111;
}

.contact-subtitle {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 35px;
  line-height: 1.6;
}

.info-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.info-item i {
  font-size: 1.2rem;
  color: #000; /* Primary Brand Theme */
  margin-top: 4px;
}

.info-item h4 {
  margin: 0 0 4px 0;
  font-size: 1rem;
  color: #333;
}

.info-item a {
  color: #666;
  text-decoration: none;
  transition: color 0.2s ease;
}

.info-item a:hover {
  color: #000;
}

/* Beautiful Inline WhatsApp Button */
.whatsapp-btn-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #25d366;
  color: #fff !important;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-left: 15px;
  font-weight: 500;
}

.whatsapp-btn-inline:hover {
  background-color: #1ebd56;
}

/* Working Hours Interface */
.hours-block {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.hours-block h3 {
  margin-top: 0;
  font-size: 1.1rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.hours-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-block li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.9rem;
  color: #555;
}

.closed-tag {
  color: #c0392b;
  font-weight: 600;
}

/* Right Column Form Design */
.premium-form {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.premium-form h3 {
  margin-top: 0;
  font-size: 1.4rem;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.premium-form input,
.premium-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.95rem;
  background-color: #fcfcfc;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.premium-form input:focus,
.premium-form textarea:focus {
  border-color: #000;
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.03);
}

.btn-submit {
  width: 100%;
  background: #000;
  color: #fff;
  padding: 15px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-submit:hover {
  background: #222;
}

/* Fluid Map Frame */
.map-container {
  width: 100%;
  height: 400px;
  margin-top: 4px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  display: block;
}
/* FOOTER */
.footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 40px 10%;
}

.footer-links a,
.footer-social a {
  margin: 0 10px;
  cursor: pointer;
  color: #ccc;
  text-decoration: none;
}

.footer-links a:hover,
.footer-social a:hover {
  color: white;
}

.copyright {
  margin-top: 20px;
  font-size: 14px;
  color: #777;
}

/*Footer*/
.footer-social {
  margin-top: 20px;
}

.footer-social a {
  margin: 0 10px;
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #fff;
}

/********** SCROLL EFFECT **********/
header.scrolled {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

/*SERVICES*/
/* container gives 3D space */
.service-card {
  perspective: 1000px;
}

/* this flips */
.card-inner {
  position: relative;
  width: 100%;
  height: 260px;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

/* trigger flip */
.service-card:hover .card-inner {
  transform: rotateY(180deg);
}

/* front & back base */
.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  backface-visibility: hidden;
  overflow: hidden;
}

/* front side */
.card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-front h3 {
  position: absolute;
  bottom: 10px;
  left: 15px;
  color: white;
}

/* back side */
.card-back {
  background: #f9f6f6;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  padding-top: 30px;
}

/*Button style for service cards*/
.service-card .card-back button {
  padding: 10px 20px;
  border: none;
  background: var(--accent);
  color: white;
  border-radius: 25px;
  cursor: pointer;
  background: #000000;
  transition: 0.3s;
}
.service-card .card-back button:hover {
  background: #a05560;
}

.footer-social {
  margin-top: 20px;
}

.footer-social a {
  margin: 0 12px;
  font-size: 22px;
  color: #ccc;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #d4a5a5;
  transform: scale(1.2);
}

.footer-social a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #222;
  border-radius: 50%;
  font-size: 18px;
}

.footer-social a:hover {
  background: #b76e79;
  color: white;
}

/* LOGO BASE */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
}

/* IMAGE */
.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  border-radius: 50px;

  background-color: transparent;

  /* animation */
  opacity: 0;
  transform: translateY(-15px) scale(0.9);
  animation: logoFadeIn 0.9s ease-out forwards;
}

.logo:hover img {
  transform: scale(0.3);
  transition: 0.9s;
}

/* TEXT */
.logo h1 {
  font-size: 30px;
  font-weight: 700;

  opacity: 0;
  transform: translateX(-10px);
  animation: textSlideIn 0.9s ease-out forwards;
  animation-delay: 0.2s;
}

/* Highlight Nest */
.logo h1 h1 {
  color: #4da3ff;
}

/* ANIMATIONS */
@keyframes logoFadeIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes textSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

::view-transition-image-pair {
  border-radius: 50px;
}

/*Working hours*/
.hours {
  margin-top: 20px;
  font-size: 14px;
  color: #777;
  padding: 15px;

  background: #f9f6f6;
  border-radius: 10px;
  display: inline-block;
  max-width: 400px;
}

.hours h3 {
  margin-bottom: 10px;
  color: #000000;
  font-family: "Playfair Display", serif;
}
.hours p {
  margin: 5px 0;
  color: #333;
  font-family: "Poppins", sans-serif;
}

.button1 {
  padding: 12px 25px;
  border: none;
  background: var(--accent);
  color: white;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
}

.buttons {
  display: flex;
  margin-top: 20px;
  justify-content: center;
  gap: 20px;
  padding-top: 15px;

  flex: 1;
  overflow: hidden;
}
.learn-section {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 60px;
}

/* text */
.learn-text {
  flex: 1;
  font-family: Poppins, sans-serif;
  text-align: justify;
}
.learn-text h2 {
  margin-bottom: 20px;
  font-size: 40px;
}

.appointment-text h2 {
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 80px;
}

.appointment-text li {
  font-size: 18px;
  text-align: left;
  margin-left: 50px;
}

.appointment-text p {
  text-align: justify;
}

/* slider */
.learn-slider {
  flex: 1;
  overflow: hidden;
}

.slide-track {
  display: flex;
  width: calc(250px * 10);
  animation: scroll 18s linear infinite;
}

.slide {
  width: 250px;
  flex-shrink: 0;
  padding: 10px;
}

.slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
}

/* animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*About me*/ /* About Section Base Layout */
.about-section {
  padding: 100px 20px;
  background-color: #ffffff;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

.about-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

/* Elegant Image Presentation with Accent Box */
.about-image-wrapper {
  position: relative;
  padding: 10px;
}

.about-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 4px;
  position: relative;
  z-index: 2;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Luxury design detail: offset border behind the image */
.image-accent-border {
  position: absolute;
  top: 30px;
  left: -10px;
  width: 100%;
  height: 100%;
  border: 2px solid #000; /* Primary brand color / gold / dark slate */
  border-radius: 4px;
  z-index: 1;
}

/* Typography & Content Layout */
.about-tagline {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #888;
  margin-bottom: 8px;
}

.about-content h2 {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0 0 20px 0;
  color: #111;
}

.about-lead {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #333;
  font-weight: 500;
  margin-bottom: 20px;
}

.about-body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 35px;
}

/* Button Group Alignment */
.about-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Buttons Styling */
.btn-primary,
.btn-secondary {
  padding: 14px 30px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: #000;
  color: #fff;
  border: 1px solid #000;
}

.btn-primary:hover {
  background: #222;
  border-color: #222;
}

.btn-secondary {
  background: transparent;
  color: #000;
  border: 1px solid #000;
}

.btn-secondary:hover {
  background: #000;
  color: #fff;
}

/* Mobile Layout Tweaks */
@media (max-width: 768px) {
  .about-section {
    padding: 60px 20px;
  }
  .about-container {
    gap: 40px;
  }
  .about-image-wrapper img {
    height: 380px;
  }
  .image-accent-border {
    top: 20px;
    left: 0px;
  }
  .about-content h2 {
    font-size: 2rem;
  }
}

/*Sign up page*/

/* =========================
       POPUP OVERLAY
    ========================= */

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 100vh;

  background: rgba(0, 0, 0, 0.6);

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  visibility: hidden;

  transition: 0.3s;

  backdrop-filter: blur(5px);
}

.popup-overlay2 {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 100vh;

  background: rgba(0, 0, 0, 0.6);

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 1;
  visibility: visible;

  transition: 0.3s;
  margin-top: 80px;
  backdrop-filter: blur(5px);
}

.popup-overlay2 h2 {
  color: #ffffff;
}

/* ACTIVE POPUP */

.popup-overlay:target {
  opacity: 1;
  visibility: visible;
}

/* =========================
       CLOSE BUTTON
    ========================= */

.close-btn {
  position: static;
  right: 20px;
  margin-left: auto;
  text-decoration: none;

  font-size: 30px;
  color: #ffffff;
}

.close-btn:hover {
  color: #000;
}

/* =========================
       TITLE
    ========================= */

.popup-box h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #ffffff;
}

/* =========================
       FORM
    ========================= */

.popup-form {
  display: flex;
  flex-direction: column;
  margin-top: 210px;
}

.popup-form input {
  padding: 14px;

  border: 1px solid #ddd;
  border-radius: 12px;

  font-size: 15px;

  transition: 0.3s;
}

.popup-form input:focus {
  border-color: #d4af37;
  outline: none;
}

/* =========================
       REGISTER BUTTON
    ========================= */

.register-btn {
  background: #b76e79;
  color: white;

  border: none;

  padding: 15px;

  border-radius: 12px;

  cursor: pointer;

  font-size: 16px;

  transition: 0.3s;
}

.register-btn:hover {
  background: #b8942f;
}

/* =========================
       LOGIN TEXT
    ========================= */

.login-text {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #ffffff;
}

.login-text a {
  color: #b76e79;
  text-decoration: none;
  font-weight: 600;
}

/* =========================
       ANIMATION
    ========================= */

@keyframes popupAnimation {
  from {
    transform: translateY(-40px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* =========================
       RESPONSIVE
    ========================= */

@media (max-width: 500px) {
  .popup-box {
    padding: 30px 20px;
  }
}

/*Login page*/

/* =========================
       RESPONSIVE
    ========================= */

@media (max-width: 500px) {
  .popup-box {
    padding: 30px 20px;
  }
}

/* =========================
       POPUP OVERLAY FOR LOGIN
    ========================= */

.popup-form-login {
  opacity: 1;
  visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-overlay h3 {
  color: #ffffff;
}

/* about image */
.about-image img {
  width: 500px;
  height: auto;
  border-radius: 12px;
  transition: transform 0.3s;
  margin-top: 150px;
}

/* about image hover effect */
.about-image img:hover {
  transform: scale(1.05);
}
/* Booking dropdown */
.service-makeup {
  position: relative;
  display: inline-block;
}

/* Styling video */
.videos-container video {
  position: relative;
  width: 100%;
  height: 360px;
  border-radius: 12px;
}

.videos-container video:hover {
  transform: scale(1.05);
  transition: transform 0.3s;
}
.password-container {
  position: relative;
  width: 100%;
}

.password-container input {
  width: 100%;
  padding-right: 40px;
}

.toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
  color: #666;
}
/* Trainging image */
.training-image img {
  width: 100%;
  height: 860px;
  border-radius: 20px;
  object-fit: cover;
}

.training-image img:hover {
  transform: scale(1.05);
  transition: transform 0.3s;
}

/* WhatsApp button */
.whatsapp-btn {
  height: inherit;
  width: 50px;
  background: #25d366;
  color: white;
  border-radius: 30%;
  justify-content: center;
  align-items: center;
}

/* Shopping cart */
#shop {
  padding: 80px 10%;
  background: #fafafa;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 40px;
  margin-bottom: 10px;
}

.product-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  text-align: center;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.product-card h3 {
  margin: 15px 0 10px;
}

.product-card p {
  color: #d4af37;
  font-weight: bold;
  margin-bottom: 15px;
}

.product-card button {
  margin-bottom: 20px;
  padding: 10px 20px;
  border: none;
  background: black;
  color: white;
  border-radius: 30px;
  cursor: pointer;
}

/*Order form pop up*/
/* MODAL */

.order-form {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  margin-top: 50px;
}

.modal-content {
  background: white;
  width: 90%;
  max-width: 400px;
  margin: 8% auto;
  padding: 30px;
  border-radius: 20px;
  position: relative;
  animation: popup 0.3s ease;
}

@keyframes popup {
  from {
    transform: scale(0.7);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.close {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 30px;
  cursor: pointer;
}

.modal-content h2 {
  text-align: center;
  margin-bottom: 20px;
}

.modal-content input {
  width: 100%;
  padding: 14px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 10px;
}

.modal-content button {
  width: 100%;
  padding: 14px;
  border: none;
  background: black;
  color: white;
  border-radius: 30px;
  cursor: pointer;
  margin-top: 10px;
}

/*Terms and condifiton*/
/* TERMS MODAL */

.terms-condition {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  overflow: auto;
}

.terms-content {
  background: white;
  width: 90%;
  max-width: 700px;
  margin: 5% auto;
  padding: 40px;
  border-radius: 20px;
  position: relative;
  animation: popup 0.3s ease;
  line-height: 1.8;
}

.close-terms {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 35px;
  cursor: pointer;
}

.terms-content h1 {
  margin-bottom: 20px;
  font-size: 15px;
}

.terms-content h2 {
  margin-top: 20px;
  color: #d4af37;
}
.terms-content p {
  font-size: 12px;
}

.terms-link {
  color: #d4af37;
  cursor: pointer;
  font-weight: bold;
}

.terms-link:hover {
  text-decoration: underline;
}

.order-form button:hover {
  background-color: #a05560;
}

/*Button hover for shop cart*/
.product-container button:hover {
  background-color: #a05560;
}

.btnMakeup1:hover {
  background-color: #a05560;
}

.googleMap button:hover {
  background-color: #a05560;
}

.bookings button:hover {
  background-color: #a05560;
}

.service-form button:hover {
  background-color: #a05560;
}

.popup-box button:hover {
  background-color: #a05560;
}

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 20px;
}

.developer-credit {
  margin-top: 8px;
  font-size: 14px;
  opacity: 0.8;
}

.developer-credit p {
  color: #ffff;
}
.developer-credit a {
  color: #25d366;
  text-decoration: none;
}

/*Appointment*/
:root {
  --primary: #d4a5a5;
  --dark: #1a1a1a;
  --accent: #b76e79;
  --light: #f9f6f6;
}

/* ── APPOINTMENT PAGE LAYOUT ── */
.appt-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #3a1a20 100%);
  color: white;
  padding: 70px 10% 60px;
  text-align: center;
}
.appt-hero h2 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  margin-bottom: 14px;
}
.appt-hero p {
  color: #d4a5a5;
  font-size: 16px;
  max-width: 540px;
  margin: 0 auto;
}

.appt-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 70px 10%;
  align-items: start;
  background: white;
}
@media (max-width: 768px) {
  .appt-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 50px 6%;
  }
  .appt-hero h2 {
    font-size: 34px;
  }
}

/* ── LEFT INFO PANEL ── */
.appt-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  margin-bottom: 18px;
  color: var(--dark);
}
.appt-info p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 28px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 15px;
  color: #444;
}
.service-list li i {
  color: var(--accent);
  width: 18px;
}

.hours-card {
  background: var(--light);
  border-radius: 16px;
  padding: 22px 24px;
  margin-bottom: 24px;
}
.hours-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hours-card h4 i {
  color: var(--accent);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #555;
  padding: 6px 0;
  border-bottom: 1px solid #e8e8e8;
}
.hours-row:last-child {
  border-bottom: none;
}
.hours-row span:last-child {
  font-weight: 500;
  color: var(--dark);
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #555;
}
.contact-row i {
  color: var(--accent);
  width: 20px;
  text-align: center;
}
.contact-row a {
  color: inherit;
  text-decoration: none;
}
.contact-row a:hover {
  color: var(--accent);
}

/* ── BOOKING FORM PANEL ── */
/* Container Box & Panel View */
.appt-form-panel {
  max-width: 650px;
  margin: 40px auto;
  background: #ffffff;
  padding: 45px 40px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  font-family: "Poppins", sans-serif;
}

.appt-form-panel h3 {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  margin: 0 0 8px 0;
  letter-spacing: 0.5px;
  color: #111;
}

.form-subtitle {
  text-align: center;
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 35px;
}

/* Row Management for Date/Time fields */
.form-row {
  display: flex;
  gap: 20px;
}

.form-row .form-group {
  flex: 1;
}

/* Explicit and Clean Labels */
.form-group {
  margin-bottom: 24px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: #222;
}

/* Input Field Formatting */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group input[type="time"] {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #fafafa;
  color: #333;
  box-sizing: border-box;
  outline: none;
  transition: all 0.25s ease;
}

.form-group input:focus {
  border-color: #000;
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.04);
}

/* Service Chips Visibility System */
.service-chips-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fafafa;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #eee;
}

.chip-category h5 {
  margin: 0 0 10px 0;
  font-size: 0.85rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  background: #fff;
  border: 1px solid #ddd;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #444;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chip:hover {
  border-color: #000;
  color: #000;
}

/* High Visibility Selected State for Chips */
.chip.active {
  background: #000;
  color: #fff;
  border-color: #000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Bold Submission CTA */
.submit-btn {
  width: 100%;
  background: #000;
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  transition: background 0.2s ease;
}

.submit-btn:hover {
  background: #222;
}

/* Success View Structure */
.success-state {
  text-align: center;
  padding: 30px 10px;
}

.success-state.hidden-state {
  display: none;
}

.check-icon {
  width: 70px;
  height: 70px;
  background: #25d366;
  color: #fff;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px auto;
}

.booking-summary-highlight {
  margin-top: 15px;
  color: #b76e79; /* Signature brand tone contrast */
  font-weight: 600;
  font-size: 1.05rem;
}

.book-again-btn {
  background: transparent;
  border: 1px solid #000;
  color: #000;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  margin-top: 25px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.book-again-btn:hover {
  background: #000;
  color: #fff;
}

/* Responsive Structural Breakpoints */
@media (max-width: 600px) {
  .appt-form-panel {
    padding: 30px 20px;
    margin: 15px;
  }
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

/* ── SUCCESS STATE ── */
.success-state {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.success-state .check-icon {
  width: 70px;
  height: 70px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: #4caf50;
}
.success-state h3 {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  margin-bottom: 10px;
}
.success-state p {
  color: #666;
  font-size: 14px;
  line-height: 1.8;
}
.book-again-btn {
  margin-top: 24px;
  padding: 12px 28px;
  background: #111;
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  transition: 0.3s;
}
.book-again-btn:hover {
  background: var(--accent);
}

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #111;
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  z-index: 9999;
  transition:
    transform 0.4s,
    opacity 0.4s;
  opacity: 0;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.toast.error {
  background: #c0392b;
}

/* ── WHATSAPP STRIP ── */
.whatsapp-strip {
  background: #25d366;
  color: white;
  text-align: center;
  padding: 16px;
  font-size: 15px;
}
.whatsapp-strip a {
  color: white;
  font-weight: 600;
  text-decoration: none;
}
.whatsapp-strip i {
  margin-right: 8px;
}
/* ==========================
   LIGHTBOX
========================== */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s;
  z-index: 9999;
}

.lightbox.show {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 15px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  animation: zoom 0.3s ease;
}

@keyframes zoom {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.close-lightbox {
  position: absolute;
  top: 25px;
  right: 40px;
  color: #fff;
  font-size: 45px;
  cursor: pointer;
  transition: 0.3s;
}

.close-lightbox:hover {
  color: #d4af37;
}

.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 60px;
  height: 60px;

  border: none;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.15);

  color: #fff;

  font-size: 28px;

  cursor: pointer;

  transition: 0.3s;
}

.lightbox-btn:hover {
  background: #d4af37;
}

.prev {
  left: 30px;
}

.next {
  right: 30px;
}
.gallery-item img {
  cursor: pointer;
  transition: 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* ==========================================================
   MOBILE NAVIGATION & RESPONSIVE FIXES
   (Seshoka Digital Solutions — added for cross-device fit)
========================================================== */

/* Hamburger button — hidden on desktop */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 860px) {
  /* HEADER: keep logo + hamburger on one line, never overflow */
  header {
    padding: 0 5%;
  }

  .logo h1 {
    font-size: 18px;
    white-space: nowrap;
  }

  .logo {
    min-width: 0;
    flex-shrink: 1;
  }

  .logo-img {
    height: 40px;
    flex-shrink: 0;
  }

  .menu-toggle {
    display: flex;
  }

  /* NAV: becomes a full-height slide-in panel instead of an inline row */
  .navbar {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4px;
    padding: 25px 8%;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
    z-index: 999;
    box-shadow: 2px 0 24px rgba(0, 0, 0, 0.08);
  }

  .navbar.active {
    transform: translateX(0);
  }

  nav.navbar a {
    margin-left: 0;
    width: 100%;
    font-size: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
  }

  .navbar .cart-btn {
    margin-top: 10px;
    width: 100%;
    justify-content: center;
  }

  /* HERO */
  .hero {
    height: auto;
    min-height: 70vh;
    padding: 40px 20px;
  }

  .hero h2 {
    font-size: 34px;
    text-align: center;
  }

  /* SECTIONS: tighter side padding so text has room to breathe */
  section {
    padding: 50px 6%;
  }

  section h2 {
    font-size: 26px;
  }

  .services-subtitle {
    text-align: left;
  }

  /* GALLERY / SERVICES / SHOP GRIDS: never let a fixed min-width force overflow */
  .gallery-container,
  .services-container,
  .product-container {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 480px) {
  .logo h1 {
    font-size: 15px;
  }

  .logo-img {
    height: 34px;
  }

  .logo {
    gap: 6px;
  }

  .hero h2 {
    font-size: 26px;
  }

  .gallery-container,
  .services-container,
  .product-container {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    height: 260px;
  }

  .about-content h2 {
    font-size: 1.6rem;
  }

  .contact-info h2 {
    font-size: 1.6rem;
  }

  .premium-form,
  .appt-form-panel {
    padding: 25px 18px;
  }

  .whatsapp-btn-inline {
    display: flex;
    width: fit-content;
    margin-left: 0;
    margin-top: 10px;
  }
}

/* POPUP FORM (learnFromMe.html) — the old fixed 210px top margin pushed the
   whole form off-screen on short/mobile viewports */
.popup-form {
  margin-top: 20px;
}

.popup-box {
  max-height: 90vh;
  overflow-y: auto;
}

@media (max-width: 600px) {
  .popup-box {
    width: 92%;
    padding: 25px 20px;
  }
}
