/* CSS Variables matching the original design's palette */
:root {
    --foodily-accent: #FFD700; 
    --dark: #1A1A24;          /* Dark footer/text background */
    --light: #F9F8FC;         /* Soft light background */
    --white: #FFFFFF;
    --text-muted: #666677;
    --border: #E2E0EB;
    --success: #28A745;

    /* Vendor Specific Colors (Professional Theme) */
    --foodily-vendorPrimary : #BD026F; 
    --foodily-vendorAccent : #10B981; 
    --foodily-vendorDark: #111827;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Hind Siliguri', 'Inter', sans-serif;
    background-color: var(--light);
    color: var(--foodily-vendorDark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Navbar Section --- */
.my-custom-navbar {
    position: sticky;
    top: 20px;
    width: 85%;
    max-width: 1200px;
    margin: 20px auto !important;
    background: var(--foodily-vendorPrimary) !important;
    z-index: 99999;
    padding: 12px 30px !important;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.45);
    transition: all .6s ease;
}

.my-custom-navbar:hover {
    box-shadow: 0 0 30px #ffffff;
}

/* লোগো সাইজিং */
.logo-one { height: 40px; }
.logo-two { height: 28px; }

/* মেইন ন্যাভ লিংক ডিজাইন */
.my-custom-navbar .nav-link.custom-nav-item {
    color: #F5EFFF !important;
    font-size: 14px;
    position: relative;
    padding-bottom: 8px !important; 
    transition: all 0.3s ease;
}

.my-custom-navbar .nav-link.custom-nav-item:hover {
    color: #fdc77f !important; 
    transform: translateY(-2px); 
}

/* HTML-এর ভেতরের পুরনো চামচ আইকন হাইড */
.spoon-icon {
    display: none !important; 
}

/* গোল্ডেন চামচ SVG pseudo-element */
.my-custom-navbar .nav-link.custom-nav-item::after {
    content: "";
    position: absolute;
    bottom: -6px; 
    left: 50%;
    width: 16px;  
    height: 16px; 
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fdc77f' viewBox='0 0 16 16'%3E%3Cpath d='M13 1c-.777 0-1.408.62-1.935 1.233-.503.585-.929 1.242-1.282 1.833L4.312 9.474a3 3 0 0 0-.814 1.48L3.02 13.08a1 1 0 0 0 1.18 1.18l2.125-.477a3 3 0 0 0 1.48-.814l5.408-5.47c.592-.354 1.248-.78 1.833-1.282C14.659 5.673 15.25 4.977 15.25 4c0-1.657-1.343-3-3-3M4.693 11.292a2 2 0 0 1 .542-.987l5.41-5.47-.41-.412-5.41 5.47a2 2 0 0 1-.987.542l-1.144.257z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateX(-50%) scale(0) rotate(45deg);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28); 
}

.my-custom-navbar .nav-link.custom-nav-item:hover::after {
    transform: translateX(-50%) scale(1) rotate(45deg); 
    opacity: 1;
}

/* ডাউনলোড বাটন ইফেক্ট */
.download-nav-btn {
    background-color: var(--foodily-accent) !important;
    color: var(--foodily-vendorDark) !important;
    transition: all 0.3s ease;
}
.download-nav-btn:hover {
    background-color: #e0a800 !important;
    transform: translateY(-2px);
}

/* --- Hero Section --- */
.hero-vendor {
    background: linear-gradient(135deg, var(--foodily-vendorPrimary) 0%, #85014e 100%);
    color: var(--white);
    padding: 10px 0 110px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    padding-top: 60px;
}

.hero-vendor h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-vendor h1 span {
    color: var(--foodily-accent);
}

.hero-vendor p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 35px auto;
    color: rgba(255, 255, 255, 0.9);
}

/* --- Location Section --- */
.location-section {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(90, 32, 162, 0.08);
    max-width: 800px;
    margin: -40px auto 60px auto;
    position: relative;
    z-index: 10;
}

