/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

/* Header */
/* Header and Nav moved to navbar.css */

/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-items: center;
  padding: 120px 10% 60px;
  /* Increased top padding */
  background-image: url("./Images/kitchen.jpg");
  background-size: cover;
  background-size: cover;


}

.hero-text {
  flex: 1;
  padding-right: 20px;
}

.hero-text h1 {
  font-size: 2.5rem;
  color: #010101;
  margin-bottom: 15px;

}

.hero-text p {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
  margin-top: 90px;

}

.hero-img {
  /* flex: 1; */
  background-color: #a6a4a456;
  margin-left: 10%;

}

.hero-img img {
  width: 100%;
  border-radius: 30px 0px 30px 0px;
  box-shadow: 0 12px 12px rgba(0, 0, 0, 0.744);
  /* margin-top: 60px; */

}

.btn {

  background: #186676;
  /* bright orange */
  color: #14405c;
  /* white text */
  padding: 12px 24px;
  /* size */
  border: none;
  /* no border */
  border-radius: 8px;
  /* rounded corners */
  font-size: 1rem;
  /* text size */
  font-weight: 600;
  cursor: pointer;
  /* pointer on hover */
  transition: all 0.3s ease;
  /* smooth hover effect */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  margin-left: 40%;
  margin-top: 15%;
}

.customer-trust {
  display: flex;
  flex-direction: column;
  /* stack avatars & text */
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  font-size: 1.1rem;
  text-align: center;
}

/* Avatars */
.avatars {
  display: flex;
  align-items: center;
  animation: slideIn 1.2s ease-out;
  /* margin-top: 10%; */
}

.avatars img,
.avatars .more {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  margin-left: -12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.avatars img:first-child {
  margin-left: 0;
}

.avatars .more {
  background: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  cursor: pointer;
}

.avatars p {
  color: #126161;
}

/* Hover bounce */
.avatars img:hover,
.avatars .more:hover {
  transform: translateY(-6px) scale(1.05);
}

/* Text fade in */
.customer-trust p {
  margin: 0;
  opacity: 0;
  animation: fadeIn 2s ease-in forwards;
  animation-delay: 1s;
  /* after avatars slide in */
}

.customer-trust strong {
  text-decoration: underline;
}

/* Keyframes */
@keyframes slideIn {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

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


/* Why Choose Section */
.why {
  padding: 60px 10%;
  text-align: center;
  background: #fafafa;
}

.why h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #222;
}

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

.card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h3 {
  font-size: 1.2rem;
  color: #333;
  margin: 15px;
}

.card p {
  margin: 0 15px 20px;
  color: #555;
  line-height: 1.5;
}

/* Testimonials */
.testimonials {
  padding: 60px 10%;
  background: #fff;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.quote {
  font-style: italic;
  color: #555;
  margin-bottom: 15px;
}

/* Booking */
.booking {
  background: #f9f5ef;
  padding: 60px 10%;
  text-align: center;
}

.booking h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #222;
}

.booking p {
  margin-bottom: 20px;
  color: #555;
}

/* Footer */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}