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

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

a {
  color: #b35b87;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 2rem 1rem;
}

/* Hero Section */
.hero {
  background: url('https://images.unsplash.com/photo-1613076013581-f2e8fd53b7a4?auto=format&fit=crop&w=1400&q=80') no-repeat center/cover;
  color: white;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero .overlay {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  padding: 3rem 1rem;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
}

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

.btn {
  background-color: #e285ae;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #b35b87;
}

/* Navbar */
.navbar {
  background-color: #fff;
  padding: 1rem 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 10;
}

.navbar ul {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.navbar a {
  font-weight: 600;
  color: #b35b87;
}

.navbar a:hover {
  color: #333;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section h2 {
  color: #b35b87;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

/* About */
.about p {
  max-width: 800px;
  margin: auto;
  font-size: 1.1rem;
}

/* Services */
.services .service-category {
  margin-bottom: 2rem;
}

.services .service-category h3 {
  color: #e285ae;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.services ul {
  padding-left: 1rem;
  font-size: 1rem;
  color: #555;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

/* Testimonials */
.testimonials {
  background-color: #fff0f6;
  padding: 4rem 2rem;
  border-top: 3px solid #ffc0dd;
  border-bottom: 3px solid #ffc0dd;
  font-style: italic;
}

/* Contact Form */
.contact form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact input,
.contact select,
.contact textarea {
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.contact textarea {
  resize: vertical;
  min-height: 100px;
}

.contact button {
  background-color: #b35b87;
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact button:hover {
  background-color: #a04d74;
}

/* Hours Section */
.hours ul {
  margin-top: 1rem;
  font-size: 1rem;
  color: #555;
}

/* Footer */
footer {
  background-color: #6b3e62;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}

footer .socials {
  margin-top: 0.5rem;
}

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

  .hero p {
    font-size: 1.1rem;
  }

  .navbar ul {
    flex-direction: column;
    gap: 1rem;
  }

  .section h2 {
    font-size: 1.5rem;
  }
.hero {
    background: url('images/f731804f-36d8-4719-babe-a371e6ac7645.jpeg') no-repeat center/cover;

  color: white;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}


/* Hamburger styles */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #b35b87;
  margin: 4px 0;
}

@media (max-width: 768px) {

}
  .navbar ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #fff;
    position: absolute;
    top: 60px;
    left: 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

  .navbar ul.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}


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

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

.service-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin-bottom: 0.5rem;
}

.service-item p {
  font-weight: 500;
  color: #b35b87;
}
