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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  scroll-behavior: smooth;
}

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

.main-container {
  width: 96%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5px;
}

.container-fluid {
  width: 100%;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

h1, h2, h3 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #2a2a2a;
}

h1 {
  font-size: 2.8rem;
}

h2 {
  font-size: 2.2rem;
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}

h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 3px;
  width: 80px;
  margin: 0 auto;
  background-color: #a97889;
}

h3 {
  font-size: 1.5rem;
}

a {
  color: #a97889;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #754f5e;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: #a97889;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.btn:hover {
  background-color: #754f5e;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.mt-20 {
  margin-top: 20px;
}

.text-center {
  text-align: center;
}

/* Animation classes */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.feature, .product-card, .ingredient-item, .benefit-item, .testimonial, .value-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.feature.visible, .product-card.visible, .ingredient-item.visible, 
.benefit-item.visible, .testimonial.visible, .value-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Header */
header {
  background-color: #C6A2A4;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo-img {
  max-height: 40px;
  width: auto;
}

.logo a {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

nav ul {
  display: flex;
  list-style: none;
  align-items: center;
}

nav li {
  margin-left: 35px;
}

nav a {
  color: #fff;
  font-weight: 500;
  position: relative;
}

nav a:hover {
  color: #f1f1f1;
}

nav a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: width 0.3s;
}

nav a:hover:after {
  width: 100%;
}

.nav-cta {
  background-color: white;
  color: #C6A2A4 !important;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.nav-cta:hover {
  background-color: #fff;
  color: #C6A2A4 !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.nav-cta:after {
  display: none;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url("/images/hairdresser-hero.webp");
  background-size: cover;
  background-position: center 30%;
  color: white;
  text-align: center;
  padding: 160px 0;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.15);
  z-index: 1;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 20px;
  animation: fadeIn 1s ease-out;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 25px;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 35px;
}

/* Features Section */
.features {
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/images/high-angle-plastic-bottles-pink-background.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: -1;
  filter: blur(3px);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.feature {
  padding: 30px;
  border-radius: 10px;
  background-color: #f9f0f3;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.feature h3 {
  color: #a97889;
}

/* Products */
.featured-products, .products {
  padding: 80px 0;
}

.featured-products h2, .products h2, .product-faq h2 {
  text-align: center;
  margin-bottom: 50px;
}

.product-grid, .product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.product-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  background: white;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
  height: 320px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: 25px;
}

.price {
  font-weight: bold;
  color: #a97889;
  margin: 12px 0;
  font-size: 1.2rem;
}

.description {
  margin-bottom: 20px;
  color: #666;
}

/* Ingredients Section */
.ingredients {
  padding: 80px 0;
  background-color: #f9f0f3;
  text-align: center;
  position: relative;
}

.ingredients::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(169, 120, 137, 0.03);
  pointer-events: none;
}

.ingredients h2 {
  margin-bottom: 30px;
}

.ingredients p {
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
}

/* Carousel */
.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 40px auto;
  padding: 0 40px;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease;
  gap: 25px;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 25px;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(169, 120, 137, 0.8);
  color: white;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s, transform 0.2s;
  z-index: 5;
}

.carousel-button:hover {
  background-color: rgba(117, 79, 94, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.carousel-button.prev {
  left: 0;
}

.carousel-button.next {
  right: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.carousel-dot.active {
  background-color: #a97889;
}

.carousel-dot:hover {
  transform: scale(1.2);
}

.ingredient-item {
  flex: 0 0 260px;
  background: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.ingredient-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.ingredient-image {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #f9f0f3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.ingredient-image img {
  width: 65px;
  height: 65px;
  object-fit: contain;
}

.ingredient-name {
  font-weight: 600;
  color: #a97889;
  margin: 12px 0 8px;
}

.ingredient-desc {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.benefit-item {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.benefit-item h3 {
  color: #a97889;
}

/* Product-specific sections */
.products {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 40px;
}

.product-filters {
  background-color: #f9f0f3;
  padding: 25px;
  border-radius: 10px;
  align-self: start;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.product-filters ul {
  list-style-position: inside;
  margin-top: 15px;
}

.product-filters li {
  margin-bottom: 8px;
}

.product-faq {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 0;
}

.faq-item {
  margin-bottom: 40px;
  padding: 25px;
  background-color: #f9f0f3;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.faq-item:hover {
  transform: translateY(-3px);
}

.faq-item h3 {
  color: #a97889;
}

/* About Page */
.page-header {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("/images/bottles-shampoo-conditioner-lie-with-towel-comb-wooden-table.jpg");
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
  color: white;
}

.page-header h1 {
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.page-header p {
  color: white;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.about-story {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 50px;
  margin-bottom: 80px;
}

.story-content {
  animation: fadeIn 1s ease-out;
}

.story-image img {
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  animation: scaleIn 1s ease-out;
}

.mission-values, .product-quality {
  padding: 80px 0;
  background-color: #f9f0f3;
  position: relative;
}

.mission-values::before, .product-quality::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(169, 120, 137, 0.02);
  pointer-events: none;
}

.mission-values h2, .product-quality h2 {
  text-align: center;
  margin-bottom: 50px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.value-item {
  padding: 30px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.team {
  padding: 80px 0;
  text-align: center;
}

.team p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
  background-color: #f9f0f3;
  text-align: center;
  position: relative;
  background: linear-gradient(rgba(249,240,243,0.92), rgba(249,240,243,0.92)), url("/images/close-up-elegant-beauty-selfcare-treatment.jpg");
  background-size: cover;
  background-position: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.testimonial {
  padding: 35px;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.testimonial p {
  font-style: italic;
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.testimonial cite {
  font-weight: bold;
  color: #a97889;
  font-size: 1.05rem;
}

/* Personalization Section */
.personalization {
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.personalization::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/images/pensive-blonde-woman-black-attire-posing-blur-street-background-tanned-lady-with-braids-wears-pink-sunglasses.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.03;
  z-index: -1;
  filter: blur(2px);
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  padding: 60px 0 30px;
  margin-top: 80px;
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  width: 100%;
}

.footer-logo {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #a97889;
}

.footer-links h3, .footer-contact h3, .footer-social h3 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #a97889;
}

.footer-contact p {
  margin-bottom: 10px;
  color: #ccc;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: white;
  font-size: 20px;
  transition: color 0.3s, transform 0.2s;
  display: inline-block;
}

.social-links a:hover {
  color: #a97889;
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-story {
    grid-template-columns: 1fr;
  }
  
  .products {
    grid-template-columns: 1fr;
  }
  
  .product-filters {
    margin-bottom: 30px;
  }
  
  footer .container {
    flex-direction: column;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  nav li {
    margin: 5px 15px;
  }
  
  .carousel-container {
    padding: 0 30px;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .main-container {
    width: 95%;
    padding: 0 15px;
  }
} 