:root {
    --primary-brown: #8B6F47;
    --dark-brown: #5C4A37;
    --light-brown: #D4C4A8;
    --cream: #F5F1E8;
    --warm-beige: #E8DCC6;
    --gold: #D4A574;
    --text-dark: #2C2416;
    --text-light: #6B5D4F;
    --white: #FFFFFF;
    --shadow: rgba(44, 36, 22, 0.1);
    --shadow-hover: rgba(44, 36, 22, 0.2);
}

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

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Pacifico', cursive;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-brown);
    letter-spacing: 2px;
}

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

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

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

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

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

.cart-icon {
    position: relative;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.cart-icon:hover {
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary-brown);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-beige) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, var(--light-brown) 0%, transparent 70%);
    opacity: 0.5;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    text-align: center;
    z-index: 1;
    position: relative;
}

.hero-title {
    font-family: 'Pacifico', cursive;
    font-size: 6.25rem;
    font-weight: 400;
    color: var(--dark-brown);
    margin-bottom: 1rem;
    letter-spacing: 4px;
    text-shadow: 2px 2px 4px var(--shadow);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-brown);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow);
}

.cta-button:hover {
    background: var(--dark-brown);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-hover);
}

.hero-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    font-size: 10rem;
    opacity: 0.25;
    animation: float 5s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.floating-icon.delay-1 {
    animation-delay: 1.5s;
    top: 15%;
    left: 8%;
    font-size: 10rem;
}

.floating-icon.delay-2 {
    animation-delay: 3s;
    top: 65%;
    right: 12%;
    font-size: 12rem;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
    }
    25% { 
        transform: translateY(-40px) rotate(-15deg) scale(1.1); 
    }
    50% { 
        transform: translateY(-60px) rotate(0deg) scale(1.05); 
    }
    75% { 
        transform: translateY(-40px) rotate(15deg) scale(1.1); 
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

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

/* Menu Section */
.menu-section {
    padding: 5rem 0;
    background: var(--white);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    color: var(--dark-brown);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.menu-category {
    margin-bottom: 4rem;
}

.category-header {
    background: var(--warm-beige);
    padding: 1rem 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.category-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: var(--primary-brown);
}

.category-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--dark-brown);
    font-weight: 600;
}

.combo-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.menu-item {
    background: var(--cream);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.menu-item:hover::before {
    left: 100%;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
    border-color: var(--gold);
}

.item-header {
    margin-bottom: 1rem;
}

.item-header h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
}

.item-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.item-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--white);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.option:hover {
    background: var(--warm-beige);
    transform: translateX(5px);
}

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

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

.add-to-cart {
    background: var(--primary-brown);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.add-to-cart:hover {
    background: var(--dark-brown);
    transform: scale(1.05);
}

.add-to-cart:active {
    transform: scale(0.95);
}

/* Order Section */
.order-section {
    padding: 5rem 0;
    background: var(--warm-beige);
}

.cart-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 40px var(--shadow);
}

.cart-items {
    margin-bottom: 2rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid var(--light-brown);
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.item-info {
    flex: 1;
}

.item-name {
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 0.25rem;
}

.item-details {
    font-size: 0.9rem;
    color: var(--text-light);
}

.item-price {
    font-weight: 600;
    color: var(--primary-brown);
    margin-right: 1rem;
}

.remove-item {
    background: transparent;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.5rem;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.remove-item:hover {
    background: var(--cream);
    color: var(--primary-brown);
    transform: rotate(90deg);
}

.empty-cart {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    padding: 2rem;
}

.cart-summary {
    border-top: 2px solid var(--light-brown);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.summary-row.total {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-brown);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--gold);
}

.whatsapp-order-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-order-btn:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-order-btn:active {
    transform: translateY(0);
}

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

.contact-section .section-title {
    color: var(--white);
}

.contact-section .section-title::after {
    background: var(--gold);
}

.contact-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--cream);
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.contact-button:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--cream);
    text-align: center;
    padding: 2rem 0;
    font-size: 0.9rem;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 20px var(--shadow);
    z-index: 2000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.sidebar-header {
    padding: 1.5rem;
    border-bottom: 2px solid var(--light-brown);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--warm-beige);
}

.sidebar-header h3 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-brown);
    font-size: 1.5rem;
}

.close-cart {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-dark);
    cursor: pointer;
    line-height: 1;
    transition: transform 0.3s ease;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-cart:hover {
    transform: rotate(90deg);
    color: var(--primary-brown);
}

.sidebar-content {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.sidebar-footer {
    padding: 1.5rem;
    border-top: 2px solid var(--light-brown);
    background: var(--cream);
}

.sidebar-summary {
    margin-bottom: 1rem;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

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

    .floating-icon {
        font-size: 6rem !important;
    }

    .floating-icon.delay-1 {
        font-size: 6rem !important;
    }

    .floating-icon.delay-2 {
        font-size: 7rem !important;
    }

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

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .option {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .add-to-cart {
        width: 100%;
        margin-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3.125rem;
        letter-spacing: 2px;
    }

    .floating-icon {
        font-size: 5rem !important;
    }

    .floating-icon.delay-1 {
        font-size: 5rem !important;
    }

    .floating-icon.delay-2 {
        font-size: 5.5rem !important;
    }

    .container {
        padding: 0 15px;
    }

    .menu-item {
        padding: 1rem;
    }

    .cart-container {
        padding: 1.5rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading {
    animation: shimmer 2s infinite;
    background: linear-gradient(to right, var(--cream) 4%, var(--warm-beige) 25%, var(--cream) 36%);
    background-size: 1000px 100%;
}

