/* ============================
   Base Styling
============================= */
 html, body {
  scroll-behavior: auto !important; /* disable default smooth scroll */
  overflow-x: hidden;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #121212;
  color: #fff;
  margin: 0;
  padding: 0;
}

/* ============================
   Brand Colors & Accents
============================= */
.gold-accent {
  color: #d4af37 !important;
}

.btn-gold-outline {
  color: #d4af37;
  border: 2px solid #d4af37;
  background-color: transparent;
  transition: all 0.3s ease;
}

.btn-gold-outline:hover {
  background-color: #d4af37;
  color: #fff;
  border-color: #d4af37;
}

/* Optional glow effect */
/* .glow-title {
  text-shadow: 0 0 10px #d4af37, 0 0 20px #d4af37;
} */

/* ============================
   Header & Navbar
============================= */
.glass-header {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  z-index: 9999;
}

.navbar .nav-link {
  position: relative;
  color: #fff;
  /* font-weight: bold; */
  padding: 0.5rem 1rem;
  transition: color 0.4s ease;
  overflow: hidden;
  font-size: 1.1rem;
}

/* Liquid underline effect */
.navbar .nav-link::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #f9d423, #ff4e50); /* golden to pinkish fluid color */
  transition: width 0.5s ease, left 0.5s ease;
  border-radius: 2px;
  transform: translateX(-50%);
}

/* On hover: underline grows like liquid */
.navbar .nav-link:hover::before {
  width: 80%;
}

/* Optional: animated text color */
.navbar .nav-link:hover {
  color: #f9d423;
}

/* Optional: active state */
.navbar .nav-link.active::before {
  width: 80%;
  color:#fff;
}

.navbar .nav-link.active {
  font-weight: bold;
  color: #f9d423 !important; /* gold accent */
}

/* ============================
   Section Base Styles
============================= */
section {
  min-height: 100vh;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fullscreen-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

@supports (-webkit-touch-callout: none) {
  .fullscreen-section {
    min-height: -webkit-fill-available;
  }
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* ============================
   Hero
============================= */
.text-gold {
    color: #d4af37;
}

.glow-title {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.z-2 {
    z-index: 2;
}

/* ============================
   Services
============================= */

  .service-grid-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.service-col {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-heading {
  margin-top: 2rem;
  border-left: 4px solid #cec2ab;
  padding-left: 1rem;
  font-size: 1.2rem;
}

.service-list {
  list-style: none;
  padding-left: 0;
  margin-top: 0.5rem;
}

.service-list li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #333;
  padding: 8px 0;
  font-size: 1rem;
}

.service-list span {
  color: #cec2ab;
}

@media (max-width: 768px) {
  .service-grid-flex {
    flex-direction: column;
  }

  .service-heading {
    font-size: 1rem;
  }

  .service-list li {
    font-size: 0.95rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .service-list span {
    align-self: flex-end;
  }
}
/* ============================
   Gallery
============================= */
:root {
    --gold: #d4af37;
    --dark-bg: #0e0e0e;
    --light-text: #ffffff;
    --dark-text: #111111;
    --transition: all 0.4s ease;
  }

  .hair-gallery {
    background: var(--dark-bg);
    color: var(--light-text);
    font-family: 'Inter', sans-serif;
    height: 100vh;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .gallery-header {
    padding: 2rem 1rem 1rem;
    text-align: center;
  }

  .gallery-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--gold);
    font-weight: 800;
    margin-bottom: 0.5rem;
  }

  .gallery-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.75);
  }

  .gallery-container {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
  }

  .gallery-viewport {
    width: 100vw;
    overflow: hidden;
    height: 100%;
  }

  .gallery-track {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
  }

  .gallery-slide {
    flex: 0 0 33.333%;
    position: relative;
    overflow: hidden;
    height: 100%;
  }

  .slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    z-index: 2;
  }

  .slide-content {
    position: absolute;
    bottom: 5.5rem;
    left: 1rem;
    right: 1rem;
    z-index: 3;
    color: var(--light-text);
  }

  .slide-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
  }

  .slide-studio {
    font-size: 0.9rem;
    color: var(--gold);
  }

  .gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.3);
    border: 1px solid var(--gold);
    color: var(--gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
  }

  .prev-btn { left: 1rem; }
  .next-btn { right: 1rem; }

  .gallery-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
  }

  .pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition);
  }

  .pagination-bullet.active {
    background: var(--gold);
    transform: scale(1.2);
  }

  @media (max-width: 1024px) {
    .gallery-slide { flex: 0 0 50%; }
  }

  @media (max-width: 768px) {
    .gallery-slide { flex: 0 0 100%; }
    .gallery-btn { width: 36px; height: 36px; }
  }

/* ============================
   About
============================= */
.about-section {
  position: relative;
  background: #0e0e0e;
  min-height: 100vh; /* gives space for scroll pin */
  overflow: hidden;
}

.about-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url('assets/images/about.webp') center/cover no-repeat fixed;
  z-index: 1;
  filter: brightness(0.6);
}

.about-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.0), rgba(0,0,0,0.3));
}

