/* Reset */
* { margin:0; padding:0; box-sizing:border-box; }
body { 
  font-family: "Bahnschrift", Arial, sans-serif; 
  font-size:18px; 
  line-height:1.6; 
  background:#e6e2d3;   /* unified background */
  color:#000; 
}

/* Almond Section */

.almond-section {
  padding-top: 15px;  /* push content down */
}

.almond-section { 
  display:grid; 
  grid-template-columns:1fr 1fr; 
  min-height:70vh; 
  background:#e6e2d3;   
}
.almond-text { padding:4rem; display:flex; flex-direction:column; justify-content:center; }
.almond-text h1 { font-size:32px; color:#7e4a35; margin-bottom:1rem; }
.almond-text h2 { font-size:22px; color:#7e4a35; margin-top:1.5rem; margin-bottom:.75rem; }
.almond-text p, .almond-text ul { font-size:18px; color:#000; line-height:1.6; }
.back-link { display:inline-block; margin-bottom:12px; color:#333; text-decoration:none; }

/* Right video */
.about-right { display:flex; align-items:center; justify-content:center; padding:2rem; }
.about-right video { width:100%; max-height:480px; border-radius:6px; object-fit:cover; }

/* Almond Health Section */
.health-section {
  padding: 4rem 2rem;
  text-align: center;
  background: #e6e2d3;
}
.section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #7e4a35;
}
.health-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: auto;
}

/* Animation Keyframes */
@keyframes fadeScaleUp {
  0% { opacity: 0; transform: translateY(40px) scale(0.9); }
  60% { opacity: 1; transform: translateY(-5px) scale(1.02); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.project-text ul {
  list-style: none;     /* removes default bullets */
  padding-left: 0;      /* removes indentation */
  margin: 0;            /* optional: reset margin */
}

.project-text ul li {
  margin-bottom: 8px;   /* space between items */
}

/* Cards */
.health-card {
  padding: 1.5rem;
  border-radius: 12px;
  background: #c4b7a6;    /* contrast against beige */
  border: 1px solid #c4b7a6;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(40px) scale(0.9);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fade-in.show { animation: fadeScaleUp 0.9s ease forwards; }

/* Icon + Title */
.health-card .icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #7e4a35;
}
.health-card h3 {
  color: #7e4a35;
  margin-bottom: 0.5rem;
}

/* Hover Effect */
.health-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

/* Stagger Animation */
.health-card:nth-child(1) { animation-delay: 0.1s; }
.health-card:nth-child(2) { animation-delay: 0.2s; }
.health-card:nth-child(3) { animation-delay: 0.3s; }
.health-card:nth-child(4) { animation-delay: 0.4s; }
.health-card:nth-child(5) { animation-delay: 0.5s; }
.health-card:nth-child(6) { animation-delay: 0.6s; }
.health-card:nth-child(7) { animation-delay: 0.7s; }
.health-card:nth-child(8) { animation-delay: 0.8s; }

/* Project Section */
.project-section { padding: 3rem 2rem; background:#e6e2d3; }
.project-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: auto;
  align-items: center;
}
.project-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}
.project-text h2, .project-text h3 { color: #7e4a35; margin-bottom: 1rem; }
.project-text ul { margin-top: 0.8rem; }

/* Almond Range Section */
.almond-range { 
  padding: 60px 20px; 
  background: #e6e2d3; 
  text-align: center; 
}
.almond-range .text-box { max-width: 700px; margin: auto; }
.almond-range h1 { font-size: 22px; color: #7e4a35; text-transform: uppercase; margin-bottom: 8px; }
.almond-range .btn {
  background: #7e4a35; color: #e6e2d3;
  padding: 12px 28px; border-radius: 6px;
  text-decoration: none; display: block;
  margin: 20px auto 0; width: fit-content;
  transition: background 0.3s ease;
  font-size: 16px; font-weight: 500;
}
.almond-range .btn:hover { background: #5c3426; }

/* Almond Specs List */
.almond-specs-wrapper { text-align: center; margin: 20px 0; }
.almond-specs {
  list-style: none; padding: 0; margin: 0 auto;
  display: inline-block; text-align: left;
}
.almond-specs li {
  display: flex; align-items: flex-start;
  gap: 10px; margin: 8px 0;
  font-size: 16px; color: #333;
}
.almond-specs .dot { width: 24px; text-align: center; flex-shrink: 0; }

/* Footer */
.footer { background: #c4b7a6; padding: 3rem 2rem 1rem; }
.footer-content {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem; margin-bottom: 2rem;
}
.footer-logo img { height: 64px; margin-bottom: 1rem; }
.footer-logo p { color: hsl(25, 47%, 25%); font-size: 0.875rem; line-height: 1.6; }
.footer-column h4 { color: hsl(25, 47%, 15%); font-size: 1.125rem; 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;
  transition: color 0.3s ease;
  font-size: 1rem; font-weight: 500;
}
.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;
  color: hsl(25, 47%, 15%);
  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-color: #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-color: #1ebe57; transform: scale(1.1); }

/* Ensure Tidio/chatbot stays on the right */
#tidio-chat, .tidio-chat, [id^="tidio-chat-"] {
  right: 20px !important; left: auto !important; z-index: 999;
}

/* -------------------- RESPONSIVE FIXES -------------------- */
@media (max-width: 992px) {
  .almond-section { grid-template-columns: 1fr; text-align: center; }
  .almond-text { padding: 2rem; }
  .about-right { padding: 1rem; }
  .project-container { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 500px) {
  .footer-content { grid-template-columns: 1fr; text-align: center; }
  .footer-bottom-content { flex-direction: column; gap: 1rem; }
  .health-grid { grid-template-columns: 1fr; }
  .almond-text h1 { font-size: 26px; }
  .almond-text h2 { font-size: 20px; }
}

/* ==============================
   Mobile Fix for Navbar Logo
   ============================== */
@media (max-width: 991px) {
  .navbar-brand {
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    z-index: 20;
  }
  .navbar-brand img { height: 55px; top: 0; }
  .navbar-custom::after {
    top: 15px;
    width: 180px;
    height: 90px;
    bottom: auto;
  }
  .navbar-collapse {
    margin-top: 120px;
    text-align: center;
  }
}
