.about-us {
  padding: 80px 5px;
  background: #fafafa;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}
.about-us .container {
  max-width: 1100px;
  margin: 0 auto;
}
.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.about-us h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 30px;
  color: #2c3e50;
  position: relative;
}

.about-us h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #e67e22;
  margin: 10px auto 0;
  border-radius: 2px;
}
/* .about-content h2 {
  font-size: 2.5rem;
  color: #8B0000; /* elegant wine red */
  /* margin-bottom: 15px;
} */ 

.about-content h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Mobile responsive */
@media(max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    margin: 2.5%;
  }
  .about-us p{
    margin: 1%;
  }
}
.about-us p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
  text-align: justify;
}

.about-us strong {
  color: #e67e22; /* highlight important text */
}


/* Taste Section */
.taste-section {
  padding: 80px 30px;
  background: #faf8f5; /* soft beige background */
}

.taste-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  
}

.taste-text h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 20px;
}

.taste-text p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 15px;
}

.taste-text .highlight {
  color: #e67e22; /* golden highlight */
  font-weight: bold;
}

.cta-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #e67e22;
  color: #fff;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #b8860b; /* golden hover */
}

.taste-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0px 6px 18px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .taste-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .taste-text {
    order: 2;
  }

  .taste-image {
    order: 1;
  }
}
/* services */
.services-section {
  padding: 80px 20px;
  background: #f8f9fa;
  font-family: 'Segoe UI', sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 36px;
  color: #c0392b !important;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.service-card h3 {
  font-size: 22px;
  color: #c0392b;
  margin-bottom: 15px;
}

.service-card p, 
.service-card ul {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

.service-card ul {
  list-style: disc;
  margin-left: 20px;
}
/* branches */
 body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      line-height: 1.6;
      color: #333;
    }
.branches {
      max-width: 1400px;
      margin: 0 auto;
      margin-top: 4%;
      padding: 40px 40px;
      text-decoration: underline;
      text-align: center;
    }

    .section {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 50px 10%;
      gap: 30px;
      flex-wrap: wrap;
    }

    .section:nth-child(even) {
      background: #f9f9f9;
    }

    .section-content {
      flex: 1;
      min-width: 300px;
    }

    .section-content h2 {
      font-size: 26px;
      color: #b84e00;
      margin-bottom: 15px;
    }

    .section-content p {
      margin-bottom: 15px;
    }

    .section-image {
      flex: 1;
      min-width: 300px;
    }

    .section-image img {
      width: 100%;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .gallery-container {
  max-width: 700px;
  margin: auto;
  text-align: center;
}

.main-image img {
  width: 100%;
  border-radius: 10px;
  cursor: pointer;
}

.thumbnails {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.thumbnails img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.3s;
}

.thumbnails img:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

/* Popup (lightbox) */
.popup {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 80px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.popup-content {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 80vh;  /* keeps it inside screen height */
  border-radius: 10px;
  object-fit: contain;
}

.close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}
/* contact us */
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #f8f9fa;
}

/* Contact Section */
.contact-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.contact-section h1 {
  font-size: 2rem;
  color: #333;
}

.subtitle {
  color: #666;
  margin: 10px 0 30px;
}

/* Contact Container */
.contact-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* Contact Card */
.contact-card {
  background: #fff;
  width: 450px;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-align: left;
}

.contact-card h2 {
  color: #ff6b00;
  margin-bottom: 10px;
}

.contact-card p {
  margin-bottom: 8px;
  color: #333;
}

/* Map Styling */
.map-container {
  margin-top: 10px;
  width: 100%;
  height: 220px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
}

/* Contact Form */
.form-container {
  margin-top: 40px;
  background: #fff;
  padding: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.form-container h2 {
  color: #ff6b00;
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input,
textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

input:focus,
textarea:focus {
  border-color: #ff6b00;
}

button {
  padding: 12px;
  font-size: 1.1rem;
  background: #ff6b00;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #e65a00;
}

/* --------- RESPONSIVE DESIGN --------- */
@media screen and (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-card {
    width: 90%;
  }

  .form-container {
    width: 90%;
  }
}
/* Thank You Popup */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.popup-box {
    background: white;
    padding: 30px;
    max-width: 400px;
    width: 80%;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: popupFade 0.3s ease-in-out;
}

.popup-box h2 {
    margin-bottom: 10px;
    color: #27ae60;
}

.popup-box button {
    margin-top: 15px;
    padding: 8px 18px;
    border: none;
    background: #27ae60;
    color: white;
    cursor: pointer;
    border-radius: 6px;
}

@keyframes popupFade {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