.about-scroll-wrap {
  position: relative;
  z-index: 3;
  padding: 6rem 1rem;
  text-align: center;
}

.about-heading {
  font-size: 2.8rem;
  font-weight: bold;
  color: #d4af37;
  margin-bottom: 1rem;
}

.about-subtitle {
  color: #ccc;
  font-style: italic;
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.about-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2rem 1rem;
  border-radius: 16px;
  backdrop-filter: blur(6px);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.about-card h5 {
  font-weight: bold;
  color: #fff;
}

.about-card p {
  color: #ccc;
  font-size: 0.9rem;
}

/* Modal Overlay */
.about-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.about-modal-content {
  background: #1a1a1a;
  color: #fff;
  padding: 2rem;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 768px) {
  .about-heading {
    font-size: 2rem;
  }
}

/* ============================
   Booking Section
============================= */
.booking-section {
  position: relative;
  background: linear-gradient(to right, #111 0%, #1c1c1c 100%);
  min-height: 100vh;
  overflow: hidden;
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Glassmorphism Form Container */
.glass-form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  padding: 3rem;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.glass-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
}

/* Form Inputs */
.booking-form input,
.booking-form textarea {
  background-color: #1a1a1a;
  border: 1px solid #444;
  color: #fff;
  border-radius: 10px;
  padding: 12px 18px;
  width: 100%;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.booking-form input:focus,
.booking-form textarea:focus {
  border-color: #d4af37;
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: #aaa;
}

/* Submit Button */
.btn-gold {
  background: #d4af37;
  color: #000;
  border: none;
  border-radius: 30px;
  padding: 12px 30px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-gold:hover {
  background: #f0c94d;
  transform: scale(1.05);
}

/* Tablet (portrait & landscape) */
@media (max-width: 1024px) {
  .booking-section {
    padding: 100px 60px;
  }

  .scale-class-add {
    transform: scale(1.6);
    transition: transform 0.4s ease;
    width: fit-content;
    margin: 0 auto;
  }

  .glass-form {
    max-width: 95%;  /* Use almost full width */
    padding: 2rem;
  }

  .btn-gold {
    padding: 12px 25px;
  }
}

@media (min-width: 820px) and (max-width: 1024px) {
  .scale-class-add {
    transform: scale(1.2);
    transition: transform 0.4s ease;
    width: fit-content;
    margin: 0 auto;
  }
}

/* Mobile */
@media (max-width: 819px) {
  .booking-section {
    
    padding: 80px 40px;
  }

  .scale-class-add {
    transform: scale(1.0);
    transition: transform 0.4s ease;
    width: fit-content;
    margin: 0 auto;
  }

  .glass-form {
    padding: 1.5rem 1rem;
  }

  .booking-form input,
  .booking-form textarea {
    padding: 10px 14px;
  }

  .btn-gold {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
  }
}

/* VALIDATION STYLE START */
.is-invalid {
  border-color: #dc3545 !important;
}
.invalid-feedback {
  display: none;
  color: #dc3545;
  font-size: 0.875em;
}
.is-invalid + .invalid-feedback {
  display: block;
}

/* VALIDATION STYLE END */

/* ============================
     Footer Styles
  ============================= */
  .bg-gold { background-color: #D4AF37; }
  .text-gold { color: #D4AF37; }
  .btn-gold { background-color: #D4AF37; border-color: #D4AF37; }
  .btn-gold:hover { background-color: #C9A227; border-color: #C9A227; }
  .hover-gold:hover { color: #D4AF37 !important; }
  .footer-link { transition: color 0.3s ease; text-decoration: none; }
  .social-icon { transition: all 0.3s ease; }
  .border-gold { border-color: #D4AF37 !important; }
  
  /* Gold hover effects */
  .hover-gold:hover .social-icon {
    background-color: #D4AF37 !important;
  }
  .hover-gold:hover .social-icon svg path[fill="#FF2442"] {
    fill: #000 !important;
  }
  
  /* Responsive adjustments */
  @media (max-width: 767.98px) {
    .footer-section {
      text-align: center;
    }
    .social-links-wrapper a,
    .list-unstyled li {
      justify-content: center !important;
    }
    .order-md-1.order-1,
    .order-md-3.order-2,
    .order-md-2.order-3,
    .order-md-4.order-4 {
      margin-bottom: 2rem;
    }
    .border-bottom.border-gold {
      margin-left: auto;
      margin-right: auto;
    }
  }
  
  @media (min-width: 768px) and (max-width: 991.98px) {
    .col-md-6 {
      margin-bottom: 1.5rem;
    }
  }

  /* ============================
 Whatsapp Icon
============================= */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background: #25D366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #20b358;
}
@media (max-width: 480px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
  }

  .whatsapp-float img {
    width: 28px;
    height: 28px;
  }
}

  /* ============================
 Language Swapper
============================= */

.language-switcher {
    position: fixed;
    top: 15px;
    right: 10px; /* default for desktop */
    z-index: 99999;
}

/* Tablet & phone */
@media (max-width: 1024px) {
    .language-switcher {
        right: 80px;
    }
}