/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 10%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-wrapper {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5a27;
}

.logo span { color: #8bc34a; }

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    margin-left: 2rem;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links li a:hover { color: #4caf50; }

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('https://images.unsplash.com/photo-1512621776951-a57141f2eefd?auto=format&fit=crop&w=1350&q=80'); /* Dummy healthy food image */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content h1 { font-size: 3.5rem; margin-bottom: 1rem; }
.badge { background: #4caf50; padding: 5px 15px; border-radius: 20px; font-size: 0.9rem; }

/* Sections */
.section { padding: 5rem 10%; }
.section-title { text-align: center; margin-bottom: 3rem; font-size: 2.5rem; color: #2d5a27; }
.bg-light { background: #f9f9f9; }

/* Cards & Grid */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card, .tier-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid #eee;
}

.card:hover, .tier-card:hover { transform: translateY(-10px); }

.highlight { background: #2d5a27; color: #fff; }
.price { font-size: 1.5rem; font-weight: bold; margin: 1rem 0; }
.offer { color: #4caf50; font-weight: bold; }

/* Tiers */
.tier-price { font-size: 2.5rem; font-weight: 700; color: #4caf50; margin: 1rem 0; }
.premium { border: 2px solid #4caf50; position: relative; }
.most-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #4caf50;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Buttons */
.btn-primary {
    background: #4caf50;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    display: inline-block;
    margin-top: 1rem;
}

.btn-secondary {
    background: #fff;
    color: #2d5a27;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 1rem;
}

/* Footer */
footer {
    background: #2d5a27;
    color: #fff;
    padding: 3rem 10%;
    text-align: center;
}

ul { list-style: none; margin-top: 1rem; }
li { margin-bottom: 0.5rem; }

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-content h1 { font-size: 2.5rem; }
}

/* logo added extra */
/* Container to align Logo and Text */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

/* The Circular Frame */
.logo-circle {
    width: 55px; /* Adjust size to fit your nav height */
    height: 55px;
    border-radius: 50%; /* Makes it a circle */
    background: #ffffff; /* Background if logo is transparent */
    border: 2px solid #4caf50; /* Green border matching your theme */
    overflow: hidden; /* Clips the image into the circle */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

/* Ensure the Image fills the circle beautifully */
.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Prevents stretching; crops to fit */
}

/* Brand Text Styling */
.logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #2d5a27;
    letter-spacing: 0.5px;
}

.logo-text span {
    color: #8bc34a;
}

/* Interactive Hover Effect */
.logo-wrapper:hover .logo-circle {
    transform: scale(1.08) rotate(5deg);
    border-color: #8bc34a;
}

/* luxury sheet */
:root {
    --gold: #c5a059;
    --dark-green: #1a3c1a;
    --off-white: #f9fbf9;
}

body {
    background-color: var(--off-white);
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.luxury-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--dark-green);
}

.gold-heading {
    text-align: center;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    margin-bottom: 30px;
}

/* Luxury Grid */
.luxury-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border-bottom: 3px solid var(--gold);
}

.benefit-card:hover {
    transform: translateY(-10px);
}

/* Pricing Card */
.pricing-card {
    background: linear-gradient(135deg, #1a3c1a 0%, #2d5a27 100%);
    color: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    margin: 60px 0;
}

.btn-luxury {
    display: inline-block;
    background: var(--gold);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: letter-spacing 0.3s;
}

.btn-luxury:hover {
    letter-spacing: 1px;
    background: #b38f4d;
}

.exclusive-tag {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--gold);
}
/* alignment issue codes  */

nav {
  display: flex;
  justify-content: space-between; /* Puts logo on left, links on right */
  align-items: center;
  flex-wrap: wrap; /* Prevents items from squishing too much */
  padding: 10px 5%;
}

.nav-links {
  display: flex;
  gap: 20px;
}

/* Mobile specific fix */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column; /* Stacks links vertically on phones */
    width: 100%;
    text-align: center;
  }
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile Menu Logic */
.menu-toggle {
    display: none; /* Hide the actual checkbox */
}

.hamburger {
    display: none; /* Hidden on Desktop */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: 0.3s;
}

/* Mobile Responsiveness (Phones) */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 5%; /* Less padding on sides */
    }

    .hamburger {
        display: flex; /* Show hamburger on mobile */
    }

    .nav-links {
        position: fixed;
        right: -100%; /* Start hidden off-screen to the right */
        top: 0;
        height: 100vh;
        width: 70%; /* Sidebar width */
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: 0.4s ease-in-out;
        gap: 30px;
    }

    .nav-links li a {
        margin-left: 0;
        font-size: 1.2rem;
    }

    /* When checkbox is checked, slide the menu in */
    .menu-toggle:checked ~ .nav-links {
        right: 0;
    }

    /* Hamburger animation to 'X' when menu is open */
    .menu-toggle:checked ~ .hamburger span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .menu-toggle:checked ~ .hamburger span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle:checked ~ .hamburger span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
}
/* Fix the Layout Alignment */
.tier-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* This ensures cards stack on top of each other on mobile */
    gap: 20px;
    padding: 20px;
}

