/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Baby Olive Brand Colors */
    --olive-green: #5A6B47;      
    --dark-green: #2C3E2C;        
    --coral: #E88B6E;             
    --light-coral: #F0A88E;       
    --cream: #FBF8F1;             
    --white: #FFFFFF;
    
    /* Backgrounds */
    --bg-dark: #1F2A1A;           
    --bg-medium: #2C3E2C;         
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-dark);
    color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== FLOATING BEANS BACKGROUND ===== */
.beans-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(232, 139, 110, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 85% 70%, rgba(90, 107, 71, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(232, 139, 110, 0.05) 0%, transparent 70%);
}

/* Individual floating bean */
.bean {
    position: absolute;
    will-change: transform, opacity;
    user-select: none;
    pointer-events: none;
    filter: drop-shadow(0 4px 12px rgba(232, 139, 110, 0.3));
    text-shadow: 0 0 20px rgba(232, 139, 110, 0.4);
}


.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: 
        linear-gradient(135deg, rgba(31, 42, 26, 0.93), rgba(44, 62, 44, 0.95)),
        url('https://images.unsplash.com/photo-1447933601403-0c6688de566e?w=1920') center/cover;
    overflow: hidden;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.5) 100%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(232, 139, 110, 0.1) 0%, transparent 8%),
        radial-gradient(circle at 70% 60%, rgba(90, 107, 71, 0.15) 0%, transparent 10%),
        radial-gradient(circle at 40% 80%, rgba(232, 139, 110, 0.08) 0%, transparent 6%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2; /* Content upar rahe */
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    width: 100%;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}


.logo { margin-bottom: 30px; }

.brand-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin: 0 auto 20px;
    display: block;
    filter: drop-shadow(0 6px 25px rgba(232, 139, 110, 0.35));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.brand-name {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(3rem, 9vw, 6rem);
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 15px;
    text-shadow: 0 4px 30px rgba(232, 139, 110, 0.4);
    line-height: 1;
}

.brand-tag {
    font-size: 0.85rem;
    letter-spacing: 0.4em;
    color: var(--coral);
    font-weight: 500;
    text-transform: uppercase;
}

/* Coming Soon */
.coming-soon {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    color: var(--coral);
    margin: 30px 0 20px;
    font-weight: 400;
    text-shadow: 0 2px 20px rgba(232, 139, 110, 0.5);
}

.tagline {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: var(--cream);
    opacity: 0.85;
    max-width: 550px;
    margin: 0 auto 45px;
    font-weight: 300;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: clamp(10px, 3vw, 25px);
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.count-box {
    background: rgba(251, 248, 241, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(232, 139, 110, 0.3);
    border-radius: 16px;
    padding: 20px 15px;
    min-width: 85px;
    transition: all 0.3s ease;
}

.count-box:hover {
    transform: translateY(-5px);
    border-color: var(--coral);
    box-shadow: 0 10px 30px rgba(232, 139, 110, 0.25);
}

.count-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--coral);
    line-height: 1;
    margin-bottom: 6px;
}

.count-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream);
    opacity: 0.7;
}

/* Notify Form */
.notify-form {
    display: flex;
    max-width: 480px;
    margin: 0 auto 15px;
    background: rgba(251, 248, 241, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(232, 139, 110, 0.4);
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.notify-form:focus-within {
    border-color: var(--coral);
    box-shadow: 0 0 30px rgba(232, 139, 110, 0.3);
}

.notify-form input {
    flex: 1;
    padding: 16px 25px;
    background: transparent;
    border: none;
    outline: none;
    color: var(--cream);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
}

.notify-form input::placeholder {
    color: rgba(251, 248, 241, 0.5);
}

.notify-form button {
    padding: 16px 30px;
    background: linear-gradient(135deg, var(--coral), var(--light-coral));
    border: none;
    color: var(--bg-dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.notify-form button:hover {
    background: linear-gradient(135deg, var(--light-coral), var(--coral));
    transform: scale(1.02);
}

.form-msg {
    font-size: 0.9rem;
    min-height: 22px;
    color: var(--coral);
    margin-top: 10px;
}

/* ===== SECTIONS ===== */
.coming-section,
.flavour-section {
    padding: 100px 20px;
    position: relative;
    z-index: 1;
}

.coming-section {
    background: linear-gradient(180deg, var(--bg-dark), var(--bg-medium));
}

.flavour-section {
    background: var(--bg-medium);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    color: var(--cream);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--coral);
    margin: 20px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--coral);
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 60px;
    opacity: 0.85;
}

/* ===== FEATURE GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(251, 248, 241, 0.04);
    border: 1px solid rgba(232, 139, 110, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--coral), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.feature-card:hover::before {
    transform: translateX(100%);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--coral);
    background: rgba(251, 248, 241, 0.07);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* ⭐ FEATURE ICON (Font Awesome) */
.feature-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(232, 139, 110, 0.15), rgba(232, 139, 110, 0.04));
    border: 1px solid rgba(232, 139, 110, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px dashed rgba(232, 139, 110, 0.25);
    opacity: 0;
    transition: all 0.4s ease;
}

.feature-icon i {
    font-size: 2.2rem;
    color: var(--coral);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(232, 139, 110, 0.3), rgba(232, 139, 110, 0.1));
    transform: scale(1.08) rotate(-5deg);
    box-shadow: 0 12px 35px rgba(232, 139, 110, 0.35);
    border-color: var(--coral);
}

