/* -------------------- Reset -------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #fafafa;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}



/* -------------------- About Section -------------------- */

.about-section ul {
  list-style: none;   /* removes default dots */
  padding-left: 0;    /* removes left indentation */
  margin: 0;
}

.about-section ul li {
  margin-bottom: 10px;   /* keeps spacing between items */
}

.about-section {
  background: #e6e2d3;
  padding: 80px 60px;
}

.about-container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
}

.about-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 1.2s ease-out forwards;
}

.about-left h1 {
  font-size: 24px;
  color: #7e4a35;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: bold;
}

.about-left p {
  font-size: 18px;
  margin-bottom: 15px;
}

.about-left ul {
  list-style-position: inside;
}

.about-left li {
  margin-bottom: 8px;
}

.almond-image {
  flex: 1;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.almond-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/* -------------------- Footer -------------------- */
.footer {
  background: #c4b7a6;
  padding: 3rem 2rem 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-logo img {
  height: 80px;
  margin-bottom: 1rem;
}

.footer-logo p {
  color: hsl(25, 47%, 25%);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-column h2 {
  color: hsl(25, 47%, 15%);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-column a {
  color: hsl(25, 47%, 25%);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: hsl(25, 47%, 35%);
}

.footer-column i {
  color: hsl(25, 47%, 35%);
  width: 16px;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: hsl(25, 47%, 88%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid hsl(25, 47%, 70%);
  padding-top: 1.5rem;
}

.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: hsl(25, 47%, 25%);
  font-size: 0.875rem;
}


/* -------------------- WhatsApp Floating Button -------------------- */
.whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 20px;
  left: 20px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: transform 0.3s ease;
}

.whatsapp-float i {
  line-height: 55px;
}

.whatsapp-float:hover {
  background: #1ebe57;
  transform: scale(1.1);
}

/* ==============================
   Mobile Fix for Navbar Logo
   ============================== */
@media (max-width: 991px) {
  /* Keep logo centered inside U-shape */
  .navbar-brand {
    position: absolute;
    left: 50%;
    top: 20px;                  /* fix logo from top */
    transform: translateX(-50%);
    z-index: 20;
  }

  .navbar-brand img {
    height: 55px;               /* smaller for mobile */
    top: 0;
  }

  /* Adjust U-shape for mobile */
  .navbar-custom::after {
    top: 15px;                  /* place U-shape below logo */
    width: 180px;
    height: 90px;
    bottom: auto;               /* override desktop bottom positioning */
  }

  /* Push menu down so it opens below logo + U-shape */
  .navbar-collapse {
    margin-top: 120px;          /* ensures menu doesn’t overlap logo */
    text-align: center;
  }
}

/* ==============================
   Mobile Responsive Styles
   ============================== */
@media (max-width: 768px) {
  /* About Section stacks instead of side-by-side */
  .about-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .about-left {
    text-align: center;
    align-items: center;
  }

  .almond-image img {
    max-width: 90%;
    height: auto;
  }

  /* Footer becomes 2 columns */
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .footer-column h2 {
    font-size: 1.25rem;
  }

  .footer-logo img {
    height: 60px;
  }
}

@media (max-width: 576px) {
  /* About section padding reduced */
  .about-section {
    padding: 50px 20px;
  }

  .about-left h1 {
    font-size: 20px;
  }

  .about-left p {
    font-size: 16px;
  }

  /* Footer becomes single column */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  /* Navbar adjustments */
  .navbar-brand {
    top: 10px;
  }

  .navbar-brand img {
    height: 45px; /* smaller logo */
  }

  .navbar-custom::after {
    top: 60px;
    width: 150px;
    height: 70px;
  }

  .navbar-collapse {
    margin-top: 140px;
  }
}

/* ==============================
   Mobile Logo Always on Top
   ============================== */
@media (max-width: 576px) {
  /* Keep logo pinned to top center */
  .navbar-brand {
    position: fixed;
    top: 10px;                  /* distance from very top */
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;               /* keep above everything */
  }

  .navbar-brand img {
    height: 50px;               /* slightly larger for clarity */
  }

  /* Adjust U-shape so it sits below the logo */
  .navbar-custom::after {
    top: 4px;                  /* pushed below logo */
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 70px;
  }

  /* Push menu down below logo + U-shape */
  .navbar-collapse {
    margin-top: 160px;          /* ensures dropdown doesn’t overlap logo */
    text-align: center;
  }
}
