/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #fff;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== NAVBAR ===== */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 60px; /* more breathing space */
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}
nav img {
  margin-left: 5px;
}

nav img {
  height: 50px;   /* slightly smaller = cleaner */
  width: auto;
  object-fit: contain;
}

.nav-links a {
  margin-left: 25px;
  font-weight: 600;
  color: #333;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #FF6B00;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero-overlay {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
  url('./images/hero.png') center/cover no-repeat;
  
  height: 90vh; /* 🔥 full screen feel */
  background-size: 110%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.hero-overlay h1 {
  font-size: 44px;
  margin-bottom: 10px;
}

.hero-overlay h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.hero-overlay p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* ===== BUTTON ===== */
.btn-cta {
  background-color: #FF6B00;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-cta:hover {
  background-color: #e65a00;
}

/* ===== SECTION WIDTH CONTROL ===== */
section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  text-align: center;
  color: #FF6B00;
}

section p {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

/* ===== TRUST ===== */
#trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 60px auto;
}

.trust-card {
  flex: 0 0 250px;
  background: #fff8f0;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  text-align: center;
  font-weight: 600;
}

/* ===== SERVICES ===== */
.services {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.services .card {
  flex: 0 0 250px;
  height: 180px;
  background: #fff8f0;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.services .card:hover {
  transform: translateY(-5px);
}

/* ===== MENU ===== */
.menu-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.menu-box {
  flex: 0 0 300px;
  height: 420px;
  background: #fff8f0;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.3s;
}

.menu-box:hover {
  transform: translateY(-5px);
}

.menu-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

/* ===== GALLERY ===== */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.gallery img {
  width: 250px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  transition: 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* ===== VIDEO (FIXED) ===== */
.video-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.video-container video {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ===== FORM ===== */
form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form input,
form textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

form button {
  background: #FF6B00;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

form button:hover {
  background: #e65a00;
}

/* ===== MAP FIX ===== */
#contact iframe {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}


/* ===== WHATSAPP ===== */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  padding: 15px;
  border-radius: 50%;
  color: white;
  font-size: 22px;
}

/* ===== FOOTER ===== */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 25px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav {
    padding: 15px 20px;
  }

  .hero-overlay h1 {
    font-size: 30px;
  }

  .menu-box {
    width: 90%;
    height: auto;
  }

  .video-container video {
    max-width: 90%;
  }

  #contact iframe {
    height: 250px;
  }

  .nav-links {
    display: none;
  }
}

/* ===== CONTACT SECTION ===== */
.contact-container {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 280px;
  font-size: 16px;
}

.contact-info p {
  margin-bottom: 15px;
}

.contact-map {
  flex: 1;
  min-width: 300px;
}

.contact-map iframe {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  border: none;
}