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

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

img {
  max-width: 100%;
  display: block;
}

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

h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: #d4a017;
}

h3 {
  color: #333;
}
p{
  text-align: center;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url('images/salon-preview.jpg') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.hero .button {
  background-color: #d4a017;
  border: none;
  padding: 10px 20px;
  color: white;
  font-weight: bold;
  margin: 0 10px;
  text-decoration: none;
  border-radius: 5px;
}

.hero .button i{
  margin-right: 10px;
  color: #fff;
  font-size: 16px;
  vertical-align: middle;
}

@keyframes rotateText {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#rotating-text {
  transform: scale(0.8);
  opacity: 0;
  text-shadow: 0 0 0px #ffc107;
  transition: transform 1s ease-out, opacity 1s ease-out, text-shadow 1s ease-out;
}
#rotating-text.animate {
  transform: scale(1);
  opacity: 1;
  text-shadow: 0 0 10px #ffc107;
}



/* Section Styling */
.section {
  padding: 60px 20px;
  background-color: #fff;
}

.team .team-grid,
.testimonials .testimonial-grid,
.faqs .faq-item,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}


.team-member img,
.product-images img,
.gallery-grid img {
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}


.team-member h3,
.shop-1,
.shop-category {
  margin-top: 1rem;
  color: #d4a017;
}

.navbar {
  background: #222;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.logo {
  font-size: 1.5rem;
  font-weight: bold;
}
.nav-link {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.nav-link a {
  color: #fff;
  text-decoration: none;
}
.nav-link a:hover {
  color: #f8c400;
}
.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #333;
  display: none;
  flex-direction: column;
  padding: 0.5rem 0;
}
.dropdown:hover .dropdown-menu {
  display: flex;
}
.dropdown-menu li {
  padding: 0.5rem 1rem;
}
.dropdown-menu li a {
  color: #333;
}

.dropdown-menu li a:hover {
color: #f8c034;
}


.services {
  padding: 40px 20px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card img {
  width: 100%;
  border-radius: 12px;
  max-height: 200px;
  object-fit: cover;
}

.service-card h3 {
  margin: 10px 0 5px;
  color: #333;
}

.service-card p {
  color: #666;
  margin-bottom: 10px;
}

.price {
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
}

.service-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.service-buttons button {
  background-color: #e8b14d;
  color: #fff;
  padding: 8px 15px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s;
}

.service-buttons button:hover {
  background-color: #c8952b;
}

@media (max-width: 600px) {
  .service-buttons {
    flex-direction: column;
    gap: 8px;
  }
}

/* Shop Section */
.shop {
  padding: 2rem;
}
.shop h2 {
  margin: 2rem 0 1rem;
  font-size: 1.8rem;
  border-bottom: 2px solid #f8c400;
  display: inline-block;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: #f9f9f9;
  padding: 1rem;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.product-card:hover {
  transform: translateY(-5px);
}
.product-card img {
  max-width: 100%;
  border-radius: 8px;
}
.product-card h3 {
  margin: 0.5rem 0;
}
.whatsapp-btn {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #25D366;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}
.whatsapp-btn:hover {
  background-color: #128C7E;
}

/* Cart Styles */
.cart-container {
  position: fixed;
  top: 80px;
  right: 20px;
  background: white;
  padding: 1rem;
  border: 2px solid #f8c400;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  max-width: 300px;
  z-index: 999;
}
.cart-container h3 {
  margin-bottom: 10px;
}
#cart-items {
  list-style: none;
  padding: 0;
}
#cart-items li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
#cart-items button {
  background: red;
  color: white;
  border: none;
  padding: 2px 6px;
  border-radius: 4px;
  cursor: pointer;
}
.cart-container button {
  margin-top: 1rem;
  background-color: #25D366;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
}



/* Team Section */
.team-member {
  text-align: center;
}

/* Testimonials */
.testimonial-grid blockquote {
  font-style: italic;
  border-left: 4px solid #d4a017;
  padding-left: 15px;
  background: #fff;
  padding: 15px;
  border-radius: 8px;
}

.testimonial-grid cite {
  display: block;
  margin-top: 10px;
  text-align: right;
  font-weight: bold;
}

/* FAQs */
.faq-item h3 {
  color: #d4a017;
}


/* ===== Comment Form ===== */
.faq-comments {
  margin-top: 30px;
  padding: 15px;
  border-top: 2px solid #ccc;
}

.faq-comments form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-comments input, .faq-comments textarea{
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.faq-comments button {
  padding: 10px;
  background: #d4a373;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.faq-comments button:hover {
  background: #b38354;
}

.comment-item {
  margin-top: 15px;
  padding: 10px;
  background: #f8f8f8;
  border-radius: 5px;
  border-left: 4px solid #d4a373;
}

.comment-item strong{
  display: block;
  margin-bottom: 5px;
}





/* Newsletter */
#newsletter {
  background-color: #fff3cd;
  padding: 40px 20px;
  text-align: center;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: auto;
}

.newsletter-form input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}


/* Contact Section */
.contact-section {
  padding: 3rem 1rem;
  background-color: #f4f4f4;
}
.container {
  max-width: 1100px;
  margin: auto;
}
.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}
.contact-left,
.contact-right {
  flex: 1 1 45%;
}
.contact-left h2 {
  margin-bottom: 1rem;
}
.contact-left p {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: #333;
}
.contact-left i {
  margin-right: 0.5rem;
  color: #f8c400;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.contact-form .form-actions {
  display: flex;
  gap: 1rem;
}
.contact-form button {
  flex: 1;
  padding: 0.75rem;
  background-color: #f8c400;
  color: #000;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s ease;
}
.contact-form button:hover {
  background-color: #e6b800;
}
.form-alert {
  margin-top: 1rem;
  color: green;
}
@media (max-width: 768px) {
  .contact-row {
    flex-direction: column;
  }
}


/* Footer */
.footer-content {
  background-color: #222;
  color: #ddd;
  text-align: center;
  padding: 20px 10px;
  margin-top: 60px;
}

.footer-content .social-icons {
  margin-top: 10px;
}

.footer-content a {
  color: #f8c034;
  margin: 0 10px;
  text-decoration: none;
}


/* Newsletter CSS */

  .newsletter {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
  }

  .newsletter-container {
    max-width: 500px;
    margin: 0 auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .newsletter h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #222;
  }

  .newsletter p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #666;
  }

  .newsletter input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 16px;
  }

  .newsletter button {
    width: 100%;
    padding: 12px 15px;
    background-color: #d4af37; /* Gold */
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .newsletter button:hover {
    background-color: #b4932f;
  }

  /* Responsive Design */
  @media (max-width: 600px) {
    .newsletter-container {
      padding: 20px;
    }

    .newsletter h2 {
      font-size: 22px;
    }
  }



.button {
  width: 100%;
  padding: 10px;
  background-color: #ff6f61;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
}

.button:hover {
  background-color: #e65b4f;
}

@media (max-width: 600px) {
  .container {
    margin: 20px;
    padding: 15px;
  }

  h2 {
    font-size: 20px;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .form-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .newsletter-form {
    width: 100%;
  }

  .hero .button {
    display: block;
    margin: 10px auto;
  }
}
 
 
 
