/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Psychological Appeal */
    --gold: #d4af37;
    --cream: #fef6e4;
    --deep-burgundy: #722f37;
    --rich-brown: #8b4513;
    --crimson: #dc143c;
    --dark-bg: #1a1a1a;
    --text-dark: #2c2c2c;
    --text-light: #f5f5f5;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Typography */
    --font-primary: 'Georgia', 'Times New Roman', serif;
    --font-secondary: 'Arial', 'Helvetica', sans-serif;
}

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: rgba(212, 175, 55, 0.2);
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--cream) 0%, #fff5e6 100%);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Touch-friendly links and buttons */
a, button {
    touch-action: manipulation;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-sm) var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
    animation: glow 2s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--gold) 0%, #f0c14b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-menu a:hover {
    color: var(--gold);
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-md);
    background: linear-gradient(135deg, var(--deep-burgundy) 0%, var(--rich-brown) 100%);
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--cream);
    margin-bottom: var(--spacing-sm);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--cream);
    margin-bottom: var(--spacing-md);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gold);
    color: var(--dark-bg);
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
    background: #f0c14b;
}

/* Products Section */
.products {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--cream) 0%, #ffffff 100%);
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    color: var(--deep-burgundy);
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    text-align: center;
    color: var(--rich-brown);
    margin-bottom: var(--spacing-lg);
    font-size: 1.1rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.product-card {
    position: relative;
    background: white;
    border-radius: 15px;
    padding: var(--spacing-md);
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    opacity: 0;
    animation: scrollReveal 0.6s ease-out forwards;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.5s ease;
}

.product-card:hover::before {
    left: 100%;
}

@keyframes scrollReveal {
    to {
        opacity: 1;
    }
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }

.product-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--crimson);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    animation: pulseBadge 2s ease-in-out infinite;
}

@keyframes pulseBadge {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin: var(--spacing-sm) 0;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-name {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--deep-burgundy);
    margin: var(--spacing-sm) 0;
}

.product-description {
    color: #666;
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
}

.view-more-button {
    width: 100%;
    padding: 0.8rem;
    background: var(--gold);
    color: var(--dark-bg);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-more-button:hover {
    background: #f0c14b;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--crimson);
}

.modal-product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: var(--spacing-md);
}

.modal h2 {
    font-family: var(--font-primary);
    color: var(--deep-burgundy);
    margin-bottom: var(--spacing-sm);
    font-size: 2rem;
}

.modal-description {
    color: #666;
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.modal-details {
    background: var(--cream);
    padding: var(--spacing-md);
    border-radius: 10px;
    margin-bottom: var(--spacing-md);
}

.modal-details h3 {
    color: var(--deep-burgundy);
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-primary);
}

.modal-details ul {
    list-style: none;
    padding: 0;
}

.modal-details li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: #555;
}

.modal-details li:last-child {
    border-bottom: none;
}

