/* =========================
   🔹 GLOBAL STYLES
   ========================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
}

/* =========================
   🔹 HEADER
   ========================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  transition: all 0.4s ease;
  z-index: 1000;
  background: transparent;
}

header.scrolled {
  background: #fdb827;
  padding: 12px 50px;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.navlogo {
  width: 180px;
  transition: all 0.3s ease;
}

header.scrolled .navlogo {
  width: 120px;
}

nav {
  flex: 1;
  text-align: center;
}

nav ul {
  list-style: none;
  display: inline-flex;
  gap: 30px;
  align-items: center;
}

nav ul li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.order-btn {
  background: #d32f2f;
  color: #fff;
  padding: 10px 25px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.order-btn:hover {
  background: #b71c1c;
}

/* ======= TOGGLE BUTTON ======= */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
  transition: all 0.3s ease;
  z-index: 1100;
}

/* ======= RESPONSIVE NAV ======= */
@media (max-width: 992px) {
  header {
    height: 60px;
    padding: 15px 25px;
  }

  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 25px;
    width: 230px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 15px 0;
    text-align: center;
    animation: fadeIn 0.3s ease forwards;
  }

  nav.active ul {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  nav ul li {
    padding: 10px 0;
    width: 100%;
    color: #000;
  }

  .order-btn {
    width: 80%;
    margin: 10px auto;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .navlogo {
    width: 140px;
  }

  nav ul {
    width: 180px;
    right: 15px;
  }

  .menu-toggle {
    font-size: 25px;
  }
  nav ul li a{
    color: #000;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================
   🔹 HERO SECTION (BLURRED IMAGE)
   ========================= */
.sectionone {
  position: relative;
  width: 100%;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.sectionone::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("images/Untitled design (7).jpg") center/cover no-repeat;
  filter: blur(6px);
  transform: scale(1.1);
  z-index: 0;
}

.about-banner-content {
  position: relative;
  z-index: 1;
}

.about-banner-content h1 {
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
}

.about-banner-content p {
  margin-top: 10px;
  font-size: 1.2rem;
  color: #f1f1f1;
}

@media (max-width: 768px) {
  .sectionone {
    height: 60vh;
  }
  .about-banner-content h1 {
    font-size: 2rem;
  }
  .about-banner-content p {
    font-size: 1rem;
  }
}

/* =========================
   🔹 WHO WE ARE SECTION
   ========================= */
.sectiontwo {
  padding: 80px 10%;
  text-align: center;
  background: #fff;
}

.sectiontwo h2 {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 10px;
  font-weight: 700;
}

.sectiontwo .subtitle {
  color: #e63946;
  font-weight: 600;
  margin-bottom: 50px;
}

.who-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.who-card {
  background: #fafafa;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 20px;
  transition: all 0.3s ease;
}
.who-card img{
  border-radius: 20px;
}

.who-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.who-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #e63946;
  margin-bottom: 10px;
}

.who-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

/* =========================
   🔹 OUR STORY
   ========================= */
.our-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: #1c1c1c;
  color: #fff;
  padding: 80px 10%;
  gap: 40px;
}

.story-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

.story-text .tagline {
  color: #ffb400;
  margin-bottom: 20px;
  font-weight: 600;
}
 .story-img img {
  border-radius: 25px;
 }
.story-text p {
  line-height: 1.7;
  margin-bottom: 25px;
  color: #ddd;
}

.story-btn {
  background: #ffb400;
  color: #000;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.story-btn:hover {
  background: #ffaa00;
}

@media (max-width: 768px) {
  .our-story {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 7%;
  }
  .story-img img {
    max-width: 90%;
    margin: 0 auto;
  }
}

/* =========================
   🔹 SPECIAL MOMENT SECTION
   ========================= */
.special-moment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 80px 10%;
  align-items: center;
  background: #fff;
  gap: 40px;
}

.special-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #e63946;
}

