/* ===== LUXURY DARK SALON THEMES ===== */

/* Theme 1: Noir Rose (default) */
:root,
[data-theme="noir-rose"] {
  --color-primary: #D4A0A0;
  --color-primary-light: #E0B8B8;
  --color-primary-dark: #B87878;
  --color-secondary: #0E0A0C;
  --color-accent: #2A1F23;
  --color-bg: #1A1216;
  --color-bg-alt: #140E12;
  --color-text: #F0E8EC;
  --color-text-muted: #9A8A90;
  --color-text-on-primary: #1A1216;
  --color-border: #3A2830;
}

/* Theme 2: Dark Gold */
[data-theme="dark-gold"] {
  --color-primary: #C9A84C;
  --color-primary-light: #D6BC6E;
  --color-primary-dark: #A88E38;
  --color-secondary: #0E0C08;
  --color-accent: #2A2618;
  --color-bg: #1A1814;
  --color-bg-alt: #14120E;
  --color-text: #F0EDE4;
  --color-text-muted: #9A9480;
  --color-text-on-primary: #1A1814;
  --color-border: #3A3428;
}

/* Theme 3: Platinum */
[data-theme="platinum"] {
  --color-primary: #B0B0C0;
  --color-primary-light: #C8C8D4;
  --color-primary-dark: #9090A4;
  --color-secondary: #0C0C0E;
  --color-accent: #1E1E24;
  --color-bg: #161618;
  --color-bg-alt: #101012;
  --color-text: #EAEAEF;
  --color-text-muted: #8888A0;
  --color-text-on-primary: #161618;
  --color-border: #303038;
}

/* ===== LUXURY TYPOGRAPHY (Cormorant Garamond) ===== */
.navbar-logo,
.hero-content h1,
.section-header h2,
.team-card-body h3,
.about-grid h2,
.price-category h3,
.price-item-name,
footer h3 {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
}

.hero-content h1 {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 1.05;
}

.section-header h2 {
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.section-header p {
  font-style: italic;
  color: var(--color-primary);
  letter-spacing: 0.04em;
}

.navbar-logo {
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ===== DARK GLAMOROUS HERO ===== */
.hero {
  min-height: 100vh;
}

.hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(26, 18, 22, 0.3) 0%,
    rgba(26, 18, 22, 0.6) 50%,
    rgba(26, 18, 22, 0.95) 100%
  );
}

.hero-content p {
  max-width: 560px;
  margin: 0 auto var(--space-xl);
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  color: rgba(240, 232, 236, 0.85);
}

.hero-actions .btn-outline {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.hero-actions .btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-text-on-primary);
}

/* ===== LUXE SECTION STYLING ===== */
.section {
  background: var(--color-bg);
}

.section-alt {
  background: var(--color-bg-alt);
}

/* Rose gold decorative line under section headers */
.section-header {
  position: relative;
  padding-bottom: var(--space-lg);
}

.section-header::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--color-primary);
  margin: var(--space-md) auto 0;
}

/* ===== DARK ELEGANT SERVICE CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: var(--space-lg);
  filter: brightness(0.9);
  transition: filter 0.4s ease;
}

.service-card:hover .service-card-img {
  filter: brightness(1);
}

.service-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.service-card p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== LUXURY PRICE LIST ===== */
.price-list {
  max-width: 800px;
  margin: 0 auto;
}

.price-category {
  margin-bottom: var(--space-2xl);
}

.price-category h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.price-category-divider {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.price-category-divider::before,
.price-category-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  opacity: 0.4;
}

.price-category-divider span {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  white-space: nowrap;
}

.price-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  gap: var(--space-md);
}

.price-item:last-child {
  border-bottom: none;
}

.price-item-info {
  flex: 1;
}

.price-item-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.price-item-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}

.price-item-dots {
  flex: 1;
  min-width: 40px;
  border-bottom: 1px dotted var(--color-border);
  margin: 0 var(--space-sm);
  position: relative;
  top: -4px;
}

.price-item-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-primary);
  white-space: nowrap;
}

/* Gold divider ornament */
.luxe-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg) 0;
  color: var(--color-primary);
  opacity: 0.5;
}

