/* Base Variables */
:root {
    --primary: #f97316; /* orange-500 */
    --primary-dark: #ea580c; /* orange-600 */
    --secondary: #fb923c; /* orange-400 */
    --secondary-dark: #c2410c; /* orange-700 */
    
    --bg-black: #ffffff;
    --bg-gray: #f8fafc;
    --bg-card: #ffffff;
    --bg-card-hover: #f1f5f9;
    
    --text-main: #0f172a;
    --text-muted: #64748b;
    --text-light: #475569;
    
    --border-color: rgba(0, 0, 0, 0.1);
    
    --transition: all 0.3s ease-in-out;
    --font-family: 'Outfit', sans-serif;
}

/* Reset & Globals */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-black);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

/* Typography Utilities */
.text-gradient {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.text-orange { color: var(--primary); }
.text-accent { color: var(--primary); }
.text-muted { color: var(--text-muted); }
.text-large { font-size: 1.125rem; color: var(--text-light); }

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title { font-size: 3rem; }
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
}

.section-padding {
    padding: 5rem 1rem;
}

.page-header {
    padding: 8rem 1rem 3rem;
    text-align: center;
    background: linear-gradient(to bottom, var(--bg-black), var(--bg-gray));
    border-bottom: 1px solid var(--border-color);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-8 { margin-top: 2rem; }
.mt-16 { margin-top: 4rem; }
.text-center { text-align: center; }
.w-full { width: 100%; }

/* Buttons */
.btn-primary {
    background: linear-gradient(to right, var(--primary-dark), var(--secondary));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
    box-shadow: 0 4px 14px 0 rgba(234, 88, 12, 0.39);
}

.btn-primary:hover {
    background: linear-gradient(to right, #c2410c, var(--secondary-dark));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(234, 88, 12, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-whatsapp {
    background-color: #16a34a; /* green-600 */
    color: white;
    padding: 1rem;
    border-radius: 1rem;
    font-weight: 500;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.3);
}

.btn-whatsapp:hover {
    background-color: #15803d; /* green-700 */
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.5);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

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

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

.nav-logo-img {
    height: 48px;
    width: auto;
    border-radius: 8px; /* Optional for style */
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    display: block;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-main);
    line-height: 1.2;
}

.logo-subtitle {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.nav-links {
    display: none;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        gap: 2rem;
    }
}

.nav-item {
    color: var(--text-light);
    font-weight: 500;
}

.nav-item:hover, .nav-item.active {
    color: var(--primary);
}

.desktop-only {
    display: none !important;
}

@media (min-width: 1024px) {
    .desktop-only {
        display: inline-flex !important;
    }
}

.nav-item:hover, .nav-item.active {
    color: var(--primary);
}

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

.phone-link {
    display: none;
    color: var(--text-light);
}

.phone-link:hover {
    color: var(--primary);
}

@media (min-width: 640px) {
    .phone-link { display: flex; align-items: center; gap: 0.5rem; }
}

.mobile-menu-btn {
    display: block;
    color: var(--text-main);
    font-size: 1.5rem;
}

@media (min-width: 768px) {
    .mobile-menu-btn { display: none; }
}

.mobile-menu {
    display: none;
    background: var(--bg-black);
    border-top: 1px solid var(--border-color);
    padding: 1rem;
}

.mobile-menu.active {
    display: block;
    animation: slideDown 0.3s ease-out;
}

.mobile-link {
    display: block;
    padding: 0.75rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.mobile-link:last-child {
    border-bottom: none;
}

.mobile-link:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: calc(100vh - 80px);
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.85), rgba(255,255,255,0.9), rgba(255,255,255,1));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1rem;
    max-width: 1200px;
    margin-top: 2rem;
}

.hero-logo-img {
    width: 250px;
    height: auto;
    padding-top: 1cm;
    margin: 0 auto 2rem;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5));
}

.hero-title {
    font-size: clamp(1.75rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .hero-subtitle { font-size: 1.5rem; }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .hero-buttons { flex-direction: row; }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0; }
    100% { transform: translateY(0); opacity: 0; }
}

/* About Section */
.about {
    background: linear-gradient(to bottom, var(--bg-gray), var(--bg-black));
}

.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid { grid-template-columns: 1fr 1fr; }
}

.features-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .features-grid { grid-template-columns: 1fr 1fr; }
}

.feature-item {
    display: flex;
    gap: 1rem;
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    background: linear-gradient(to bottom right, var(--primary-dark), var(--secondary));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
}

.feature-item h3 {
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

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

.about-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    aspect-ratio: 1; /* Makes the entire grid a perfect square */
    max-width: 500px;
    margin: 0 auto;
}