.location-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--light);
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.location-box i {
    color: var(--foodily-vendorPrimary);
    font-size: 20px;
}

.location-box select {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    color: var(--foodily-vendorDark);
    cursor: pointer;
}

/* --- Section Header Helper --- */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 32px;
    color: var(--foodily-vendorPrimary); /* ভ্যারিয়েবল ফিক্স করা হয়েছে */
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Opportunity Section --- */
.opportunity-section {
    padding: 60px 0;
    background-color: var(--white);
}

.opp-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.opp-text h3 {
    font-size: 28px;
    color: var(--foodily-vendorDark);
    margin-bottom: 20px;
}

.opp-text p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 16px;
}

.opp-features {
    list-style: none;
}

.opp-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 500;
}

.opp-features li i {
    color: var(--success);
    font-size: 18px;
}

.opp-visual img{
    background: linear-gradient(135deg, rgba(189, 2, 111, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    border-radius: 20px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--foodily-vendorPrimary);
}



/* --- Vendor Work --- */
.work-section {
    padding: 80px 0;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.work-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
    transition: transform 0.6s, box-shadow 0.3s;
    border: 1px solid rgba(189, 2, 111, 0.05);
}

.work-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(201, 2, 118, 0.35);
}

.work-icon-wrap {
    width: 70px;
    height: 70px;
    background-color: rgba(189, 2, 111, 0.1);
    color: var(--foodily-vendorPrimary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 28px;
}

.work-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--foodily-vendorDark);
}

.work-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* --- Activation Steps --- */
.activation-section {
    padding: 80px 0;
    background-color: #F0EDF7;
}

.step-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--foodily-accent);
    color: var(--foodily-vendorDark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(255, 204, 0, 0.3);
}

.step-card h3 {
    margin-top: 10px;
    font-size: 18px;
    color: var(--foodily-vendorPrimary);
    margin-bottom: 10px;
}

.step-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* --- Form Section --- */
.form-section {
    padding: 80px 0;
    background-color: var(--white);
}

.form-wrapper {
    max-width: 750px;
    margin: 0 auto;
    background: var(--light);
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    border: 1px solid var(--border);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-weight: 600;
    font-size: 14px;
    color: var(--foodily-vendorDark);
}

.form-group input, .form-group select, .form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    outline: none;
    background-color: var(--white);
    transition: border-color 0.3s;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--foodily-vendorPrimary);
}

.btn-submit {
    background-color: var(--foodily-vendorPrimary);
    color: var(--white);
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #85014e;
}

/* --- Brand Story Section --- */
.brand-story-section {
    padding: 80px 0;
    background-color: var(--light); 
    text-align: center;
    border-top: 1px solid var(--border);
}

.brand-story-content {
    max-width: 900px;
    margin: 0 auto;
}

.brand-story-content h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--foodily-vendorPrimary); 
    margin-bottom: 25px;
    line-height: 1.4;
}

.brand-story-content p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    text-align: justify; 
    text-align-last: center; 
}

/* --- Responsive Design --- */




/* ============= Mobile Size Responsive (Pixel 7 = 412px) ================== */

