/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Lato', sans-serif; line-height: 1.6; color: #333; }

/* Navbar */
header { background: #111; position: sticky; top: 0; z-index: 1000; }
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 1rem 2rem; }
.logo { color: #f4c542; font-size: 1.1rem; font-weight: 300; }
.nav-links { list-style: none; display: flex; gap: 1.5rem; }
.nav-links a { color: #fff; text-decoration: none; transition: 0.3s; font-weight: 300; font-size: 0.9rem;}
.nav-links a:hover { color: #f4c542; }
.hamburger { display: none; font-size: 1.8rem; color: #fff; cursor: pointer; }

/* Hero */
.hero {
  background: url("images/hero.jpg") center/cover no-repeat;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* push content to left */
  text-align: left;            /* align text left */
  padding-left: 3%;
          /* add spacing from edge */
}

.hero-text { position: relative; color: #fff; max-width: 600px; }
.hero-text h2 {
  font-size: 5rem;     /* make it large */
  font-weight: 900;    /* bold */
  color: #fff;         /* keep contrast */
  line-height: 1.2;    /* spacing between lines */


}
.btn { display: inline-block; padding: 0.7rem 1.5rem; font-weight: 300; background: #000000; color: #fff;  margin-top: 2rem;  transition: 0.3s; text-decoration: none; }
.btn:hover { border: 1px solid white; }

/* Menu */
.menu { padding: 4rem 2rem; text-align: center;}
.filter-buttons { margin-bottom: 2rem; }
.filter-btn {  padding: 0.5rem 1rem; margin: 0.3rem; border: none; background: #eee; border-radius: 6px; cursor: pointer; transition: 0.3s; }
.filter-btn.active, .filter-btn:hover { background: #f4c542; }
.menu-items { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; }
.menu-card { background: #fff; padding: 1rem; border-radius: 12px; box-shadow: 0 4px 8px rgba(0,0,0,0.1); width: 280px; transition: transform 0.3s; }
.filter-buttons button {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  cursor: pointer;
}
.menu h2 {
  font-family: 'Lato', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
}

.menu-card h3 {
  font-family: 'Lato', sans-serif; /* apply Lato only here */
  font-size: 1rem;
  font-weight: 700;
  margin-top: 0.8rem;
}
.menu-card p {
  font-family: 'Open Sans', sans-serif; /* keep descriptions clean */
  font-size: 0.8rem;
  font-weight: 400;
  color: #555;        /* softer than heading */
  margin-top: 0.5rem; /* spacing from heading */
}
.menu-card:hover { transform: translateY(-8px); }
.menu-card img { width: 100%; border-radius: 12px; }

.about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 4rem 10%;
}

.about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem; /* more breathing room between images & text */
  padding: 4rem 10%;
  margin-bottom: 5rem;
}

.about-images {
  position: relative;
  flex: 1;
  max-width: 500px;
}

/* Back image (large) */
.main-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  position: relative;
  z-index: 1;
}

/* Front overlap image */
.overlap-img {
  position: absolute;
  bottom: -40px;   /* sit at bottom, looks cleaner */
  right: -40px;    /* overlap into corner */
  width: 65%;      /* slightly smaller */

  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  z-index: 2;
}

.about-text {
  flex: 1;
}
.about-text h2{
  margin-bottom: 1rem;
}




/* Testimonials */
.testimonials {
  padding: 5rem;
  text-align: center;
  background: #fafafa;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.testimonial-card {
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  max-width: 600px;
  margin: auto;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1rem;
  color: #333;
}

.stars {
  color: #f5b50a;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.testimonial-card h4 {
  font-weight: 600;
  color: #444;
}

/* === Swiper fixes === */
.testimonial-swiper {
  position: relative;
  padding-bottom: 4rem;  /* creates clear space below cards for dots */
}

.testimonial-swiper .swiper-pagination {
  position: absolute;
  bottom: 0;             /* move dots below content */
  left: 0;
  right: 0;
  text-align: center;
}

/* Default dots */
.swiper-pagination-bullet {
  background: #999;
  opacity: 1;
  width: 10px;
  height: 10px;
  margin: 0 6px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* Active dot */
.swiper-pagination-bullet-active {
  background: #f4c542 !important;
  transform: scale(1.2);
}

.contact {

  padding: 5rem 10%;
  background: #fff;
  display: flex;
  justify-content: center;
}

.contact-container {
  max-width: 700px;
  width: 100%;

  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  text-align: center;
}

.contact-container h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-family: 'Lato', sans-serif;
}

.contact-container p {
  color: #555;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.contact-form .form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  flex: 1;
  padding: 1rem;
  border: none;
  border-radius: 12px;
  background: #f7f7f7;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 99, 71, 0.25);
}

.contact-form textarea {
  resize: none;
}

.contact-form button {
  width: 100%;
  padding: 1rem;
  background: #f4c542;
  color: #000;
  font-size: 1.1rem;
  border: none;
  font-family: "Lato";
  font-weight: 400;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #F2B544;
}
.contact-container p{

  font-size: 0.9rem;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;              /* removes orange/blue glow */
  border: 1px solid #f4c542; /* optional: add your own custom border */
  box-shadow: 0 0 8px rgba(255, 107, 107, 0.3); /* modern subtle glow */
}


/* Footer */
.footer {
  background: #111;
  color: #ddd;
  padding: 3rem 10% 2rem;
  font-family: 'Lato', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer h2,
.footer h3 {
  color: #f4c542;
  font-weight: 300;
  margin-bottom: 1rem;
}

.footer p,
.footer a {
  font-size: 0.95rem;
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-contact p{
margin-bottom: 0.8rem;
  line-height: 1.6;
}
.footer a:hover {
  color: #ff6b6b;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.social-icons {
  margin-top: 1rem;
}

.social-icons a {
  margin-right: 10px;
  font-size: 1.2rem;
  color: #bbb;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #ff6b6b;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #888;
}


/* Responsive */
@media(max-width: 768px) {
  .nav-links { display: none; flex-direction: column; background: #111; position: absolute; top: 60px; right: 0; width: 200px; padding: 1rem; }
  .nav-links.active { display: flex; }
  .hamburger { display: block; }
  .about-content { flex-direction: column; }
}

@media (max-width: 768px) {
  .about {
    flex-direction: column;
    text-align: center;
  }

  .about-images {
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .overlap-img {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 60%;
  }
}