.tier-card {
    width: 100%; /* Takes full width on mobile */
    max-width: 350px; /* But stays small on desktop */
}
/* extra */
/* --- Mobile Sidebar Fixes --- */

/* 1. Hide Hamburger on Desktop */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #2d5a27; /* Your primary green */
    border-radius: 3px;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 5%;
    }

    .hamburger {
        display: flex; /* Show button on mobile */
    }

    .nav-links {
        position: fixed;
        right: -100%; /* Hidden by default */
        top: 0;
        height: 100vh;
        width: 250px; /* Width of your sidebar */
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: 0.4s ease;
        gap: 25px;
        z-index: 1000;
    }

    /* Class to slide menu in */
    .nav-links.active {
        right: 0;
    }

    .nav-links li a {
        margin-left: 0;
        font-size: 1.1rem;
    }

    /* Animate Hamburger to 'X' */
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* bmi section  */
/* BMI Calculator Styling */
.bmi-container {
    max-width: 600px;
    margin: 0 auto;
}

.bmi-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    border: 2px solid #f1f1f1;
}

.input-group {
    text-align: left;
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d5a27;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    outline: none;
}

.input-group input:focus {
    border-color: #4caf50;
}

.bmi-result-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 12px;
    border-left: 5px solid #4caf50;
    animation: fadeIn 0.5s ease;
}

.bmi-status {
    font-weight: 700;
    font-size: 1.2rem;
    margin: 10px 0;
    color: #2d5a27;
}

.bmi-advice {
    font-style: italic;
    color: #555;
    line-height: 1.6;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Color for Overweight/Obese status */
.text-danger {
    color: #d9534f !important; /* A clear, professional red */
}

/* marketing card */
/* VIP Card Styling */
.offer-container {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    background: #fdfdfd;
}

.vip-card {
    max-width: 500px;
    width: 100%;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border: 3px solid #4caf50;
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(76, 175, 80, 0.2);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.exclusive-badge {
    background: #ff5722;
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

.vip-card h2 {
    color: #2d5a27;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.counter-box {
    margin: 25px 0;
    background: #e8f5e9;
    padding: 15px;
    border-radius: 15px;
}

.slots-text {
    font-weight: bold;
    color: #2d5a27;
    display: block;
    margin-bottom: 8px;
}

.progress-bar {
    height: 10px;
    background: #c8e6c9;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    width: 42%; /* Adjust based on slots left */
    height: 100%;
    background: #4caf50;
}

.claim-btn {
    display: block;
    background: #4caf50;
    color: white;
    text-decoration: none;
    padding: 18px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
    transition: all 0.3s ease;
}

.claim-btn:hover {
    background: #2d5a27;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.6);
}

.sub-text {
    font-size: 0.8rem;
    color: #777;
    margin-top: 10px;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

#confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .vip-card {
        padding: 30px 20px;
    }
    .vip-card h2 {
        font-size: 1.5rem;
    }
}
/* offer section */
/* Scrolling Ticker */
.loyalty-ticker {
    background: #2d5a27;
    color: white;
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 3px solid #8bc34a;
}

.ticker-content {
    display: inline-block;
    animation: scroll-left 20s linear infinite;
}

.ticker-item {
    display: inline-block;
    padding: 0 40px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Loyalty Card Styling */
.loyalty-card-section {
    padding: 30px 10% 10px;
    display: flex;
    justify-content: center;
}

.loyalty-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    padding: 25px;
    max-width: 450px;
    width: 100%;
    border: 2px dashed #4caf50;
    text-align: center;
}

.loyalty-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.ig-icon { width: 25px; }

.stamps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.stamp {
    width: 60px;
    height: 60px;
    border: 2px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-weight: bold;
    color: #ccc;
    transition: 0.3s;
}

.stamp.active {
    background: #4caf50;
    color: white;
    border-color: #2d5a27;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

.stamp.free {
    background: #ffeb3b;
    color: #2d5a27;
    border: 2px solid #2d5a27;
    font-size: 0.7rem;
}

.loyalty-instruction {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.4;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

/* Mobile View Adjustments */
@media (max-width: 480px) {
    .stamps-grid { gap: 10px; }
    .stamp { width: 50px; height: 50px; }
}

/* explore more options section */
.explore-offers-wrapper {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.explore-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #2d5a27; /* Your Dark Green */
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.explore-link:hover {
    color: #4caf50; /* Your Brand Green */
}

.arrow-icon {
    margin-left: 8px;
    font-size: 1.2rem;
    color: #4caf50;
    transition: transform 0.3s ease;
}

.explore-link:hover .arrow-icon {
    transform: translateX(8px); /* Moves the arrow to the right */
}

/* For Mobile: Ensure it's easy to tap */
@media (max-width: 600px) {
    .explore-link {
        font-size: 0.95rem;
        padding: 5px 0;
    }
}
/* footer  */
#contact {
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-fssai {
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.footer-fssai img {
    height: 40px; /* Keeps the logo neat */
    width: auto;
    background: white; /* Helpful if your footer background is dark */
    padding: 5px;
    border-radius: 4px;
}

.footer-fssai p {
    font-size: 0.9rem;
    margin: 0;
}