.luxe-divider::before,
.luxe-divider::after {
  content: '';
  width: 100px;
  height: 1px;
  background: var(--color-primary);
}

.luxe-divider-icon {
  margin: 0 var(--space-md);
  font-size: 0.9rem;
}

/* ===== EDITORIAL TEAM / STYLISTS ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  max-width: 1000px;
  margin: 0 auto;
}

.team-card {
  background: transparent;
  border: none;
  text-align: center;
  position: relative;
}

.team-card-img-wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: var(--space-lg);
  aspect-ratio: 3 / 4;
}

.team-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) brightness(0.85);
  transition: all 0.5s ease;
}

.team-card:hover .team-card-img-wrapper img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.03);
}

.team-card-img-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--color-bg), transparent);
  pointer-events: none;
}

.team-card-body {
  padding: 0 var(--space-sm);
}

.team-card-body h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.team-specialty {
  display: block;
  font-size: 0.85rem;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.team-card-body p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ===== GALLERY WITH GLOW HOVER ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 2px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  filter: brightness(1);
  transform: scale(1.05);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: all 0.5s ease;
  pointer-events: none;
}

.gallery-item:hover::after {
  border-color: var(--color-primary);
  box-shadow:
    inset 0 0 30px rgba(212, 160, 160, 0.15),
    0 0 20px rgba(212, 160, 160, 0.1);
}

[data-theme="dark-gold"] .gallery-item:hover::after {
  box-shadow:
    inset 0 0 30px rgba(201, 168, 76, 0.15),
    0 0 20px rgba(201, 168, 76, 0.1);
}

[data-theme="platinum"] .gallery-item:hover::after {
  box-shadow:
    inset 0 0 30px rgba(176, 176, 192, 0.15),
    0 0 20px rgba(176, 176, 192, 0.1);
}

/* ===== BOOKING SECTION ===== */
.booking-placeholder {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  padding: var(--space-2xl);
  text-align: center;
}

/* ===== DARK TESTIMONIALS ===== */
.testimonial-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  padding: var(--space-xl);
  position: relative;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: var(--space-xl);
  right: var(--space-xl);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  opacity: 0.4;
}

.testimonial-card .stars {
  color: var(--color-primary);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: var(--space-md);
}

.testimonial-card blockquote {
  font-style: italic;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
}

.testimonial-card .author {
  color: var(--color-primary);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ===== DARK CONTACT SECTION ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info-item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  align-items: flex-start;
}

.contact-info-item svg {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
  color: var(--color-text);
}

.contact-info-item p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.form-input,
.form-textarea {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  border-radius: 2px;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(212, 160, 160, 0.15);
}

.map-container {
  margin-top: var(--space-lg);
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.map-container iframe {
  width: 100%;
  height: 250px;
  border: none;
  filter: brightness(0.8) contrast(1.1);
}

/* ===== ABOUT GRID ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-grid h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: filter 0.4s;
}

.about-image:hover img {
  filter: brightness(1);
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid var(--color-primary);
  opacity: 0.3;
  pointer-events: none;
}

/* ===== DARK FOOTER ===== */
.footer {
  background: var(--color-secondary);
  border-top: 1px solid var(--color-border);
}

.footer h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
  padding: var(--space-2xl) 0;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-links li a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

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

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: var(--space-xs) 0;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-bottom {
  text-align: center;
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

/* ===== DARK NAVBAR ===== */
.navbar {
  background: rgba(26, 18, 22, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

[data-theme="dark-gold"] .navbar {
  background: rgba(26, 24, 20, 0.95);
}

[data-theme="platinum"] .navbar {
  background: rgba(22, 22, 24, 0.95);
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--color-primary);
  color: var(--color-text-on-primary);
  border: none;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
  border-radius: 2px;
}

.btn-primary:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
  border-radius: 2px;
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-text-on-primary);
}

/* ===== FLOATING ACTION BUTTONS ===== */
.floating-actions {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  z-index: 100;
}

.fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.3s;
}

.fab:hover {
  transform: scale(1.1);
}

.fab-call {
  background: var(--color-primary);
  color: var(--color-text-on-primary);
}

.fab-whatsapp {
  background: #25D366;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4px;
  }
}
