/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #d1a080;
  --secondary-color: #f5efe9;
  --text-color: #333;
  --light-text: #fff;
  --dark-text: #28303D;
  --heading-font: 'Dancing Script', cursive;
  --body-font: 'Nunito Sans', sans-serif;
}

body {
  font-family: var(--body-font);
  line-height: 1.6;
  color: var(--text-color);
  background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  margin-bottom: 1rem;
  color: var(--dark-text);
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
}

p {
  margin-bottom: 1rem;
}

/* Header / Hero Section */
.hero {
  background-image: linear-gradient(135deg, #d1a080 0%, #f5efe9 100%);
  background-size: cover;
  background-position: center;
  color: var(--light-text);
  text-align: center;
  padding: 120px 20px;
  position: relative;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: var(--light-text);
}

/* Navigation */
nav {
  background-color: rgba(255, 255, 255, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  color: var(--primary-color);
  text-decoration: none;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 600;
  transition: color 0.3s;
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-color);
}

/* Sections */
section {
  padding: 80px 0;
}

section:nth-child(even) {
  background-color: var(--secondary-color);
}

/* About Section */
.about-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 2;
}

.salon-image {
  margin-top: 2rem;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.service {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  gap: 40px;
}

.service:nth-child(even) {
  flex-direction: row-reverse;
}

.service-image {
  flex: 1;
}

.service-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-text {
  flex: 1;
}

/* Prices Section */
.prices-content {
  display: flex;
  justify-content: center;
}

.price-list {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.contact-info {
  flex: 1;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.map {
  flex: 2;
  height: 400px;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
  background-color: var(--dark-text);
  color: var(--light-text);
  text-align: center;
  padding: 20px 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-content,
  .service,
  .contact-content {
    flex-direction: column;
  }
  
  .service:nth-child(even) {
    flex-direction: column;
  }
  
  .about-image,
  .service-image,
  .service-text,
  .contact-info,
  .map {
    flex: none;
    width: 100%;
    margin-bottom: 2rem;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-links li {
    margin: 0.5rem 0;
    text-align: center;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  section {
    padding: 60px 0;
  }
}
.price-list {
  width: 100%;
  border-collapse: collapse;
}

.price-list th,
.price-list td {
  border: 1px solid #ddd;
  padding: 8px 12px;
  text-align: left;
}

.price-list th {
  background: #f7f7f7;
}

.price-list th[colspan="2"] {
  background: #e9e9e9;
  text-align: center;
  font-weight: bold;
}

.price-list td:last-child {
  text-align: right;
  white-space: nowrap;
}

.price-list small {
  color: #666;
  font-size: 0.9em;
}
