/* Modern Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter Tight', sans-serif;
  line-height: 1.6;
  color: #3a3a3a;
  background-color: #fff;
  overflow-x: hidden;
}

/* Color Palette */
:root {
  --primary: #8d745c;
  --primary-light: #a8957d;
  --primary-dark: #6b5745;
  --secondary: #d4c1a5;
  --accent: #b89b7d;
  --light: #f9f6f1;
  --dark: #2a2421;
  --white: #ffffff;
  --gold: #c9a86a;
  --gold-light: #e0cfa9;
}

/* Typography */
h1 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.8rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  h3 {
    font-size: 1.6rem;
  }
  
  p {
    font-size: 0.8rem;
  }
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.4s;
  z-index: -1;
}

.btn:hover::before {
  width: 100%;
}

.btn-primary {
  background-color: var(--gold);
  color: var(--white);
  box-shadow: 0 5px 15px rgba(201, 168, 106, 0.3);
}

.btn-primary:hover {
  background-color: #b8975a;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201, 168, 106, 0.4);
}

.btn-secondary {
  background: linear-gradient(45deg, var(--primary), var(--accent));
  color: var(--white);
  box-shadow: 0 5px 15px rgba(141, 116, 92, 0.3);
}

.btn-secondary:hover {
  background: linear-gradient(45deg, var(--primary-dark), var(--primary));
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(141, 116, 92, 0.4);
}

/* Navigation */
.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-brand img {
  max-height: 50px;
  transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
  max-height: 40px;
}

.navbar-caption {
  font-weight: 700;
  color: var(--primary-dark);
  text-decoration: none;
  margin-left: 15px;
  font-size: 1.4rem;
  letter-spacing: 1px;
}

.navbar-menu {
  display: flex;
  gap: 2rem;
}

.navbar-menu a {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  position: relative;
}

.navbar-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: width 0.3s ease;
}

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

.navbar-menu a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(141, 116, 92, 0.85), rgba(141, 116, 92, 0.9)), url('../images/6-h_m5t35564.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 12rem 0 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero p {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Section Styling */
.services, .facials, .contact {
  padding: 6rem 0;
}

.services:nth-child(even),
.facials:nth-child(even),
.contact:nth-child(even) {
  background-color: var(--light);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  color: var(--primary-dark);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--accent));
}

.section-header p {
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 1rem auto 0;
}

/* Services Grid */
.services-grid, .facials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card, .facial-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
}

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

.service-img, .facial-img {
  padding: 0;
  position: relative;
  overflow: hidden;
  height: 250px;
}

.service-img img, .facial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.5s ease;
}

.service-card:hover .service-img img,
.facial-card:hover .facial-img img {
  transform: scale(1.05);
}

.service-content, .facial-content {
  padding: 2rem;
}

.price {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.price::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
}

/* CTA Section */
.cta {
  background: linear-gradient(rgba(107, 87, 69, 0.9), rgba(107, 87, 69, 0.95)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%236b5745"/><path d="M0 50 Q 25 30, 50 50 T 100 50" stroke="%23c9a86a" fill="none" stroke-width="0.5"/></svg>');
  color: var(--white);
  padding: 6rem 0;
  text-align: center;
}

.cta h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.cta p {
  color: var(--white);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.contact-item {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.contact-item i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.contact-item h3 {
  color: var(--primary-dark);
}

.map-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  transition: all 0.3s ease;
  padding: 8px 15px;
  border-radius: 30px;
  background-color: rgba(201, 168, 106, 0.1);
}

.map-link:hover {
  color: var(--gold);
  background-color: rgba(201, 168, 106, 0.2);
  transform: translateX(5px);
}

.map-link i {
  margin-right: 10px;
  font-size: 1.2rem;
}

/* Footer */
footer {
  background: linear-gradient(to right, var(--primary-dark), var(--dark));
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}

footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .service-content, .facial-content {
    padding: 1.5rem;
  }
  
  .contact-item {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 10rem 0 5rem;
  }
  
  .services, .facials, .contact {
    padding: 4rem 0;
  }
  
  .cta {
    padding: 4rem 0;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .navbar-menu {
    display: none;
  }
  
  .price {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
  
  h1 {
    font-size: 1.6rem;
  }
  
  h2 {
    font-size: 1.4rem;
  }
  
  h3 {
    font-size: 1.2rem;
  }
  
  p {
    font-size: 0.95rem;
  }
  
  .service-content, .facial-content, .contact-item {
    padding: 1.2rem;
  }
  
  .hero-content {
    padding: 0 10px;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}