.special-text p {
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;

}
.special-text{
  margin-left: -90px;
}
.special-text .signature {
  font-family: 'Dancing Script', cursive;
  color: #e63946;
  font-size: 1.5rem;
  font-weight: bold;
  display: block;
  margin-top: 10px;
}
.special-img img{
  width: 75%;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .special-moment {
    grid-template-columns: 1fr;
    padding: 60px 7%;
    text-align: center;
  }

  .special-img img {
    max-width: 90%;
    margin: 0 auto 0px;
  }
  .special-text{
  margin-left: auto;
}

  .special-text h2 {
    font-size: 1.6rem;
  }
}

/* =========================
   🔹 FOOTER
   ========================= */

.footer-section {
    background-color: #000000; /* Main footer background color (dark green) */
    position: relative;
    color: #E0E0E0; /* Light text color for contrast */
    padding-top: 100px; /* Space for the wave to overlap from the top */
    padding-bottom: 30px; /* Space for the bottom text */
    overflow: hidden; /* Important for containing the wave background */
}


.footer-content-wrapper {
    position: relative;
    z-index: 2; /* Ensure content is above the wave */
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    gap: 40px; /* Space between columns */
}

.footer-left,
.footer-middle,
.footer-right {
    flex: 1; /* Allow columns to grow and shrink */
    min-width: 280px; /* Minimum width for each column before wrapping */
}

/* Footer Left - Contact Info */
.footer-left {
    text-align: left;
    line-height: 1.6;
}

.footer-left .get-in-touch {
    color: #AAD9BB; /* Lighter green for "Get In Touch" */
    font-size: 0.9em;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-left .get-in-touch .fas {
    color: #AAD9BB; /* Lighter green for the heart icon */
}

.footer-left .contact-info-title {
    color: #F8F8F8; /* White/light gray for the title */
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-left p {
    margin-bottom: 8px;
    font-size: 0.95em;
}

.footer-left .contact-text {
    font-style: italic;
    font-size: 0.85em;
    margin-bottom: 20px;
}

.footer-left .phone-number,
.footer-left .email-address,
.footer-left .location {
    font-weight: 500;
}

/* Footer Middle - Navigation Links */
.footer-middle {
    display: flex;
    justify-content: space-around; /* Distribute link columns */
    gap: 20px;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-list li {
    margin-bottom: 10px;
}

.footer-nav-list a {
    color: #E0E0E0;
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px; /* Space between icon and text */
}

.footer-nav-list a:hover {
    color: #AAD9BB; /* Lighter green on hover */
}

.footer-nav-list a .fas {
    color: #AAD9BB; /* Lighter green for dot icons */
    font-size: 0.7em;
}

.footer-right {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 90px;
}

.map-placeholder {
    width: 250px;      /* Circle width */
    height: 250px;     /* Circle height */
    border-radius: 10%; /* Makes container circular */
    overflow: hidden;  /* Clips the iframe inside circle */
    border: 5px solid #AAD9BB;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    background-color: #ccc; /* Optional fallback */
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    display: block;
}


/* Footer Bottom - Copyright and Policy */
.footer-bottom {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Subtle separator */
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom p {
    margin: 5px 0;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .footer-content-wrapper {
        flex-direction: column; /* Stack columns vertically */
        align-items: center;
        text-align: center; /* Center text for stacked columns */
    }

    .footer-left,
    .footer-middle,
    .footer-right {
        min-width: unset; /* Remove min-width to allow full width */
        width: 100%;
        margin-bottom: 30px; /* Add space between stacked sections */
    }

    .footer-left {
        text-align: center;
    }

    .footer-left .get-in-touch {
        justify-content: center;
    }

    .footer-middle {
        flex-direction: row; /* Keep nav lists side-by-side if space allows */
        justify-content: center;
    }

    .footer-nav-list {
        margin: 0 15px; /* Add some margin between the two nav lists */
    }

    .footer-right {
        margin-bottom: 0; /* No extra margin for the last section */
    }
}

@media (max-width: 600px) {
    .footer-middle {
        flex-direction: column; /* Stack nav lists on very small screens */
        align-items: center;
    }
    .footer-nav-list {
        margin: 0 0 20px 0; /* Space out stacked lists */
    }
}
