/* ===================================
   Luxe Hair Studio - Elegant Salon Theme
   Sophisticated, feminine, high-end
   =================================== */

:root {
  /* Color Palette - Warm neutrals with blush & gold */
  --cream: #FAF8F5;
  --cream-dark: #F5F0E8;
  --blush: #E8D5D0;
  --blush-deep: #D4B5AD;
  --gold: #C9A86C;
  --gold-light: #D4BC8E;
  --charcoal: #2D2926;
  --charcoal-light: #4A4543;
  --taupe: #8B7E74;
  
  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, sans-serif;
  
  /* Spacing */
  --section-padding: clamp(4rem, 10vw, 8rem);
  --container-max: 1200px;
  
  /* Transitions */
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  background-color: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Grain overlay for texture */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.03;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Typography */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ===================================
   Navigation
   =================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 2rem;
  transition: var(--transition-smooth);
  background: linear-gradient(to bottom, var(--cream) 0%, transparent 100%);
}

.nav.scrolled {
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 30px rgba(45, 41, 38, 0.05);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--charcoal);
  transition: var(--transition-smooth);
}

.logo:hover {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 3rem;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  position: relative;
  transition: var(--transition-smooth);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--charcoal);
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: var(--transition-smooth);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  z-index: 99;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--charcoal);
  transition: var(--transition-smooth);
}

.mobile-menu a:hover {
  color: var(--gold);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 2rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
  gap: 4rem;
  position: relative;
}

.hero-decoration {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60%;
  background: linear-gradient(to bottom, transparent, var(--blush-deep), transparent);
  opacity: 0.5;
  z-index: -1;
}

.hero-content {
  animation: fadeInUp 1s ease-out;
}

.hero-tagline {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 3rem;
}

.hero-tagline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--taupe);
  margin-bottom: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.hero-image {
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-img,
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  border-radius: 2px;
}

.hero-image-placeholder,
.about-image-placeholder {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--blush) 0%, var(--cream-dark) 100%);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--taupe);
  font-family: var(--font-display);
  font-style: italic;
  position: relative;
  overflow: hidden;
}

.hero-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 1rem;
  border: 1px solid var(--blush-deep);
  border-radius: 2px;
  opacity: 0.5;
}

.hero-image-placeholder span,
.about-image-placeholder span {
  font-size: 1.2rem;
}

.hero-image-placeholder small,
.about-image-placeholder small {
  font-size: 0.75rem;
  margin-top: 0.5rem;
  opacity: 0.7;
}

/* ===================================
   Buttons
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.2rem 2.5rem;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn-primary {
  background: var(--charcoal);
  color: var(--cream);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  transition: transform var(--transition-smooth);
  z-index: -1;
}

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-primary:hover {
  color: var(--charcoal);
}

.btn-full {
  width: 100%;
}

/* ===================================
   Section Styling
   =================================== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--charcoal);
  font-weight: 300;
}

/* ===================================
   Services Section
   =================================== */
.services {
  padding: var(--section-padding) 2rem;
  background: var(--cream-dark);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--blush-deep), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.service-card {
  background: var(--cream);
  padding: 3rem 2rem;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card:hover::before {
  border-color: var(--gold);
}

.service-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--charcoal);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--taupe);
  line-height: 1.8;
}

/* ===================================
   About Section
   =================================== */
.about {
  padding: var(--section-padding) 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  max-width: var(--container-max);
  margin: 0 auto;
  align-items: center;
}

.about-content .section-title {
  text-align: left;
  margin-bottom: 2rem;
}

.about-content .section-label {
  text-align: left;
}

.about-text {
  font-size: 1rem;
  color: var(--charcoal-light);
  margin-bottom: 1.5rem;
  line-height: 1.9;
}

.about-signature {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.signature-line {
  flex: 1;
  height: 1px;
  background: var(--blush-deep);
}

.signature-text {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--taupe);
  font-size: 1rem;
}

.about-image-placeholder {
  aspect-ratio: 3/4;
}

/* ===================================
   Contact Section
   =================================== */
.contact {
  padding: var(--section-padding) 2rem;
  background: var(--charcoal);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(201, 168, 108, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.contact-wrapper {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-info .section-label {
  color: var(--gold-light);
}

.contact-info .section-title {
  color: var(--cream);
  text-align: left;
  margin-bottom: 1.5rem;
}

.contact-text {
  font-size: 1rem;
  color: rgba(250, 248, 245, 0.7);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.contact-value {
  font-size: 0.95rem;
  color: var(--cream);
  line-height: 1.6;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(250, 248, 245, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.social-link svg {
  width: 20px;
  height: 20px;
  color: var(--cream);
  transition: var(--transition-smooth);
}

.social-link:hover {
  border-color: var(--gold);
  background: var(--gold);
}

.social-link:hover svg {
  color: var(--charcoal);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 248, 245, 0.6);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(250, 248, 245, 0.2);
  padding: 0.75rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--cream);
  transition: var(--transition-smooth);
  outline: none;
}

/* Custom Select Dropdown */
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23C9A86C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 1.2rem;
  padding-right: 2rem;
  cursor: pointer;
  border-radius: 0;
}

.form-group select:focus {
  border-bottom-color: var(--gold);
}

.form-group select option {
  background: var(--charcoal);
  color: var(--cream);
  padding: 0.75rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(250, 248, 245, 0.3);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-bottom-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form .btn-primary {
  background: var(--gold);
  color: var(--charcoal);
  margin-top: 1rem;
}

.contact-form .btn-primary::before {
  background: var(--cream);
}

/* ===================================
   Footer
   =================================== */
.footer {
  background: var(--charcoal);
  padding: 3rem 2rem;
  border-top: 1px solid rgba(250, 248, 245, 0.1);
}

.footer-content {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--cream);
}

.footer-text {
  font-size: 0.8rem;
  color: rgba(250, 248, 245, 0.5);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: rgba(250, 248, 245, 0.5);
  transition: var(--transition-smooth);
}

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

.footer-social svg {
  width: 18px;
  height: 18px;
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-tagline {
    padding-left: 0;
  }
  
  .hero-tagline::before {
    display: none;
  }
  
  .hero-decoration {
    display: none;
  }
  
  .hero-image-placeholder {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .about {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-content .section-title,
  .about-content .section-label {
    text-align: center;
  }
  
  .about-text {
    text-align: center;
  }
  
  .about-image {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .contact-info .section-title {
    text-align: center;
  }
  
  .contact-info .section-label {
    text-align: center;
  }
  
  .contact-text {
    text-align: center;
  }
  
  .contact-details {
    align-items: center;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .mobile-menu {
    display: flex;
  }
  
  .hero {
    min-height: auto;
    padding-top: 6rem;
    padding-bottom: 3rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .btn {
    padding: 1rem 2rem;
    font-size: 0.65rem;
  }
}
