:root {
  --gold: #c9a448;
  --gold-light: #e8d4a0;
  --navy: #111c2e;
  --navy-soft: #1a2740;
  --dark-gray: #111c2e;
  --medium-gray: #4a5568;
  --light-gray: #f3f6fa;
}



h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

.gold-gradient {
  background: linear-gradient(135deg, #d4af37 0%, #f0e6d2 50%, #d4af37 100%);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-card {
  transition: all 0.3s ease;
}

.nav-link {
  color: white;
  font-size: 20px;
  position: relative;
}

@media (max-width: 600px) {
  .nav-link {
    color: black;
    font-size: 20px;
    position: relative;
  }
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #d4af37;
  transition: width 0.3s ease;
}

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

.navbar.scrolled {
  background-color: white !important;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar.scrolled .nav-link, .navbar.scrolled .navbar-brand, .navbar.scrolled .btn {
  color: black !important;
}

.navbar.scrolled .navbar-toggler-icon {
  filter: invert(0%) !important;
}

.navbar .navbar-toggler-icon {
  transition: filter 0.3s ease;
}

.overlay {
  background-color: rgba(33, 37, 41, 0);
  opacity: 0;
  transition: all 0.3s ease;
}

.position-relative:hover .overlay {
  background-color: rgba(33, 37, 41, 0.5);
  opacity: 1;
}

.navbar.scroll-active {
  background-color: white !important;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scroll-active .nav-link, .navbar.scroll-active .navbar-brand {
  color: #333 !important;
}

.navbar-brand--text.navbar-brand {
  text-decoration: none;
}

.navbar-brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.05;
}

.navbar-brand-script {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(1.85rem, 4.5vw, 2.65rem);
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.03em;
  text-shadow: 0 1px 2px rgba(17, 28, 46, 0.35);
}

.navbar-brand-sub {
  font-family: Montserrat, sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.88);
  margin-top: 0.2rem;
  padding-left: 0.15rem;
}

.navbar.scroll-active .navbar-brand--text .navbar-brand-script {
  color: var(--navy) !important;
  text-shadow: none;
}

.navbar.scroll-active .navbar-brand--text .navbar-brand-sub {
  color: var(--gold) !important;
}

.navbar.scrolled .navbar-brand--text .navbar-brand-script {
  color: var(--navy) !important;
  text-shadow: none;
}

.navbar.scrolled .navbar-brand--text .navbar-brand-sub {
  color: var(--gold) !important;
}

.navbar.scroll-active .navbar-toggler-icon {
  filter: brightness(0) invert(0);
}

.navbar-nav .nav-link.active, .navbar-nav .show > .nav-link {
  color: #d4af37;
}

.nav-link:focus, .nav-link:hover {
  color: #d4af37;
}

.btn-gold {
  background-color: var(--gold);
  color: var(--dark-gray);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-gold:hover {
  background-color: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.service-card {
  background-color: white;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.4s;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 15px;
  transition: transform 0.5s;
}

.service-card:hover .service-icon {
  transform: rotateY(180deg);
}

.service-title {
  color: var(--dark-gray);
  font-size: 1.5rem;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}

.service-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: var(--gold);
}

.price {
  color: var(--gold);
  font-weight: 600;
  font-size: 1.2rem;
  margin: 15px 0;
}

.price-range {
  font-size: 0.9rem;
  color: var(--medium-gray);
}

.testimonial {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  margin-bottom: 30px;
  position: relative;
}

.testimonial::before {
  content: '\201C';
  font-family: Georgia, serif;
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 5rem;
  color: rgba(212, 175, 55, 0.2);
  line-height: 1;
}

.client-info {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.client-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--dark-gray);
  font-weight: 600;
  font-size: 1.2rem;
}

.client-name {
  font-weight: 600;
  margin-bottom: 5px;
}

.section-title {
  font-size: 2.5rem;
  position: relative;
  margin-bottom: 50px;
  padding-bottom: 20px;
  text-align: center;
  color: var(--dark-gray);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--gold);
}

.section {
  padding: 80px 0;
}

.bg-gray {
  background-color: var(--light-gray);
}

.bg-dark {
  background-color: var(--dark-gray);
  color: white;
}

footer {
  background-color: var(--navy);
  color: white;
  padding: 50px 0 20px;
}

