@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

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

body {
    font-family: 'Poppins', sans-serif;
    background: #0f0f0f;
    color: #e5e5e5;
    line-height: 1.6;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15,15,15,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #222;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid #f59e0b;
}

.logo h1 {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
}

.logo p {
    font-size: 0.75rem;
    color: #f59e0b;
    margin-top: -6px;
}

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

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #f59e0b;
}

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

.search-container {
    position: relative;
}

.search-input {
    background: #1a1a1a;
    border: 1px solid #333;
    color: white;
    padding: 0.7rem 1rem 0.7rem 2.8rem;
    border-radius: 999px;
    width: 220px;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
}

.cart-btn, .admin-btn {
    background: #1a1a1a;
    border: 1px solid #333;
    color: white;
    padding: 0.7rem 1.3rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    transition: all 0.25s;
}

.cart-btn:hover, .admin-btn:hover {
    background: #222;
    border-color: #555;
}

#cart-count {
    background: #f59e0b;
    color: black;
    font-size: 0.75rem;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -6px;
    right: -6px;
}

/* Hero */
.hero {
    height: 100vh;
    min-height: 720px;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.85)),
                url('https://images.unsplash.com/photo-1513104890138-7c749659a591?q=80&w=2000');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 900px;
    padding: 0 1.5rem;
}

.hero-logo {
    width: 120px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 4px solid #f59e0b;
}

.hero h1 {
    font-size: 5.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -2px;
}

.tagline {
    font-size: 2.2rem;
    color: #f59e0b;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-primary, .btn-whatsapp, .btn-call, .btn-outline {
    padding: 1rem 2.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-primary {
    background: #f59e0b;
    color: black;
    border: none;
}

.btn-primary:hover {
    background: #d97706;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
}

.btn-whatsapp:hover {
    background: #20b358;
}

.btn-call {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    text-decoration: none;
}

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

.btn-outline {
    background: transparent;
    border: 1px solid #555;
    color: white;
}

.btn-outline:hover {
    border-color: #888;
}

.location-info {
    font-size: 1.1rem;
    color: #ccc;
    margin-top: 1.5rem;
}

.map-pin {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
}

.map-pin:hover {
    background: rgba(255,255,255,0.15);
}

/* Menu Section */
.menu-section {
    padding: 8rem 2rem 6rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.section-label {
    color: #f59e0b;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.95rem;
}

h2 {
    font-size: 3rem;
    font-weight: 700;
}

.category-tabs {
    display: flex;
    gap: 0.8rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.category-tab {
    padding: 0.7rem 1.4rem;
    background: #1a1a1a;
    border-radius: 999px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s;
}

.category-tab.active,
.category-tab:hover {
    background: #f59e0b;
    color: black;
    font-weight: 600;
}

.menu-search {
    width: 100%;
    max-width: 500px;
    padding: 1.1rem 1.5rem;
    background: #111;
    border: 1px solid #222;
    border-radius: 999px;
    color: white;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.search-bar-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto 2.5rem;
}

.search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: #f59e0b;
    color: black;
    border: none;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.8rem;
}

.menu-card {
    background: #111;
    border-radius: 1.2rem;
    overflow: hidden;
    transition: all 0.35s;
}

.menu-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.menu-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s;
}

.menu-card:hover img {
    transform: scale(1.08);
}

.card-content {
    padding: 1.4rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.card-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #f59e0b;
    margin: 1rem 0;
}

.add-btn {
    background: #f59e0b;
    color: black;
    border: none;
    padding: 0.8rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.25s;
}

.add-btn:hover {
    background: #d97706;
}

/* Modal styles */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #111;
    border-radius: 1.5rem;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-btn {
    background: none;
    border: none;
    font-size: 2.2rem;
    color: #888;
    cursor: pointer;
}

.cart-items {
    padding: 1.5rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #222;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid #222;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cart-buttons {
    display: flex;
    gap: 1rem;
}

.checkout-content {
    padding: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #aaa;
    font-size: 0.95rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: #0a0a0a;
    border: 1px solid #222;
    border-radius: 0.8rem;
    color: white;
    font-size: 1rem;
}

.btn-whatsapp-large {
    background: #25D366;
    color: white;
    padding: 1.1rem;
    font-size: 1.1rem;
    width: 100%;
    margin-top: 1rem;
}

.hint {
    text-align: center;
    margin-top: 1rem;
    color: #888;
    font-size: 0.9rem;
}

/* Reviews */
.reviews-section {
    padding: 6rem 2rem;
    background: #0a0a0a;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.review-card {
    background: #111;
    padding: 2rem;
    border-radius: 1.2rem;
    border: 1px solid #222;
}

.stars {
    color: #f59e0b;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
}

.review-author {
    margin-top: 1.5rem;
    color: #888;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 4.5rem; }
    .tagline { font-size: 1.8rem; }
}

@media (max-width: 768px) {
    .nav-container { flex-wrap: wrap; gap: 1rem; }
    .nav-actions { width: 100%; justify-content: center; }
    .search-input { width: 180px; }
    .hero h1 { font-size: 3.8rem; }
    .hero-buttons { flex-direction: column; }
}