.add-to-cart-modal {
    width: 100%;
    padding: 1rem;
    background: var(--deep-burgundy);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart-modal:hover {
    background: var(--rich-brown);
    transform: scale(1.02);
}

/* Features Section */
.features {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #f8f4e6 0%, var(--cream) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature-card {
    background: white;
    padding: var(--spacing-md);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

/* Pricing Menu Section */
.pricing-menu {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #fef6e4 0%, #fff5e6 100%);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.menu-category {
    background: white;
    padding: var(--spacing-md);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.menu-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
}

.category-title {
    font-family: var(--font-primary);
    color: var(--deep-burgundy);
    font-size: 1.4rem;
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-xs);
    border-bottom: 2px solid var(--gold);
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item:hover {
    padding-left: 5px;
    background: rgba(212, 175, 55, 0.05);
}

.item-name {
    color: #555;
    font-size: 0.95rem;
}

.item-price {
    color: var(--gold);
    font-weight: bold;
    font-size: 1rem;
}

.menu-footer {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.menu-footer h4 {
    color: var(--deep-burgundy);
    font-family: var(--font-primary);
    margin-bottom: var(--spacing-xs);
    font-size: 1.2rem;
}

.payment-info,
.delivery-info,
.custom-info {
    margin-bottom: var(--spacing-md);
}

.payment-info p,
.delivery-info p {
    color: #666;
    line-height: 1.8;
}

.custom-info .highlight {
    color: var(--gold);
    font-weight: bold;
    font-size: 1.1rem;
    margin: 0;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.feature-card h3 {
    font-family: var(--font-primary);
    color: var(--deep-burgundy);
    margin-bottom: var(--spacing-xs);
    font-size: 1.3rem;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-brand h3 {
    font-family: var(--font-primary);
    color: var(--gold);
    margin-bottom: var(--spacing-xs);
}

.footer-brand p {
    color: #aaa;
}

.footer-links h4 {
    color: var(--gold);
    margin-bottom: var(--spacing-sm);
}

.contact-message {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--text-light);
}

.contact-icon {
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.whatsapp-link {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.whatsapp-link:hover {
    color: #25D366;
    border-bottom-color: #25D366;
    transform: translateX(3px);
}

.upi-info {
    color: var(--text-light);
    line-height: 1.6;
}

.upi-info strong {
    color: var(--gold);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.social-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid #333;
    color: #888;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    :root {
        --spacing-md: 1rem;
        --spacing-lg: 2rem;
        --spacing-xl: 3rem;
    }

    /* Navigation Mobile Optimization */
    .nav-container {
        padding: var(--spacing-sm) var(--spacing-sm);
    }
    
    .nav-menu {
        gap: var(--spacing-xs);
        font-size: 0.85rem;
    }
    
    .nav-menu a {
        font-size: 0.85rem;
        padding: 0.3rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .logo-img {
        height: 40px;
    }
    
    /* Hero Section Mobile */
    .hero {
        min-height: 60vh;
        padding: var(--spacing-md) var(--spacing-sm);
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }
    
    /* Product Grid Mobile */
    .product-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
        padding: 0 var(--spacing-xs);
    }

    .product-card {
        margin-bottom: var(--spacing-sm);
    }

    .product-image {
        height: 200px;
    }

    .product-name {
        font-size: 1.3rem;
    }

    .product-description {
        font-size: 0.9rem;
    }

    .view-more-button {
        padding: 0.7rem;
        font-size: 0.95rem;
    }

    /* Pricing Menu Mobile */
    .menu-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
        padding: 0 var(--spacing-xs);
    }

    .menu-category {
        padding: var(--spacing-sm);
    }

    .category-title {
        font-size: 1.2rem;
    }

    .item-name {
        font-size: 0.9rem;
    }

    .item-price {
        font-size: 0.95rem;
    }

    .menu-footer {
        padding: var(--spacing-sm);
    }

    .menu-footer h4 {
        font-size: 1.1rem;
    }

    .payment-info p,
    .delivery-info p {
        font-size: 0.9rem;
    }

    /* Section Titles Mobile */
    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }
    
    /* Features Grid Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .feature-card {
        padding: var(--spacing-sm);
    }

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

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-md);
    }

    .footer-brand h3 {
        font-size: 1.5rem;
    }

    .contact-message {
        font-size: 0.95rem;
    }

    .contact-info {
        align-items: center;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.3rem;
    }

    .whatsapp-link {
        font-size: 0.95rem;
    }

    .upi-info {
        text-align: center;
        font-size: 0.9rem;
    }
    
    .social-links {
        align-items: center;
    }

    .social-links a {
        font-size: 0.95rem;
    }

    .footer-bottom {
        font-size: 0.85rem;
    }

    /* Modal Mobile */
    .modal-content {
        width: 95%;
        padding: var(--spacing-sm);
        max-height: 85vh;
    }

    .modal-product-image {
        height: 200px;
    }

    .modal h2 {
        font-size: 1.5rem;
    }

    .modal-description {
        font-size: 0.9rem;
    }

    .modal-details {
        padding: var(--spacing-sm);
    }

    .modal-details h3 {
        font-size: 1.1rem;
    }

    .modal-details li {
        font-size: 0.85rem;
    }

    .add-to-cart-modal {
        padding: 0.8rem;
        font-size: 0.95rem;
    }

    .close-modal {
        font-size: 1.8rem;
        top: 0.5rem;
        right: 1rem;
    }

    /* Container Padding Mobile */
    .container {
        padding: 0 var(--spacing-sm);
    }

    /* Products Section */
    .products {
        padding: var(--spacing-lg) 0;
    }

    /* Pricing Menu Section */
    .pricing-menu {
        padding: var(--spacing-lg) 0;
    }

    /* Features Section */
    .features {
        padding: var(--spacing-lg) 0;
    }

    /* Footer */
    .footer {
        padding: var(--spacing-lg) 0 var(--spacing-sm);
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .logo-img {
        height: 35px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .nav-menu {
        gap: 0.3rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-menu a {
        font-size: 0.75rem;
        padding: 0.2rem 0.4rem;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
        padding: 0 var(--spacing-xs);
    }

    .product-name {
        font-size: 1.2rem;
    }

    .product-description {
        font-size: 0.85rem;
    }

    .category-title {
        font-size: 1.1rem;
    }

    .menu-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }

    .item-name,
    .item-price {
        font-size: 0.85rem;
    }

    .menu-footer h4 {
        font-size: 1rem;
    }

    .payment-info p,
    .delivery-info p {
        font-size: 0.85rem;
    }

    .custom-info .highlight {
        font-size: 0.95rem;
    }

    .modal h2 {
        font-size: 1.3rem;
    }

    .modal-product-image {
        height: 180px;
    }

    .footer-brand h3 {
        font-size: 1.3rem;
    }

    .contact-message {
        font-size: 0.85rem;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 80vh;
    }

    .modal-content {
        max-height: 90vh;
    }
}

/* Tablet Optimization */
@media (min-width: 769px) and (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
