/* ===== Base Styles ===== */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* ===== Header ===== */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: rgb(234, 205, 171);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.2);

}



.logo img {
    height: 50px;
    width: auto;
}

.logo span {
    font-size: 22px;
    font-weight: bold;
    margin-left: 10px;
}

.navbar a {
    margin: 0 15px;
    color: black;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

.navbar a:hover {
    color: #ffd700;
}

.header-cta .btn-order {
    background: white;
    color: #ff5e62;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
}

.header-cta .btn-order:hover {
    background: #ffd700;
    color: white;
}

/* ===== Hero Section ===== */
.hero {
   
    background: url("https://img.freepik.com/premium-photo/fresh-fruit-salad-with-berries-melon-mint-leaf-garnish-generated-by-artificial-intelligence_992212-270710.jpg") no-repeat center center/cover;
    text-align: center;
    padding: 100px 20px;
    height: 350px;
    position: relative;
    color: #000;
    margin-top: 5px;
}

/* Overlay for better readability */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3); /* dark overlay for contrast */
    z-index: 1;
}

.hero h2, .hero p, .hero .btn {
    position: relative;
    z-index: 2; /* above overlay */
    display: inline-block;
    border-radius: 8px;
}

/* Heading */
.hero h2 {
    font-size: 4rem;
    font-weight: 700; /* bold */
    color: #fff; /* white for contrast */
    background-color: rgba(0, 0, 0, 0.6); /* semi-transparent dark */
    padding: 10px 15px;
    margin-bottom: 10px;
}

/* Paragraph */
.hero p {
    font-size: 3rem;
    font-weight: 600;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 8px 12px;
    margin-top: 5px;
}

/* Button */
.hero .btn {
    margin-top: 15px;
    padding: 10px 18px;
    font-size: 3rem;
    font-weight: 600;
    background-color: #28a745;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
}
.hero h2, .hero p {
    font-weight: 700; /* mota text */
    color: #28a745; /* green text */
    background-color: rgba(255,255,255,0.9); /* almost opaque white */
    padding: 10px 15px; /* thoda spacing */
    border-radius: 8px; /* rounded corners */
    display: inline-block;
    text-align: center;
}


/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
    .hero {
        padding: 60px 15px;
        height: auto;
    }
    .hero h2 {
        font-size: 1.8rem;
        padding: 8px 12px;
    }
    .hero p {
        font-size: 1rem;
        padding: 6px 10px;
    }
    .hero .btn {
        padding: 8px 15px;
        font-size: 0.95rem;
    }
}


