/* -------------------------------------------------------------------------- */
/*                                 Variables                                  */
/* -------------------------------------------------------------------------- */
:root {
  --bg-primary: #420c09; /* Deep Merlot/Wine Red */
  --bg-secondary: #2e0505; /* Darker shade */
  --bg-card: rgba(46, 5, 5, 0.6);
  --text-gold: #d4af37; /* Metallic Gold */
  --text-gold-light: #f4d06f;
  --text-cream: #f5f5f3; /* Off-white */
  --font-heading: "Playfair Display", serif;
  --font-body: "Montserrat", sans-serif;
  --gradient-gold: linear-gradient(
    135deg,
    #d4af37 0%,
    #f4d06f 50%,
    #b4941f 100%
  );
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.3);
  --transition-speed: 0.3s;
}

/* -------------------------------------------------------------------------- */
/*                                Base Styles                                 */
/* -------------------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-primary);
  background: linear-gradient(135deg, #420c09 0%, #2e0505 100%);
  background-attachment: fixed; /* Parallax effect on bg */
  color: var(--text-cream);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-speed);
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--text-gold);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* -------------------------------------------------------------------------- */
/*                                Buttons                                     */
/* -------------------------------------------------------------------------- */
.cta-button-main {
  display: inline-block;
  padding: 15px 40px;
  background: var(--gradient-gold);
  color: var(--bg-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
  margin-top: 30px;
}

.cta-button-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
  filter: brightness(1.1);
}

.cta-button-small {
  padding: 10px 25px;
  border: 1px solid var(--text-gold);
  color: var(--text-gold);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button-small:hover {
  background: var(--text-gold);
  color: var(--bg-primary);
}

/* -------------------------------------------------------------------------- */
/*                                Header / Hero                               */
/* -------------------------------------------------------------------------- */
.hero-section {
  height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* In a real app, adding a background image here would be key */
  background: radial-gradient(
      circle at center,
      rgba(66, 12, 9, 0.7) 0%,
      rgba(46, 5, 5, 0.9) 100%
    ),
    url("https://images.unsplash.com/photo-1560066984-18a7e02e9cf9?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80"); /* High-quality placeholder */
  background-size: cover;
  background-position: center;
}

.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 30px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-gold);
  letter-spacing: 3px;
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-cream);
}
.nav-links a:hover {
  color: var(--text-gold);
}

.mobile-menu-toggle {
  display: none;
  color: var(--text-gold);
  font-size: 1.5rem;
  cursor: pointer;
}

.hero-content h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.2rem;
  letter-spacing: 1px;
  font-weight: 300;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.8;
}

/* -------------------------------------------------------------------------- */
/*                                Services                                    */
/* -------------------------------------------------------------------------- */
.services-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: rgba(245, 245, 243, 0.8);
  font-style: italic;
  font-family: var(--font-heading);
}

.gold-divider {
  width: 80px;
  height: 3px;
  background: var(--gradient-gold);
  margin: 20px auto 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition-speed);
  position: relative;
  overflow: hidden;
}

/* Glassmorphism hover effect */
.service-card:hover {
  background: rgba(66, 12, 9, 0.8);
  border-color: var(--text-gold);
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--text-gold);
  margin-bottom: 25px;
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.service-card p {
  color: rgba(245, 245, 243, 0.8);
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.price-tag {
  display: inline-block;
  padding: 8px 15px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  color: var(--text-gold);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

/* -------------------------------------------------------------------------- */
/*                               Experience                                   */
/* -------------------------------------------------------------------------- */
.experience-section {
  padding: 100px 0;
  background: linear-gradient(to right, #420c09, #2e0505);
}

.experience-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.experience-text {
  flex: 1;
}

.experience-text h2 {
  font-size: 3rem;
  margin-bottom: 30px;
}

.gold-divider-left {
  width: 60px;
  height: 3px;
  background: var(--gradient-gold);
  margin-bottom: 30px;
}

.experience-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: rgba(245, 245, 243, 0.9);
}

.experience-visual {
  flex: 1;
  height: 400px;
  position: relative;
}

.visual-box {
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1633681926022-84c23e8cb2d6?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80"); /* Salon detail placeholder */
  background-size: cover;
  background-position: center;
  box-shadow: 20px 20px 0 rgba(212, 175, 55, 0.1); /* Abstract gold offset */
  filter: sepia(30%) contrast(110%);
}

/* -------------------------------------------------------------------------- */
/*                                 Footer                                     */
/* -------------------------------------------------------------------------- */
.footer-section {
  padding: 60px 0 20px;
  background-color: #1a0202; /* Very dark wine */
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.tagline {
  font-style: italic;
  color: rgba(212, 175, 55, 0.7);
}

.footer-contact h4,
.footer-social h4 {
  color: var(--text-cream);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.footer-contact p {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: rgba(245, 245, 243, 0.7);
}

.footer-contact a:hover {
  color: var(--text-gold);
}

.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons a {
  font-size: 1.5rem;
  color: var(--text-cream);
}

.social-icons a:hover {
  color: var(--text-gold);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

/* -------------------------------------------------------------------------- */
/*                               Responsive                                   */
/* -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .navbar {
    padding: 20px;
  }

  .logo-text {
    font-size: 1.5rem;
  }

  .nav-links {
    display: none; /* In production, you'd add JS to toggle this */
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .section-header h2,
  .experience-text h2 {
    font-size: 2.2rem;
  }

  .experience-content {
    flex-direction: column;
  }

  .experience-visual {
    width: 100%;
    height: 300px;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 1.5s ease forwards;
}

.animate-fade-up {
  animation: fadeUp 1s ease forwards;
  opacity: 0; /* Star hidden */
  animation-delay: 0.5s;
}

.delay-200 {
  animation-delay: 0.8s;
}
