/* --- Hide browser scrollbar but keep scrolling and preserve layout --- */
html {
    height: 100%;
    overflow-y: auto;          /* allow scrolling */
    -ms-overflow-style: none;  /* IE/Edge */
    scrollbar-width: none;     /* Firefox */
    scrollbar-gutter: stable;  /* reserve space so layout doesn't shift when scrollbar hidden */
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

html::-webkit-scrollbar {
    display: none;             /* Chrome, Safari, Opera */
    width: 0;
    height: 0;
}

/* Keep body full-height and prevent horizontal overflow */
body {
    min-height: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1F2937; /* var(--text-dark) fallback */
}

/* For completeness (some browsers target body scrollbar) */
body::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

/* ---- Variables ---- */
:root {
    --primary-color: #8B5CF6;
    --secondary-color: #A78BFA;
    --accent-color: #C4B5FD;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --white: #ffffff;
    --light-gray: #F9FAFB;
    --border-color: #E5E7EB;
    --dark-bg: #374151;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-radius: 0 0 20px 20px;
    margin: 0 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
    background: var(--white);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

.brand-logo-img {
    height: 1.8rem;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.contact-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
}

.contact-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hamburger menu animations (X icon) */
.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(167, 139, 250, 0.05) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-image: url('/assets/foodtruck.png?auto=compress&cs=tinysrgb&w=1920&h=1080');
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* better mobile performance */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.8) 0%, rgba(55, 65, 81, 0.6) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-logo-img {
    max-width: 500px;
    height: auto;
    object-fit: contain;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 13px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--text-dark);
    transform: translateY(-3px);
}

/* Ingredients Section */
.ingredients {
    padding: 8rem 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.ingredient-card {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: var(--light-gray);
    border: 1px solid var(--border-color);
}

.ingredient-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: var(--white);
}

.ingredient-image {
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.ingredient-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.ingredient-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.ingredient-card p {
    line-height: 1.7;
    color: var(--text-light);
    font-size: 1rem;
}

/* Menu Section */
.menu-section {
    padding: 8rem 0;
    background: var(--light-gray);
}

.menu-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.menu-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.menu-header {
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.menu-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-logo-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.brand-logo {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.brand-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.brand-info p {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

.menu-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.menu-section-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.item-name {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.item-price {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 600;
}

.telugu-menu .menu-section-item h4 {
    font-family: 'Noto Sans Telugu', sans-serif;
    font-size: 1.3rem;
}

.telugu-menu .item-name {
    font-family: 'Noto Sans Telugu', sans-serif;
    font-size: 1rem;
}

.qr-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.qr-code {
    display: inline-block;
}

.qr-placeholder {
    width: 80px;
    height: 80px;
    border: 2px solid var(--text-dark);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    position: relative;
    overflow: hidden;
}

.qr-pattern {
    width: 100%;
    height: 100%;
    background:
        linear-gradient(90deg, var(--text-dark) 50%, transparent 50%),
        linear-gradient(var(--text-dark) 50%, transparent 50%);
    background-size: 10px 10px;
    opacity: 0.8;
}

.qr-code p {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--white);
    text-align: center;
}

.contact-cta {
    margin-top: 2rem;
    font-size: 1.1rem;
    padding: 15px 40px;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-left h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-logo-img {
    height: 1.5rem;
    width: auto;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.footer-left p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-right {
    text-align: right;
}

.social-links {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    justify-content: flex-end;
}

.social-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
}

.social-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-credit {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.highlight {
    color: var(--primary-color);
    font-weight: 600;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        margin: 0 10px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        max-width: 250px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        font-weight: 600;
        padding: 10px 0;
    }
    
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: flex;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hero-logo-img {
        max-width: 300px;
    }
    
    .hero-subtitle {
        font-size: 0.6rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .ingredients-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .menu-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .menu-card {
        padding: 2rem;
    }
    
    .menu-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-right {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .container {
        padding: 0 15px;
    }

    .contact-btn-mobile {
        background: var(--primary-color);
        color: var(--white);
        padding: 15px 35px;
        border-radius: 30px;
        font-weight: 600;
        margin-top: 1rem;
        display: block;
        text-align: center;
        text-decoration: none;
    }

    .contact-btn-mobile:hover {
        background: var(--secondary-color);
        transform: translateY(-2px);
    }
}

@media (min-width: 769px) {
    .mobile-only {
        display: none;
    }
}

/* Smooth transitions for all interactive elements */
a, button, .ingredient-card, .menu-card {
    transition: all 0.3s ease;
}
.about-section {
    padding: 3rem 0;
    background: var(--light-gray);
    text-align: center;
}

.founders-section {
    padding: 3rem 0;
    background: var(--white);
    text-align: center;
}

.founder-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 3rem;
}

.founder-image-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.founder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-120deg);
    animation: shine 2s infinite linear;
}

@keyframes shine {
    0% {
        left: -150%;
    }
    100% {
        left: 150%;
    }
}
@media (max-width: 768px) {
    .founder-grid {
        flex-direction: column;
        gap: 3rem;
    }
}

.main-content {
    flex-grow: 1;
}

.locations-section {
    padding: 4rem 1.5rem;
    background-color: var(--white);
    text-align: center;
}

.locations-section .container {
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.locations-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.locations-subtitle {
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.location-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    justify-content: center;
    align-items: center;
}

.location-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
}

.location-name {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.location-address {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.location-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.location-link:hover {
    color: var(--secondary-color);
}

.status-tag {
    display: inline-block;
    background-color: var(--primary-color); /* Changed to primary-color for a bolder look */
    color: var(--white); /* Text color changed to white */
    font-weight: 600;
    padding: 0.5rem 5rem; /* Increased padding for height */
    border-radius: 9999px;
    font-size: 0.875rem;
    margin-top: 1rem;
    position: relative; /* Needed for shine effect */
    overflow: hidden; /* Needed for shine effect */
    transition: background-color 0.3s ease; /* Smooth transition for hover */
}

.status-tag:hover {
    background-color: var(--secondary-color); /* Change color on hover */
}

/* Shine effect for the status tag */
.status-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
    transition: left 0.7s ease; /* Smooth transition for shine on hover */
}

.status-tag::before {
    animation: tag-shine 1.5s infinite linear; /* Apply shine animation on hover */
}

@keyframes tag-shine {
    0% {
        left: -150%;
    }
    100% {
        left: 150%;
    }
}

.contact-promo-section {
    padding: 4rem 1.5rem;
    background-color: var(--white);
    text-align: center;
}

.contact-promo-section .container {
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.contact-promo-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-promo-text {
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.contact-promo-btn {
    display: inline-block;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--white);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.contact-promo-btn:hover {
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .locations-title {
        font-size: 3rem;
    }

    .locations-subtitle {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .location-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 3rem;
    }

    .contact-promo-title {
        font-size: 3rem;
    }
}
/* --- Contact Form Styles --- */
.contact-intro {
    text-align: center;
    margin-bottom: 2.5rem;
    margin-top: 2.5rem;
}

.contact-title {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    padding-top: 3rem;
}

.contact-subtitle {
    color: var(--text-light);
    margin-top: 0.5rem;
}

.form-container {
    width: 100%;
    height: 1400px;
}

.form-iframe {
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
}

@media (min-width: 768px) {
    .contact-title {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
}
.btn-primary, .btn-secondary {
    text-decoration: none; /* Removes the underline */
    text-align: center; /* Centers the text inside */
    display: inline-block; /* Allows padding and margins to be applied */
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 2.5rem;
    border-radius: 9999px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-2px) scale(1.05);
}