/* ===== Healthy Awareness ===== */
.healthy-awareness {
    background: linear-gradient(135deg, #ffecd2, #fcb69f);
    padding: 50px 20px;
    text-align: center;
    border-radius: 18px;
    margin: 50px auto;
    max-width: 1000px;
}

.healthy-awareness h2 {
    font-size: 28px;
    color: #065f46;
}

.healthy-awareness p {
    font-size: 16px;
    color: #1f2937;
    max-width: 700px;
    margin: 10px auto 20px auto;
    line-height: 1.5;
}

.fruits-animation {
    position: relative;
    height: 120px;
}

.fruits-animation .fruit {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    animation: floatFruit 4s ease-in-out infinite;
}

.fruits-animation .apple { background: radial-gradient(circle at 25% 20%, #ff8a80, #ff3b30); left: 10%; animation-delay: 0s; }
.fruits-animation .kiwi { background: radial-gradient(circle at 30% 30%, #b6f48c, #57a34a); left: 30%; animation-delay: 0.5s; }
.fruits-animation .berry { background: radial-gradient(circle at 30% 30%, #ffd6e0, #ff6b9a); left: 60%; animation-delay: 1s; }
.fruits-animation .grape { background: radial-gradient(circle at 30% 30%, #c6b3ff, #7b4dff); left: 80%; animation-delay: 1.5s; }

@keyframes floatFruit {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

/* ===== Fruit Facts ===== */
.fruit-facts {
    background: #fef3c7;
    padding: 50px 20px;
    text-align: center;
    border-radius: 18px;
    margin: 50px auto;
    max-width: 1000px;
}

.fruit-facts h2 {
    font-size: 26px;
    color: #b45309;
}

.facts-slider {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 40px;
    overflow: hidden;
    position: relative;
}

.fact {
    font-size: 18px;
    color: #78350f;
    height: 40px;
    line-height: 40px;
    opacity: 0;
    position: absolute;
    width: 100%;
    animation: slideFacts 25s linear infinite;
}

.fact:nth-child(1){animation-delay: 0s;}
.fact:nth-child(2){animation-delay: 5s;}
.fact:nth-child(3){animation-delay: 10s;}
.fact:nth-child(4){animation-delay: 15s;}
.fact:nth-child(5){animation-delay: 20s;}

@keyframes slideFacts {
    0% {opacity:0; transform: translateY(100%);}
    5% {opacity:1; transform: translateY(0);}
    20% {opacity:1; transform: translateY(0);}
    25% {opacity:0; transform: translateY(-100%);}
    100% {opacity:0; transform: translateY(-100%);}
}

/* ===== Products ===== */
.products {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
}

.product-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    width: 250px;
}

/* ===== WhatsApp Button ===== */
.whatsapp-share {
    position: fixed;
    right: 20px;
    bottom: 80px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.2s;
}

.whatsapp-share:hover { transform: scale(1.1); }
.whatsapp-share img { width: 50px; height: 50px; }

/* ===== Footer ===== */
.site-footer{
  background:#1f2937;
  color:#f9fafb;
  padding:40px 20px 20px;
}

.footer-container{
  display:flex;
  flex-wrap:wrap;
  gap:30px;
  justify-content:space-between;
  max-width:1200px;
  margin:0 auto;
}

.footer-about, .footer-links, .footer-social, .footer-newsletter{
  flex:1 1 220px;
  min-width:200px;
}

/* ===== Responsive ===== */
@media(max-width:768px){

  .hero h2 { font-size: 2rem; padding: 6px 12px; }
  .hero p { font-size: 1.2rem; padding: 4px 8px; }
  .hero .btn { padding: 10px 18px; font-size: 1rem; }

  .products { flex-direction: column; align-items: center; }
  .product-card { width: 90%; margin-bottom: 20px; }

  .healthy-awareness { padding: 30px 15px; }
  .healthy-awareness h2 { font-size: 22px; }
  .healthy-awareness p { font-size: 14px; }

  .fruit-facts { padding: 30px 15px; }
  .fruit-facts h2 { font-size: 20px; }
  .fact { font-size: 14px; height: 30px; line-height: 30px; }

  .fruits-animation { height: 80px; }
  .fruits-animation .fruit { width: 35px; height: 35px; }

  .whatsapp-share { width: 50px; height: 50px; }
  .whatsapp-share img { width: 40px; height: 40px; }

}
.best-sellers {
    text-align: center;
    margin: 50px 20px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url("https://i.pinimg.com/736x/11/b5/1c/11b51ce388de8aafeee3d981aefd2eea.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    padding: 20px 20px;
    border-radius: 10px;
}


.best-sellers h2 {
    font-size: 4rem;
    color: white;
    margin-bottom: 25px;
}

.product-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.product-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 15px;
    width: 250px;
    text-align: center;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 12px;
}

.product-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #065f46;
}

.product-card p {
    font-size: 0.95rem;
    color: #1f2937;
    margin-bottom: 10px;
}

.product-card .btn {
    background: #28a745;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    display: inline-block;
    transition: background 0.3s;
}

.product-card .btn:hover {
    background: #34d399;
}

/* Mobile */
@media(max-width: 768px){
    .product-list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .product-card {
        width: 90%;
    }
}

.total-visitors {
    text-align: center;
    margin: 20px auto;
    padding: 12px 20px;
    border-radius: 10px;
    max-width: 400px;
    background: #28a745;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

@media(max-width:768px){
    .total-visitors {
        max-width: 90%;
        padding: 10px 15px;
        font-size: 1.2rem;
    }
}








