@import url('https://fonts.googleapis.com/css2?family=Karma:wght@400;500;600;700&family=Mukta:wght@300;400;500;600;700;800&family=Caveat:wght@400;700&display=swap');

:root {
    --primary: #E31E24;
    --primary-glow: rgba(227, 30, 36, 0.15);
    --secondary: #FFD700;
    --accent: #FFD700;
    --bg-light: #FFFFFF;
    --bg-alt: #FDFBF0;
    --bg-card: rgba(255, 255, 255, 0.8);
    --text-main: #1A1A1A;
    --text-muted: #666666;
    --glass: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(227, 30, 36, 0.1);
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --heading-font: 'Karma', serif;
    --body-font: 'Mukta', sans-serif;
    --accent-font: 'Caveat', cursive;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--body-font);
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Navbar */
nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    padding: 0.8rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    transition: var(--transition);
}

nav.scrolled {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: var(--glass-border);
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.08);
    top: 10px;
}

.logo-container img {
    height: 45px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--heading-font);
    transition: var(--transition);
}

nav.scrolled .nav-links a {
    color: var(--text-main);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: white;
    z-index: 1001;
    transition: var(--transition);
}

.mobile-menu-btn.active {
    color: var(--text-main);
}

nav.scrolled .mobile-menu-btn {
    color: var(--text-main);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
        url('images/herobg.png') center/cover no-repeat;
    padding: 100px 5%;
}

.hero-logo {
    max-width: 250px;
    margin-bottom: 2rem;
    animation: floating 4s ease-in-out infinite;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero h1 {
    font-family: var(--heading-font);
    font-size: clamp(3rem, 10vw, 5.5rem);
    color: var(--secondary);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.3rem;
    max-width: 800px;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.google-rating {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2.5rem;
    color: white;
    font-weight: 600;
}

.google-stars {
    color: #fbbc04;
}

.cta-buttons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3.5rem;
}

.hero-socials {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.hero-socials a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.7rem 1.8rem;
    border-radius: 100px;
}

.hero-socials a:hover {
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(227, 30, 36, 0.2);
}

/* Buttons */
.btn {
    padding: 1.1rem 3rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 25px rgba(227, 30, 36, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(227, 30, 36, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
}

/* Sections */
section {
    padding: 100px 10%;
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title h2 {
    font-family: var(--heading-font);
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.section-title::after {
    content: 'Authentic Indian Flavors';
    font-family: var(--accent-font);
    color: var(--primary);
    font-size: 1.5rem;
    display: block;
    margin-top: -10px;
}

.underline {
    width: 60px;
    height: 4px;
    background: var(--secondary);
    margin: 1.5rem auto 0;
}

/* Cards */
.glass-card {
    background: white;
    border-radius: 35px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(227, 30, 36, 0.08);
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.about-img img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    border-radius: 25px;
    overflow: hidden;
    height: 300px;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Menu */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.menu-category h3 {
    font-family: var(--heading-font);
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--secondary);
    display: inline-block;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.menu-item-info h4 {
    font-weight: 700;
    font-size: 1.2rem;
}

.menu-item-price {
    color: var(--primary);
    font-weight: 700;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.map-wrapper {
    border-radius: 30px;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* Reviews */
.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: white;
    padding: 2.5rem;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

/* Footer */
footer {
    background: #111111;
    color: white;
    padding: 60px 10% 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-family: var(--heading-font);
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.footer-col p,
.footer-col ul {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.8rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--secondary);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.partner-section,
.developed-by {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
    font-size: 1.1rem;
}

.partner-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.dev-logo {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.partner-logo:hover {
    transform: scale(1.05);
}

/* Internal Page Headers */
.page-header {
    padding: 180px 10% 80px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('images/herobg.png') center/cover;
    text-align: center;
    border-bottom: 5px solid var(--primary);
}

.page-header h1 {
    font-family: var(--heading-font);
    font-size: clamp(3rem, 10vw, 5rem);
    color: var(--secondary);
    text-transform: uppercase;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* MOBILE OPTIMIZATION */
@media (max-width: 1024px) {

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0.8rem 1.5rem;
        width: 95%;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        visibility: hidden;
        opacity: 0;
    }

    .nav-links.active {
        right: 0;
        visibility: visible;
        opacity: 1;
    }

    .nav-links a {
        color: var(--text-main) !important;
        font-size: 2rem;
        font-weight: 700;
        font-family: var(--heading-font);
    }

    section {
        padding: 80px 6%;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .section-title h2 {
        font-size: 2.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col {
        align-items: center;
    }

    .footer-logo {
        align-self: center;
    }

    .social-links {
        justify-content: center;
    }

    .map-wrapper {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.4rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}