:root {
    --primary-color: #FF9933;
    --secondary-color: #8B4513;
    --accent-green: #138808;
    --text-color: #333;
    --bg-color: #FFF8DC;
    --white: #ffffff;
    --gray: #666;
    --border-radius: 15px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Comic Sans MS', 'Comic Neue', cursive, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 153, 51, .03) 35px, rgba(255, 153, 51, .03) 70px);
}

h1,
h2,
h3,
.logo {
    font-family: 'Comic Sans MS', 'Comic Neue', cursive, sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #FF9933 0%, #FFFFFF 50%, #138808 100%);
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-bottom: 4px solid var(--secondary-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-img {
    height: 70px;
    width: auto;
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.1) rotate(5deg);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--secondary-color);
    transition: var(--transition);
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.nav-links a:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.hamburger {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('hero-image.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(139, 69, 19, 0.4), rgba(0, 0, 0, 0.7));
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.8);
    font-weight: 700;
}

.text-gradient {
    background: linear-gradient(to right, #FF9933, #FFFFFF, #138808);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 700;
}

.tagline {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 30px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
    font-style: italic;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.primary-btn {
    background: linear-gradient(135deg, #FF9933, #FF6600);
    color: var(--white);
    border: 3px solid #FFD700;
}

.primary-btn:hover {
    background: linear-gradient(135deg, #FF6600, #FF9933);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 153, 51, 0.6);
}

.secondary-btn {
    border: 3px solid var(--primary-color);
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

.secondary-btn:hover {
    background: linear-gradient(135deg, #FF9933, #FF6600);
    color: var(--white);
}

/* Sections */
.section {
    padding: 100px 0;
    position: relative;
}

.section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: repeating-linear-gradient(90deg, #FF9933 0px, #FF9933 20px, #FFFFFF 20px, #FFFFFF 40px, #138808 40px, #138808 60px);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header.left-align {
    text-align: left;
}

.rangoli-small,
.spices-decoration {
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.subheading {
    display: block;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.section-header h2 {
    font-size: 3rem;
    color: var(--secondary-color);
    text-shadow: 3px 3px 6px rgba(255, 153, 51, 0.3);
    font-weight: 700;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 500;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
}

.feature-card {
    background: linear-gradient(135deg, #FFE5B4, #FFDAB9);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
    text-align: center;
    transition: var(--transition);
    border: 3px solid var(--primary-color);
}

.feature-card:hover {
    transform: translateY(-8px) rotate(2deg);
    box-shadow: 0 12px 30px rgba(255, 153, 51, 0.5);
}

.feature-card h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.5rem;
    font-weight: 700;
}

.feature-card p {
    font-weight: 600;
}

/* Menu Section */
.dark-bg {
    background: linear-gradient(135deg, #8B4513, #654321);
    color: var(--white);
    position: relative;
}

.dark-bg::before {
    background: repeating-linear-gradient(90deg, #FFD700 0px, #FFD700 20px, #FF9933 20px, #FF9933 40px, #FFD700 40px, #FFD700 60px);
}

.dark-bg .section-header h2 {
    color: var(--white);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.dark-bg .subheading {
    color: #FFD700;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.menu-item {
    background: rgba(255, 228, 196, 0.95);
    padding: 25px;
    border-radius: var(--border-radius);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    transition: var(--transition);
    border: 3px solid #FFD700;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.menu-item:hover {
    background: rgba(255, 239, 213, 1);
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.6);
}

.menu-info h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-weight: 700;
}

.menu-info p {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
}

.price {
    font-weight: 700;
    font-size: 1.5rem;
    margin-left: 15px;
    color: #FF6600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.center-btn {
    text-align: center;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-info p {
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.address,
.hours,
.phone {
    background: linear-gradient(135deg, #FFE5B4, #FFDAB9);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 3px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.phone a {
    color: var(--secondary-color);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.phone a:hover {
    color: var(--primary-color);
}

.call-btn {
    margin-right: 15px;
}

.map-placeholder {
    height: 350px;
    background-color: #e0d5c7;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 5px solid var(--secondary-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #8B4513, #654321);
    color: #FFD700;
    padding: 40px 0;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    border-top: 5px solid #FFD700;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

/* Responsive - Mobile First */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .hamburger span {
        width: 30px;
        height: 3px;
        background: var(--secondary-color);
        border-radius: 3px;
    }

    .hero {
        margin-top: 80px;
        height: 70vh;
        padding: 20px;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .tagline {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .subheading {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    .rangoli-small,
    .spices-decoration {
        width: 60px;
        height: 60px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-text p {
        font-size: 1rem;
        text-align: center;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .menu-item {
        padding: 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .menu-info h3 {
        font-size: 1.2rem;
    }

    .price {
        margin-left: 0;
        margin-top: 10px;
        font-size: 1.3rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-header.left-align {
        text-align: center;
    }

    .contact-info {
        text-align: center;
    }

    .contact-info p {
        font-size: 1rem;
    }

    .address,
    .hours,
    .phone {
        padding: 15px;
        font-size: 0.95rem;
    }

    .call-btn {
        margin-right: 0;
        margin-bottom: 15px;
        display: block;
        width: 100%;
    }

    .contact-info .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .map-placeholder {
        height: 300px;
        order: -1;
    }

    .logo-img {
        height: 60px;
    }

    .container {
        padding: 0 15px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .tagline {
        font-size: 0.9rem;
    }

    .btn {
        padding: 10px 25px;
        font-size: 0.85rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .menu-info h3 {
        font-size: 1.1rem;
    }

    .logo-img {
        height: 50px;
    }
}