:root {
    --bg-color: #121212;
    --card-bg: #1E1E1E;
    --accent: #FF5722;
    --accent-hover: #E64A19;
    --text-main: #FFFFFF;
    --text-muted: #B3B3B3;
    --glass-bg: rgba(30, 30, 30, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 2px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--accent);
}

.cart-btn {
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s;
}

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

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--accent);
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(18,18,18,0.5) 0%, rgba(18,18,18,0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeIn 1.5s ease-out;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.8);
}

.hero-content p {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-style: italic;
}

.btn-primary {
    background-color: var(--accent);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.6);
}

/* Section Shared */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--accent);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Menu Section */
.menu-section {
    padding: 100px 5vw;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.card {
    background-color: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 87, 34, 0.2);
}

.card-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    border-bottom: 2px solid var(--accent);
}

.card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.price {
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 15px;
}

.description {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
    flex-grow: 1;
}

.options {
    margin-bottom: 20px;
}

.options label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 5px;
    margin-top: 10px;
}

.options select {
    width: 100%;
    padding: 10px;
    background-color: #2A2A2A;
    color: white;
    border: 1px solid #333;
    border-radius: 5px;
    outline: none;
    font-family: inherit;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 5px;
    background-color: #2A2A2A;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #333;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    margin: 0;
    cursor: pointer;
    color: white;
}

.checkbox-group input[type="checkbox"] {
    accent-color: var(--accent);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.btn-secondary {
    width: 100%;
    padding: 12px;
    background-color: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: auto;
}

.btn-secondary:hover {
    background-color: var(--accent);
    color: white;
}

/* Location Section */
.location-section {
    padding: 80px 5vw;
    background-color: #0A0A0A;
}

.location-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.info-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    min-width: 300px;
}

.info-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.info-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.info-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.info-card .note {
    margin-top: 15px;
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    background-color: #050505;
    color: #666;
    font-size: 0.9rem;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--card-bg);
    box-shadow: -5px 0 30px rgba(0,0,0,0.8);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
}

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

.cart-header {
    padding: 25px;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-size: 1.5rem;
}

.close-cart-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.close-cart-btn:hover {
    color: var(--accent);
}

.cart-items {
    padding: 25px;
    flex-grow: 1;
    overflow-y: auto;
}

.empty-cart {
    text-align: center;
    color: var(--text-muted);
    margin-top: 50px;
}

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

.item-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.item-options {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.item-price {
    color: var(--accent);
    font-weight: bold;
    margin-top: 5px;
}

.remove-item {
    background: none;
    border: none;
    color: #ff3333;
    cursor: pointer;
    font-size: 1.2rem;
}

.cart-footer {
    padding: 25px;
    background-color: #1A1A1A;
    border-top: 1px solid #333;
}

.payment-method {
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-method label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.payment-select {
    padding: 8px;
    background-color: #2A2A2A;
    color: white;
    border: 1px solid #333;
    border-radius: 5px;
    outline: none;
    font-family: inherit;
    font-size: 0.9rem;
}

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

.btn-whatsapp {
    width: 100%;
    padding: 15px;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s;
}

.btn-whatsapp:hover {
    background-color: #1EBE55;
}

.btn-whatsapp:disabled {
    background-color: #555;
    cursor: not-allowed;
}

/* Cart Overlay */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.show {
    opacity: 1;
    visibility: visible;
}

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

/* Media Queries */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .navbar {
        padding: 15px 20px;
    }

    nav ul {
        display: none; /* Can be expanded to hamburger menu later */
    }
}