.feature-card:hover .feature-icon::after {
    opacity: 1;
    inset: -10px;
}

.feature-card:hover .feature-icon i {
    color: var(--light-coral);
    transform: scale(1.1);
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--coral);
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    color: var(--cream);
    opacity: 0.75;
    font-size: 0.9rem;
    line-height: 1.8;
}

/* ===== FLAVOUR GRID ===== */
.flavour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.flavour-card {
    background: rgba(251, 248, 241, 0.05);
    border: 1px solid rgba(232, 139, 110, 0.2);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.35s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.flavour-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--coral);
    transition: width 0.4s ease;
    border-radius: 3px 3px 0 0;
}

.flavour-card:hover::after {
    width: 60%;
}

.flavour-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: var(--coral);
    background: rgba(251, 248, 241, 0.1);
    box-shadow: 0 15px 40px rgba(232, 139, 110, 0.2);
}

/* ⭐ FLAVOUR ICON (Font Awesome) */
.flavour-emoji {
    width: 68px;
    height: 68px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(232, 139, 110, 0.12), rgba(232, 139, 110, 0.03));
    border: 1px solid rgba(232, 139, 110, 0.25);
    transition: all 0.35s ease;
}

.flavour-emoji i {
    font-size: 1.6rem;
    color: var(--coral);
    transition: all 0.35s ease;
}

.flavour-card:hover .flavour-emoji {
    background: linear-gradient(135deg, rgba(232, 139, 110, 0.28), rgba(232, 139, 110, 0.1));
    transform: scale(1.15) rotate(-8deg);
    box-shadow: 0 10px 30px rgba(232, 139, 110, 0.3);
    border-color: var(--coral);
}

.flavour-card:hover .flavour-emoji i {
    color: var(--light-coral);
    transform: scale(1.15);
}

.flavour-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--cream);
    margin-bottom: 10px;
    font-weight: 600;
}

.tag {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral);
    background: rgba(232, 139, 110, 0.12);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(232, 139, 110, 0.3);
    transition: all 0.3s ease;
}

.flavour-card:hover .tag {
    background: rgba(232, 139, 110, 0.25);
    border-color: var(--coral);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-dark);
    padding: 60px 20px 30px;
    border-top: 1px solid rgba(232, 139, 110, 0.15);
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    color: var(--coral);
    margin-bottom: 8px;
    font-weight: 700;
}

.footer-brand p {
    color: var(--cream);
    opacity: 0.6;
    font-size: 0.9rem;
}

/* ⭐ FOOTER SOCIAL (Font Awesome) */
.footer-social {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px;
    color: var(--cream);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
    background: rgba(232, 139, 110, 0.08);
    border: 1px solid rgba(232, 139, 110, 0.2);
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(232, 139, 110, 0.15), rgba(232, 139, 110, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-social a i {
    font-size: 1rem;
    color: var(--coral);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.footer-social a span {
    position: relative;
    z-index: 1;
}

.footer-social a:hover {
    background: rgba(232, 139, 110, 0.2);
    border-color: var(--coral);
    color: var(--coral);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(232, 139, 110, 0.3);
}

.footer-social a:hover::before {
    opacity: 1;
}

.footer-social a:hover i {
    color: var(--light-coral);
    transform: scale(1.2) rotate(-8deg);
}

.copyright {
    text-align: center;
    color: var(--cream);
    opacity: 0.4;
    font-size: 0.85rem;
    padding-top: 30px;
    border-top: 1px solid rgba(232, 139, 110, 0.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero { padding: 30px 15px; }

    .brand-logo {
        width: 110px;
        height: 110px;
    }

    .countdown { gap: 8px; }

    .count-box {
        padding: 15px 10px;
        min-width: 70px;
    }

    .notify-form {
        flex-direction: column;
        border-radius: 16px;
    }

    .notify-form input {
        text-align: center;
    }

    .notify-form button {
        width: 100%;
    }

    .coming-section,
    .flavour-section {
        padding: 70px 15px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    /* Footer social - mobile pe icons only */
    .footer-social {
        justify-content: center;
        gap: 12px;
    }

    .footer-social a {
        padding: 14px;
        border-radius: 50%;
        width: 48px;
        height: 48px;
        justify-content: center;
    }

    .footer-social a span {
        display: none;
    }

    .footer-social a i {
        font-size: 1.15rem;
    }

    /* Feature icons - smaller on mobile */
    .feature-icon {
        width: 75px;
        height: 75px;
    }

    .feature-icon i {
        font-size: 1.9rem;
    }

    .flavour-emoji {
        width: 60px;
        height: 60px;
    }

    .flavour-emoji i {
        font-size: 1.4rem;
    }
}

@media (max-width: 400px) {
    .count-box {
        min-width: 60px;
        padding: 12px 8px;
    }

    .count-num { font-size: 1.5rem; }
    .count-label { font-size: 0.6rem; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb {
    background: var(--coral);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--light-coral); }