/* 
  Jolibelle Nails & Beauty - Custom Style System
  Modern Minimalist & Classy High-Fashion Aesthetic
*/

:root {
  --primary-color: #925C65;
  /* Mauve/Dusty Rose from logo */
  --primary-light: #B2828C;
  --secondary-color: #F8F4F1;
  /* Soft Cream */
  --dark-color: #2D2123;
  --text-dark: #1A1A1A;
  --text-muted: #6C757D;
  --bg-light: #FFFFFF;
  --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --hero-overlay-color: #ffffff80;
  /* Primary color with low opacity */
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.font-serif {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* --- Navigation --- */
.navbar {
  padding: 1.5rem 0;
  transition: var(--transition-smooth);
  background: transparent;
}

.navbar.scrolled {
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  font-family: 'Tenor Sans', sans-serif;
  font-weight: 400;
  font-size: 2.2rem;
  letter-spacing: 0.15em;
  color: var(--primary-color) !important;
  text-transform: uppercase;
  height: 50px;
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark) !important;
  margin: 0 1rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--primary-color);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 100%;
}

/* --- Hero Section --- */
.hero-section {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--secondary-color);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

.hero-subtitle {
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.85rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  display: block;
  font-weight: 700;
}

.hero-title {
  font-size: 5rem;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--dark-color);
}

.btn-luxury {
  background: var(--primary-color);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--primary-color);
  transition: var(--transition-smooth);
}

.btn-luxury:hover {
  background: transparent;
  color: var(--primary-color);
}

.hero-image-container {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
}

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--hero-overlay-color);
  pointer-events: none;
  z-index: 1;
}

.hero-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* --- Services Gallery --- */
.section-padding {
  padding: 100px 0;
}

.section-title-wrapper {
  margin-bottom: 60px;
}

.section-subtitle {
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  font-weight: 600;
}

.service-card {
  position: relative;
  overflow: hidden;
  height: 500px;
  margin-bottom: 30px;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover .service-img {
  transform: scale(1.1);
}

.lead {
  font-size: 1.3rem;
}

.service-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  color: white;
}

/* --- Pricing Section --- */
.pricing-section {
  background: var(--secondary-color);
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.4rem 0;
  transition: var(--transition-smooth);
}

.price-item:hover {
  color: var(--primary-color);
}

.price-name {
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.price-value {
  color: var(--primary-color);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
}

.price-description {
  font-size: 0.85rem;
  color: var(--text-muted);
  width: 100%;
  margin-top: 5px;
}

/* --- About Section --- */
.about-img-stack {
  position: relative;
  height: 600px;
}

.about-img-1 {
  width: 80%;
  height: 80%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.about-img-2 {
  width: 60%;
  height: 60%;
  object-fit: cover;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  border: 15px solid white;
}

/* --- Footer --- */
footer {
  background: var(--dark-color);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px;
}

.footer-brand {
  font-family: 'Tenor Sans', sans-serif;
  color: white !important;
  margin-bottom: 2rem;
  display: inline-block;
}

.footer-links h5 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--primary-light);
  padding-left: 5px;
}

.social-icons a {
  font-size: 1.2rem;
  margin-right: 1.5rem;
  color: white;
  transition: var(--transition-smooth);
}

.social-icons a:hover {
  color: var(--primary-light);
  transform: translateY(-5px);
}

a {
  color: var(--primary-color);
  cursor: pointer;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  color: #FFF;
  transform: scale(1.1);
}

/* --- Pricing Tabs (Card Style) --- */
#pricing-tabs {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 8px;
  display: flex !important;
  flex-wrap: nowrap !important;
  margin: 0 auto 3rem !important;
  width: fit-content;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}

#pricing-tabs::-webkit-scrollbar {
  display: none;
}

#pricing-tabs .nav-link {
  background: transparent !important;
  border: none !important;
  border-radius: 8px !important;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--text-dark) !important;
  padding: 12px 24px;
  white-space: nowrap;
  transition: var(--transition-smooth);
  margin: 0 4px;
}

#pricing-tabs .nav-link.active {
  background: var(--primary-color) !important;
  color: white !important;
  box-shadow: none;
}

#pricing-tabs .nav-link::after,
#pricing-tabs .nav-link::before {
  display: none !important;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
    /* Smaller mobile text */
  }



  .lead {
    font-size: 1rem;
  }

  .hero-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
  }

  .display-4 {
    font-size: 2.2rem;
  }

  .hero-image-container {
    display: none;
  }

  .hero-section {
    background-image: linear-gradient(rgba(248, 244, 241, 0.92), rgb(255 255 255 / 39%)), url(/hero.jpeg);
    background-size: cover;
    background-position: center;
    height: auto;
    padding: 120px 0 80px;
  }

  .navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

  .navbar-brand {
    height: 40px !important;
  }

  .navbar-collapse {
    margin-top: 1rem;
    padding-bottom: 1rem;
  }

  .section-padding {
    padding: 60px 0;
  }

  .hero-content .btn {
    padding: 0.8rem 1.5rem !important;
    font-size: 0.7rem !important;
  }

  /* Compact Pricing Tabs for Mobile */
  #pricing-tabs {
    padding: 4px;
    gap: 4px;
  }

  #pricing-tabs .nav-link {
    padding: 12px 16px;
    font-size: 0.7rem;
    margin: 0 2px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 25px;
    bottom: 20px;
    right: 20px;
  }
}