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

body {
  font-family: Cambria, serif;
  background-color: #fdfaf6;
  overflow-x: hidden;
}






/* Hero Section */
.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
 background: linear-gradient(135deg, rgba(169, 116, 63, 0.6), rgba(245, 225, 192, 0.6));
 /* background: rgba(255, 255, 255, 0.6); */
 
 text-align: center;
  padding: 2rem;
  animation: fadeIn 2s ease-in-out;
}

.hero-overlay h1 {
  font-family: Cambria, serif;
  font-size: 4rem;
  color: #6b4f4f;
}

.hero-overlay h1 span {
  font-family: Cambria, serif;
  color:#FF69B4;
}

.hero-overlay p {
  font-family: Cambria, serif;
  font-size: 1.2rem;
  margin: 1rem 0;
}

.cta-button {
  margin-top: 1rem;
  padding: 14px 28px;
  background: #a9743f;
  color: #fff;
  border: none;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-button:hover {
  background: #8b5e2a;
  transform: translateY(-2px);
}

/* About Section Styling */
.about-showcase {
  display: flex;
  flex-wrap: wrap;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #fffaf0, #fdf2e9);
  font-family: 'Cambria', serif;
  color: #5c3a1e;
}

.about-left {
  flex: 1;
  padding: 1rem;
}

.about-left h2 {
  font-size: 2.5rem;
  color: #6b4226;
  margin-bottom: 1rem;
}

.about-left h2 span {
  color: #a9743f;
  font-weight: bold;
}

.fancy-divider {
  width: 60px;
  height: 4px;
  background-color: #d4af37;
  border: none;
  margin: 1rem 0;
}

.about-left p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.core-values {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.core-values div {
  background: #f5deb3;
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  font-weight: bold;
  color: #6b4226;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.testimonial {
  font-style: italic;
  background: #fff8f0;
  padding: 1rem 1.5rem;
  border-left: 5px solid #a9743f;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  color: #5c3a1e;
}

.cta-center {
  margin-top: 2rem;
}

.cta-button {
  background-color: #a9743f;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background-color: #8b5e2a;
  transform: scale(1.05);
}

.showcase-right {
  flex: 1;
  padding: 1rem;
}

.slider {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.slider img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slider img.active {
  opacity: 1;
}

@media (max-width: 768px) {
  .about-showcase {
    flex-direction: column;
    padding: 2rem 1rem;
  }
  .about-left, .showcase-right {
    width: 100%;
  }
  .about-left h2 {
    font-size: 2rem;
  }
  .about-left p {
    font-size: 1rem;
  }
  .slider {
    height: 200px;
  }
}

/* Unique Salon Style for Services Section */
.services {
  background: linear-gradient(135deg, #fffaf0, #fdf2e9);
  padding: 4rem 2rem;
  text-align: center;
  font-family: 'Cambria', serif;
}

.services h2 {
  font-size: 2.5rem;
  color: #6b4226;
  margin-bottom: 2rem;
}

.services h2 span {
  color: #a9743f;
  font-weight: bold;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  perspective: 1000px;
  transition: transform 0.5s ease-in-out;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 300px;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.card-front i {
  font-size: 40px;
  color: #d4af37;
  margin-bottom: 1rem;
}

.card-front h3 {
  font-size: 1.5rem;
  color: #6b4226;
  margin-bottom: 0.5rem;
}

.card-front p {
  font-size: 1rem;
  color: #5c3a1e;
}

.card-back {
  transform: rotateY(180deg);
  background: #fff8f0;
  color: #6b4226;
}

.card-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.card-back p {
  position: relative;
  z-index: 1;
  font-weight: bold;
  font-size: 1.1rem;
}

.cta-center {
  margin-top: 3rem;
}

.cta-button {
  background-color: #a9743f;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background-color: #8b5e2a;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .card-inner {
    height: 260px;
  }
  .card-front, .card-back {
    padding: 1rem;
  }
  .card-front h3 {
    font-size: 1.2rem;
  }
  .card-front p, .card-back p {
    font-size: 0.95rem;
  }
}

.showcase {
  padding: 4rem 2rem;
  text-align: center;
}

.showcase h2 {
  font-size: 2.5rem;
  color: #6b4226;
  margin-bottom: 2rem;
}
.showcase h2 span {
  color: #a9743f;
  font-weight: bold;
}


.slider1 {
  overflow: hidden;
  max-width: 800px;
  margin: 2rem auto;
}

.slides {
  display: flex;
  animation: slide 12s infinite;
}

.slides img {
  width: 100%;
  flex-shrink: 0;
  border-radius: 10px;
  margin-right: 1rem;
}

@keyframes slide {
  0% { transform: translateX(0); }
  33% { transform: translateX(-100%); }
  66% { transform: translateX(-200%); }
  100% { transform: translateX(0); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero {
    height: 70vh;
  }
  .hero-overlay h1 {
    font-size: 2rem;
  }
  .hero-overlay p {
    font-size: 1rem;
  }
  .cta-button {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }
  .about-showcase {
    flex-direction: column;
    padding: 1rem;
  }
  .about-left, .showcase-right {
    width: 100%;
  }
  .core-values {
    flex-direction: column;
    gap: 0.5rem;
  }
  .service-cards {
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
  }
  .card {
    width: 100%;
  }
  .card-front, .card-back {
    padding: 1rem;
  }
  .slider1 img, .slider img {
    width: 100%;
    height: auto;
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
