/* Custom Properties / Tokens */
:root {
    --bg-dark: #0D0D0D;
    --bg-darker: #050505;
    --bg-card: #1A1A1A;
    --primary-yellow: #F2B705;
    --primary-yellow-hover: #D9981E;
    --secondary-red: #D92525;
    --text-light: #F5F5F5;
    --text-muted: #A0A0A0;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.text-center {
    text-align: center;
}

.divider {
    width: 60px;
    height: 4px;
    background-color: var(--primary-yellow);
    margin: 20px 0;
    border-radius: 2px;
}

.divider.center {
    margin: 20px auto;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary-yellow);
    color: var(--bg-dark);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: var(--transition);
    border: 2px solid var(--primary-yellow);
    box-shadow: 0 4px 15px rgba(242, 183, 5, 0.3);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-yellow);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 5px 5% 0px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    padding: 2px 5% 0px 5%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.logo img {
    height: 120px;
    object-fit: contain;
    transition: var(--transition);
}

.navbar.scrolled .logo img {
    height: 60px;
}

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

.nav-links li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}

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

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

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

.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('../assets/hero_bg.png') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(5,5,5,0.9) 0%, rgba(13,13,13,0.6) 50%, rgba(5,5,5,0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-light);
}

.hero-content h1 span {
    color: var(--primary-yellow);
}

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

/* Sections */
.section {
    padding: 100px 0;
}

/* About Section */
.about-section {
    background-color: var(--bg-dark);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

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

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

.menu-card {
    background-color: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.menu-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-yellow);
    box-shadow: 0 15px 40px rgba(242, 183, 5, 0.1);
}

.card-img {
    height: 250px;
    overflow: hidden;
    position: relative;
    background-color: #000;
}

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

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

.card-info {
    padding: 30px;
}

.card-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-yellow);
}

.card-info p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

.footer-brand h3 {
    color: var(--primary-yellow);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-logo {
    height: 100px;
    width: auto;
    max-width: 100%;
    margin-bottom: 15px;
    object-fit: contain;
    display: block;
    transition: var(--transition);
}

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

.footer-brand p {
    color: var(--text-muted);
}

.footer h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.footer-social a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 10px;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background-color: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
}

/* WhatsApp Styles */
.whatsapp-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-link i {
    color: #25D366;
    font-size: 1.2rem;
}

.whatsapp-link:hover {
    color: #25D366;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}