@media (max-width: 412px) {
/* <!-- Hero & Intro Text Section (শুরুর ট্যাগ ঠিক করা হয়েছে) --> */
    .hero-vendor h1 {
        font-size: 32px;
    }



    /* <!-- Nav Section --> */
.my-custom-navbar {
        width: 95%;
        padding: 10px 15px !important;
}
    


    /* <!--  See Location Option --> */
    .location-box {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        align-items: center !important;
        box-sizing: border-box !important;
        overflow: hidden !important; /* অতিরিক্ত অংশ স্ক্রিনের বাইরে যাওয়া আটকাবে */
    }

    /* সিলেক্ট ড্রপডাউনটিকে বক্সের ভেতর আটকে রাখা এবং লেখাটি এক লাইনে রেখে ডট ডট (...) দেখানো */
    .location-box select {
        width: 100% !important;
        max-width: calc(100% - 30px) !important; /* আইকনের জন্য কিছুটা জায়গা ছেড়ে দেওয়া */
        font-size: 14px !important;
        
        /* টেক্সট স্ক্রিন পার হয়ে গেলে কেটে যেন ৩টি ডট (...) দেখায় */
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
        overflow: hidden !important;
    }



    /* <!--  Opportunity Section --> */
    .opp-container, .form-grid {
        grid-template-columns: 1fr;
    }

    .opportunity-section .opp-visual {
    position: relative; /* ভেতরের ইমেজ বা টেক্সটকে সেন্টারে নিয়ে আসবে */
        margin-bottom: 150px;
}

    .opportunity-section .opp-visual img {
    height: 120px;


    position: absolute;
    left: -8px;  
    top: -20px;
    

}



    /* <!--  Vendor Registration Form Option --> */
    .form-group.full-width {
        grid-column: span 1;
    }

}




/* ============= Mobile Size Responsive (iPhone 14 / 15 / 16 Pro Max = 430px) ================== */

@media (max-width: 430px) {


/* <!-- Hero & Intro Text Section (শুরুর ট্যাগ ঠিক করা হয়েছে) --> */
    .hero-vendor h1 {
        font-size: 32px;
    }



    /* <!-- Nav Section --> */
.my-custom-navbar {
        width: 95%;
        padding: 10px 15px !important;
}
    


    /* <!--  See Location Option --> */
    .location-box {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        align-items: center !important;
        box-sizing: border-box !important;
        overflow: hidden !important; /* অতিরিক্ত অংশ স্ক্রিনের বাইরে যাওয়া আটকাবে */
    }

    /* সিলেক্ট ড্রপডাউনটিকে বক্সের ভেতর আটকে রাখা এবং লেখাটি এক লাইনে রেখে ডট ডট (...) দেখানো */
    .location-box select {
        width: 100% !important;
        max-width: calc(100% - 30px) !important; /* আইকনের জন্য কিছুটা জায়গা ছেড়ে দেওয়া */
        font-size: 14px !important;
        
        /* টেক্সট স্ক্রিন পার হয়ে গেলে কেটে যেন ৩টি ডট (...) দেখায় */
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
        overflow: hidden !important;
    }



    /* <!--  Opportunity Section --> */
    .opp-container, .form-grid {
        grid-template-columns: 1fr;
    }

    .opportunity-section .opp-visual img{
        height: 215px;
    }



    /* <!--  Vendor Registration Form Option --> */
    .form-group.full-width {
        grid-column: span 1;
    }

}



/* ============= Mobile Size Responsive (Asus ROG Phone 8 = 448px) ================== */

@media (max-width: 448px) {


/* <!-- Hero & Intro Text Section (শুরুর ট্যাগ ঠিক করা হয়েছে) --> */
    .hero-vendor h1 {
        font-size: 32px;
    }



    /* <!-- Nav Section --> */
.my-custom-navbar {
        width: 95%;
        padding: 10px 15px !important;
}
    


    /* <!--  See Location Option --> */
    .location-box {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        align-items: center !important;
        box-sizing: border-box !important;
        overflow: hidden !important; /* অতিরিক্ত অংশ স্ক্রিনের বাইরে যাওয়া আটকাবে */
    }

    /* সিলেক্ট ড্রপডাউনটিকে বক্সের ভেতর আটকে রাখা এবং লেখাটি এক লাইনে রেখে ডট ডট (...) দেখানো */
    .location-box select {
        width: 100% !important;
        max-width: calc(100% - 30px) !important; /* আইকনের জন্য কিছুটা জায়গা ছেড়ে দেওয়া */
        font-size: 14px !important;
        
        /* টেক্সট স্ক্রিন পার হয়ে গেলে কেটে যেন ৩টি ডট (...) দেখায় */
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
        overflow: hidden !important;
    }



    /* <!--  Opportunity Section --> */
    .opp-container, .form-grid {
        grid-template-columns: 1fr;
    }

    .opportunity-section .opp-visual img{
        height: 225px;
    }



    /* <!--  Vendor Registration Form Option --> */
    .form-group.full-width {
        grid-column: span 1;
    }

}





