/* Modern, vibrant, and appetizing design for Jayantisfood */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    --saffron: #F28C28;
    --emerald-deep: #064E3B;
    --emerald-light: #065F46;
    --cream: #FFFAF0;
    --cream-darker: #FDF5E6;
    --text-dark: #1F2937;
    --text-muted: #4B5563;
    --white: #FFFFFF;
    --shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bg-pattern {
    background-color: var(--cream);
    background-image: radial-gradient(#F28C2822 0.5px, transparent 0.5px), radial-gradient(#064E3B22 0.5px, #FFFAF0 0.5px);
    background-size: 20px 20px;
    background-position: 0 0,10px 10px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .brand-font {
    font-family: 'Playfair Display', serif;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 10%;
    position: absolute;
    width: 100%;
    z-index: 100;
    background: transparent;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--saffron);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--saffron);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 101;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--white);
    border-radius: 10px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('assets/hero_indian_veg_spread_1775442274122.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 0 1rem;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--saffron);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(242, 140, 40, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(242, 140, 40, 0.6);
}

/* Services */
.services {
    padding: 8rem 10%;
    background-color: var(--white);
    text-align: center;
}

.section-head {
    margin-bottom: 4rem;
}

.section-head h2 {
    font-size: 3rem;
    color: var(--emerald-deep);
    margin-bottom: 1rem;
}

.section-head p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

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

.service-card {
    padding: 3.5rem 2.5rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 30px;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: var(--shadow);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--saffron);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--saffron);
}

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--emerald-deep);
}

/* Menu Gallery */
.menu {
    padding: 8rem 10%;
    background-color: var(--cream-darker);
}

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

.menu-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.menu-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.menu-img-wrapper {
    height: 250px;
    overflow: hidden;
}

.menu-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.menu-info {
    padding: 1.5rem;
}

.menu-info h3 {
    color: var(--emerald-deep);
    margin-bottom: 0.5rem;
}

.tag {
    background: var(--saffron);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.5rem;
}

/* Detailed Menu Section */
.detailed-menu {
    padding: 8rem 10%;
    background-color: var(--white);
}

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

.category-group h3 {
    font-size: 2rem;
    color: var(--saffron);
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--cream-darker);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.menu-list {
    list-style: none;
}

.menu-list-item {
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.item-details h4 {
    font-size: 1.25rem;
    color: var(--emerald-deep);
    margin-bottom: 0.25rem;
}

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

.item-price {
    font-weight: 700;
    color: var(--emerald-light);
    white-space: nowrap;
}

/* Location Tag */
.location-section {
    padding: 6rem 10%;
    background-color: var(--emerald-deep);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.location-content {
    position: relative;
    z-index: 2;
}

.location-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.location-tagline {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
footer {
    padding: 4rem 10% 2rem;
    background-color: var(--cream);
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--emerald-deep);
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    list-style: none;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--saffron);
}

.copyright {
    font-size: 0.9rem;
    color: var(--text-muted);
}

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

/* Responsive Refinements */
@media (max-width: 968px) {
    nav {
        padding: 1.5rem 5%;
    }
    
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        width: 80%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: 0.5s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 100;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--text-dark) !important;
        font-size: 1.5rem;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
        background: var(--text-dark);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -7px);
        background: var(--text-dark);
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .section-head h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 1.1rem;
    }
    .services, .menu, .location-section {
        padding: 5rem 1.5rem;
    }
    .service-card {
        padding: 2.5rem 1.5rem;
    }
}
