@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@700;800;900&display=swap');

:root {
    /* --primary: #FF3D00; */
    --primary: #dc1f27;
    /* Spicy Red-Orange */
    --primary-glow: rgba(255, 61, 0, 0.4);
    --secondary: #121212;
    --accent: #FFD600;
    /* Zesty Yellow */
    --bg-dark: #080808;
    --bg-card: #141414;
    --text-main: #FFFFFF;
    --text-muted: #A0A0A0;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    /* cursor: url('Dishes%20Images/fav.png') 16 16, pointer; */
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* --- Layout --- */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    transition: var(--transition);
    background: transparent;
    /* Start transparent, change on scroll */
}

/* New full-width navigation for header */
.header-nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    /* Padding for extreme sides */
}

header.scrolled {
    background: rgba(8, 8, 8, 0.8);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

/* --- Buttons --- */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 100px;
    font-weight: 800;
    text-decoration: none;
    font-family: 'Outfit';
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 30px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px var(--primary-glow);
    background: #FF5722;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: white;
}

.btn-nav {
    padding: 12px 28px !important;
    font-size: 0.9rem !important;
    white-space: nowrap;
    border-radius: 100px;
}

/* --- Hero --- */

#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 180px;
    /* Balanced padding */
    padding-bottom: 100px;
    background: url('Dishes%20Images/bg.jpeg') center/cover no-repeat,
        radial-gradient(circle at top left, rgba(255, 61, 0, 0.05), transparent 40%),
        radial-gradient(circle at bottom right, rgba(255, 61, 0, 0.05), transparent 40%);
    background-attachment: fixed;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-visual {
    flex: 1;
    position: relative;
    height: 100%;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    /* height: 500px; */
    border-radius: 40px;
    overflow: hidden;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); */
    isolation: isolate;
    /* Important for blend modes */
}

.hero-image-wrapper img,
.hero-image-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: screen;
    filter: contrast(1.1) brightness(1.1);
    /* Helps push dark areas to pure black */
}

.hero-tagline {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: block;
}

h1 {
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 0.9;
    margin-bottom: 30px;
}

.highlight {
    /* color: var(--primary); */
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 0;
    width: 100%;
    height: 15%;
    background: var(--primary-glow);
    z-index: -1;
}

/* --- Sections --- */

section {
    padding: 120px 0;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-align: center;
    margin-bottom: 80px;
}

/* --- Menu --- */

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.menu-card {
    background: var(--bg-card);
    border-radius: 32px;
    padding: 30px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.menu-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    background: #1a1a1a;
}

.card-img {
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.menu-card:hover .card-img img {
    transform: scale(1.1);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.card-header h3 {
    font-size: 1.8rem;
}

.price {
    font-family: 'Outfit';
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 900;
}

.card-desc {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* --- Trust Section --- */

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.trust-item {
    background: var(--glass);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid var(--glass-border);
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

/* --- Sticky Mobile --- */

.mobile-cta {
    display: none;
    position: fixed;
    bottom: 30px;
    left: 20px;
    right: 20px;
    z-index: 1000;
}

@media (max-width: 968px) {
    #hero {
        height: auto;
        padding: 140px 0 80px;
        text-align: center;
    }

    #hero .container {
        flex-direction: column !important;
        gap: 40px !important;
    }

    #hero .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #hero .hero-btns {
        justify-content: center !important;
    }

    .hero-visual {
        width: 100%;
        margin-top: 20px;
    }

    .hero-image-wrapper {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        width: 100%;
        height: 400px;
        border-radius: 24px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .mobile-cta {
        display: block;
    }

    .desktop-only {
        display: none !important;
    }

    #menu .container {
        flex-direction: column !important;
        text-align: center;
        gap: 40px !important;
    }

    #menu .reveal:last-child {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #menu ul {
        text-align: left;
        display: inline-block;
    }
}

/* --- Animations --- */

/* --- Sections Added --- */
.combo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.combo-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 20px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.combo-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.bestseller-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #000;
    font-family: 'Outfit';
    font-weight: 800;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    z-index: 10;
}

.combo-img {
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
}

.combo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-img {
    background: #1a1a1a;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.combo-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 15px 0;
}

.combo-price {
    font-family: 'Outfit';
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: white;
}

.tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
}

.tabs::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    padding: 12px 24px;
    border-radius: 100px;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition);
    font-family: 'Inter';
    font-size: 1rem;
}

.tab-btn.active {
    border-color: var(--primary);
    background: var(--primary-glow);
    color: var(--primary);
    font-weight: 800;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: slideUp 0.5s ease-out forwards;
}

.menu-explorer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.menu-item-card {
    display: flex;
    gap: 20px;
    background: var(--bg-card);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    align-items: flex-start;
}

.menu-item-img {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
}

.menu-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-item-info {
    flex: 1;
    text-align: left;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 5px;
}

.menu-item-header h4 {
    font-size: 1.2rem;
    text-transform: none;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.menu-price {
    font-family: 'Outfit';
    font-weight: 800;
    color: var(--accent);
    font-size: 1.2rem;
}

.hindi-txt {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.menu-item-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.veg-dot {
    width: 16px;
    height: 16px;
    border-radius: 2px;
    display: inline-block;
    border: 2px solid white;
    position: relative;
    flex-shrink: 0;
}

.veg-dot::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
}

.veg-dot.veg {
    border-color: #2E7D52;
}

.veg-dot.veg::after {
    background: #2E7D52;
}

.veg-dot.non-veg {
    border-color: #C0392B;
}

.veg-dot.non-veg::after {
    background: #C0392B;
}

.prize-badge {
    position: absolute;
    top: 0;
    right: 40px;
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 12px;
    font-weight: 800;
    font-family: 'Outfit';
    text-transform: uppercase;
}

.winner-banner {
    background: #2E7D52;
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.winner-icon {
    font-size: 2.5rem;
}

.winner-info h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    text-transform: none;
    color: white;
}

.winner-info p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
    color: white;
}

.vote-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--glass);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    margin-bottom: 15px;
}

.vote-details {
    flex: 1;
    margin-right: 20px;
}

.vote-details h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    text-transform: none;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 5px;
    overflow: hidden;
}

.progress {
    background: var(--accent);
    height: 100%;
    border-radius: 10px;
}

.vote-btn {
    padding: 10px 20px !important;
    font-size: 0.9rem !important;
}

.suggestion-box {
    background: var(--glass);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: none;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-family: 'Inter';
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.fine-print {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 20px;
    text-align: center;
}

.step-card {
    text-align: center;
    max-width: 250px;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-glow);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.step-card h4 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    text-transform: none;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-transform: none;
}

.ops-info-table {
    max-width: 600px;
    margin: 0 auto;
    background: var(--glass);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--glass-border);
    font-size: 1.1rem;
}

.ops-info-table table {
    width: 100%;
    border-collapse: collapse;
}

.ops-info-table td {
    padding: 15px;
    border-bottom: 1px solid var(--glass-border);
    text-align: left;
}

.ops-info-table tr:last-child td {
    border-bottom: none;
}

.ops-info-table td:first-child {
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .menu-item-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .menu-item-header {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .prize-badge {
        position: relative;
        display: inline-block;
        right: auto;
        margin-bottom: 20px;
        text-align: center;
    }
}

/* --- Animations --- */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    animation: slideUp 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}