/* ============= Mobile Size Responsive (iPhone SE (1st Gen) / iPhone 5 = 320px) ================== */

@media (max-width: 320px) {


/* <!-- Hero & Intro Text Section (শুরুর ট্যাগ ঠিক করা হয়েছে) --> */
    .hero-vendor h1 {
        font-size: 32px;
    }



    /* <!-- Nav Section --> */
.my-custom-navbar {
        width: 95%;
        padding: 10px 15px !important;
}
    


    /* <!--  See Location Option --> */
    .location-box {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        align-items: center !important;
        box-sizing: border-box !important;
        overflow: hidden !important; /* অতিরিক্ত অংশ স্ক্রিনের বাইরে যাওয়া আটকাবে */
    }

    /* সিলেক্ট ড্রপডাউনটিকে বক্সের ভেতর আটকে রাখা এবং লেখাটি এক লাইনে রেখে ডট ডট (...) দেখানো */
    .location-box select {
        width: 100% !important;
        max-width: calc(100% - 30px) !important; /* আইকনের জন্য কিছুটা জায়গা ছেড়ে দেওয়া */
        font-size: 14px !important;
        
        /* টেক্সট স্ক্রিন পার হয়ে গেলে কেটে যেন ৩টি ডট (...) দেখায় */
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
        overflow: hidden !important;
    }



    /* <!--  Opportunity Section --> */
    .opp-container, .form-grid {
        grid-template-columns: 1fr;
    }

    .opportunity-section .opp-visual{
        position: relative;
    }

    .opportunity-section .opp-visual img{
        height: 150px !important;
        position: absolute;
        left: 5px;
    }



    /* <!--  Vendor Registration Form Option --> */
    .form-group.full-width {
        grid-column: span 1;
    }

}




/* ============= Mobile Size Responsive (iPhone 12 / 13 / 14 / 15 (Regular & Pro) = 390px) ================== */

@media (max-width: 390px) {


/* <!-- Hero & Intro Text Section (শুরুর ট্যাগ ঠিক করা হয়েছে) --> */
    .hero-vendor h1 {
        font-size: 32px;
    }



    /* <!-- Nav Section --> */
.my-custom-navbar {
        width: 95%;
        padding: 10px 15px !important;
}
    


    /* <!--  See Location Option --> */
    .location-box {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        align-items: center !important;
        box-sizing: border-box !important;
        overflow: hidden !important; /* অতিরিক্ত অংশ স্ক্রিনের বাইরে যাওয়া আটকাবে */
    }

    /* সিলেক্ট ড্রপডাউনটিকে বক্সের ভেতর আটকে রাখা এবং লেখাটি এক লাইনে রেখে ডট ডট (...) দেখানো */
    .location-box select {
        width: 100% !important;
        max-width: calc(100% - 30px) !important; /* আইকনের জন্য কিছুটা জায়গা ছেড়ে দেওয়া */
        font-size: 14px !important;
        
        /* টেক্সট স্ক্রিন পার হয়ে গেলে কেটে যেন ৩টি ডট (...) দেখায় */
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
        overflow: hidden !important;
    }



    /* <!--  Opportunity Section --> */
    .opp-container, .form-grid {
        grid-template-columns: 1fr;
    }

    .opportunity-section .opp-visual img{
        height: 200px;
    }



    /* <!--  Vendor Registration Form Option --> */
    .form-group.full-width {
        grid-column: span 1;
    }

}