.bento-large {
    grid-row: span 2;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.bento-small {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.bento-large img, .bento-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bento-large:hover img, .bento-small:hover img {
    transform: scale(1.05);
}

/* Categories */
.categories {
    background: linear-gradient(to bottom, var(--bg-black), var(--bg-gray));
}

.categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) { .categories-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .categories-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .categories-grid { grid-template-columns: repeat(4, 1fr); } }

.category-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    background: var(--bg-card);
    backdrop-filter: blur(4px);
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-img {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-img img {
    transform: scale(1.1);
}

.category-overlay {
    position: relative;
    background: white;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.category-overlay h3 {
    font-size: 1.25rem;
    color: var(--text-main);
    font-weight: 700;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.category-card:hover .category-overlay h3 {
    color: var(--primary);
}

.category-overlay p {
    font-size: 0.875rem;
    color: var(--text-muted);
    opacity: 1;
    transform: none;
    transition: none;
}

.category-arrow {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.category-card:hover .category-arrow {
    opacity: 1;
    transform: translateY(0);
}

/* Menu Section */
.menu-section {
    background: var(--bg-gray);
}

.menu-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    transition: var(--transition);
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.filter-btn.active {
    background: linear-gradient(to right, var(--primary-dark), var(--secondary));
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.menu-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .menu-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .menu-grid { grid-template-columns: repeat(4, 1fr); } }

.menu-item {
    background: var(--bg-card);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.menu-item:hover {
    border-color: rgba(249, 115, 22, 0.5);
    transform: translateY(-5px);
}

.menu-item-img {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

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

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

.menu-price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-weight: 600;
}

.menu-item-content {
    padding: 1.25rem;
}

.menu-item-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.menu-item-desc {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-add-cart {
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(to right, var(--primary-dark), var(--secondary));
    color: white;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.menu-item:hover .btn-add-cart {
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.btn-add-cart:hover {
    background: linear-gradient(to right, #c2410c, var(--secondary-dark));
}

/* Why Choose Us */
.why-choose-us {
    background: var(--bg-black);
    position: relative;
    overflow: hidden;
}

.bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
    background-size: 40px 40px;
}

.reasons-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) { .reasons-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reasons-grid { grid-template-columns: repeat(4, 1fr); } }

.reason-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.reason-card:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
}

.reason-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.gradient-green { background: linear-gradient(to bottom right, #16a34a, #059669); }
.gradient-orange { background: linear-gradient(to bottom right, var(--primary-dark), var(--secondary)); }
.gradient-blue { background: linear-gradient(to bottom right, #2563eb, #0891b2); }
.gradient-purple { background: linear-gradient(to bottom right, #9333ea, #db2777); }

.reason-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.reason-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Contact */
.contact {
    background: linear-gradient(to bottom, var(--bg-gray), var(--bg-black));
}

.contact-grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-icon {
    width: 3.5rem;
    height: 3.5rem;
    flex-shrink: 0;
    background: linear-gradient(to bottom right, var(--primary-dark), var(--secondary));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: transform 0.3s ease;
}

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

.info-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.info-link {
    color: var(--text-muted);
    font-size: 1.125rem;
}

.info-link:hover {
    color: var(--primary);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    font-size: 1.125rem;
}

.glass-panel {
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.9));
    backdrop-filter: blur(8px);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    color: var(--text-main);
    font-family: inherit;
    transition: border-color 0.3s ease;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.map-container {
    height: 24rem;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

/* Footer */
.footer {
    background: var(--bg-black);
    border-top: 1px solid var(--border-color);
    padding-top: 4rem;
}

.footer-grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr;
    margin-bottom: 3rem;
}

@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    background: var(--primary);
    color: white;
}

.footer h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    border-radius: 12px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

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

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    color: var(--text-muted);
}

.contact-list a {
    color: var(--text-muted);
}

.contact-list a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: var(--text-muted);
}

.footer-legal a:hover {
    color: var(--primary);
}

/* Floating Cart */
.floating-cart-wrapper {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 100;
    transform: scale(0);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-cart-wrapper.visible {
    transform: scale(1);
    opacity: 1;
}

.floating-order {
    background: linear-gradient(to right, var(--primary-dark), var(--secondary));
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    box-shadow: 0 10px 25px rgba(234, 88, 12, 0.5);
    transition: transform 0.3s ease;
}

.floating-order:hover {
    transform: scale(1.05);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(234, 88, 12, 0); }
    100% { box-shadow: 0 0 0 0 rgba(234, 88, 12, 0); }
}

/* Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease-out;
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease-out;
}

.reveal-up.active, .reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: var(--delay, 0s);
}

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

@keyframes slideDown {
    from { opacity: 0; height: 0; transform: translateY(-10px); }
    to { opacity: 1; height: auto; transform: translateY(0); }
}