.footer-title {
  color: var(--gold);
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.social-icons a {
  color: white;
  font-size: 1.5rem;
  margin-right: 15px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: var(--gold);
}

.copyright {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.booking-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  padding: 60px 0;
  text-align: center;
}

.booking-cta h2 {
  color: var(--gold);
  margin-bottom: 20px;
}

.booking-cta p {
  color: white;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.category-tabs {
  margin-bottom: 40px;
}

.category-tabs .nav-link {
  color: var(--medium-gray) !important;
  border: none;
  padding: 15px 25px;
  font-weight: 500;
  border-radius: 0;
  position: relative;
  transition: all 0.3s;
}

.category-tabs .nav-link.active {
  color: var(--gold) !important;
  background-color: transparent;
  font-weight: 600;
}

.category-tabs .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: all 0.3s;
  transform: translateX(-50%);
}

.category-tabs .nav-link.active::after {
  width: 80%;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.gold-divider {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 40px auto;
  width: 50%;
}

.service-detail {
  display: none;
  padding: 20px;
  background-color: rgba(245, 245, 245, 0.9);
  border-radius: 0 0 10px 10px;
  border-top: 2px solid var(--gold);
}

.service-card.expanded .service-detail {
  display: block;
}

.service-card .card-body {
  padding: 25px;
  text-align: center;
}

.service-description {
  color: var(--medium-gray);
  margin-bottom: 15px;
}

.badge-gold {
  background-color: var(--gold);
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-bottom: 15px;
  display: inline-block;
}

.time-duration {
  font-size: 0.9rem;
  color: var(--medium-gray);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.time-duration i {
  margin-right: 5px;
  color: var(--gold);
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
}

.shape-1 {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  animation: float 8s infinite ease-in-out;
}

.shape-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 10%;
  animation: float 12s infinite ease-in-out;
}

.shape-3 {
  width: 70px;
  height: 70px;
  bottom: 20%;
  left: 20%;
  animation: float 10s infinite ease-in-out;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

.service-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 10px 10px 0 0;
}

.nail-art-image {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='200' viewBox='0 0 400 200'%3E%3Crect width='400' height='200' fill='%23555555'/%3E%3Cpath d='M50,100 Q200,50 350,100' stroke='%23d4af37' stroke-width='5' fill='none'/%3E%3Ccircle cx='200' cy='100' r='50' fill='none' stroke='%23d4af37' stroke-width='2'/%3E%3Cpath d='M150,100 Q200,150 250,100' stroke='white' stroke-width='2' fill='none'/%3E%3C/svg%3E");
}

.manicure-image {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='200' viewBox='0 0 400 200'%3E%3Crect width='400' height='200' fill='%23555555'/%3E%3Cpath d='M100,50 L300,50 L300,150 L100,150 Z' fill='none' stroke='%23d4af37' stroke-width='3'/%3E%3Cpath d='M150,100 L250,100' stroke='white' stroke-width='3'/%3E%3Ccircle cx='150' cy='100' r='20' fill='white' opacity='0.5'/%3E%3Ccircle cx='250' cy='100' r='20' fill='white' opacity='0.5'/%3E%3C/svg%3E");
}

.pedicure-image {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='200' viewBox='0 0 400 200'%3E%3Crect width='400' height='200' fill='%23555555'/%3E%3Cpath d='M100,100 C150,50 250,50 300,100 C250,150 150,150 100,100 Z' fill='none' stroke='%23d4af37' stroke-width='3'/%3E%3Ccircle cx='200' cy='100' r='30' fill='none' stroke='white' stroke-width='2'/%3E%3Cpath d='M170,100 L230,100' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
}

.spa-image {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='200' viewBox='0 0 400 200'%3E%3Crect width='400' height='200' fill='%23555555'/%3E%3Ccircle cx='200' cy='100' r='70' fill='none' stroke='%23d4af37' stroke-width='3'/%3E%3Cpath d='M150,80 Q200,120 250,80' stroke='white' stroke-width='2' fill='none'/%3E%3Cpath d='M160,120 Q200,140 240,120' stroke='white' stroke-width='2' fill='none'/%3E%3C/svg%3E");
}

.waxing-image {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='200' viewBox='0 0 400 200'%3E%3Crect width='400' height='200' fill='%23555555'/%3E%3Cpath d='M100,50 L300,150' stroke='%23d4af37' stroke-width='5'/%3E%3Cpath d='M100,150 L300,50' stroke='%23d4af37' stroke-width='5'/%3E%3Ccircle cx='200' cy='100' r='40' fill='none' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
}

.packages-image {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='200' viewBox='0 0 400 200'%3E%3Crect width='400' height='200' fill='%23555555'/%3E%3Crect x='120' y='60' width='160' height='80' fill='none' stroke='%23d4af37' stroke-width='3'/%3E%3Cpath d='M120,60 L200,100 L280,60' stroke='%23d4af37' stroke-width='3' fill='none'/%3E%3Cpath d='M200,100 L200,140' stroke='%23d4af37' stroke-width='3'/%3E%3Ccircle cx='200' cy='100' r='20' fill='none' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
}

.hero-script {
  font-family: 'Great Vibes', cursive;
  color: var(--gold-light);
  text-shadow: 0 2px 24px rgba(17, 28, 46, 0.45);
}

.pedicure-scents-panel {
  background: linear-gradient(145deg, var(--navy-soft) 0%, var(--navy) 100%);
  border: 1px solid rgba(201, 164, 72, 0.35);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.pedicure-scents-title {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--gold-light);
  font-weight: 400;
}

.pedicure-scents-lead {
  color: rgba(255, 255, 255, 0.72);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.pedicure-scent-chip {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 164, 72, 0.25);
  border-radius: 12px;
  padding: 1rem 0.75rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.pedicure-scent-chip:hover {
  background: rgba(201, 164, 72, 0.12);
  border-color: rgba(201, 164, 72, 0.55);
}

.pedicure-scent-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201, 164, 72, 0.2);
  color: var(--gold-light);
  font-size: 1.15rem;
}

.pedicure-scent-label {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
