/* --- STIL GENERAL --- */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
}

body { 
    background-color: #0c0c0c; 
    color: #ffffff; 
    scroll-behavior: smooth; 
}

/* --- HEADER & NAV --- */
header { 
    background: #000; 
    padding: 1.5rem 5%; 
    border-bottom: 2px solid #ff0000; 
    position: sticky; 
    top: 0; 
    z-index: 100; 
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
    transition: 0.3s;
}

.logo img:hover {
    transform: scale(1.1);
}

.mobile-status-bar {
    flex-grow: 1;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: inherit;
}

/* --- HERO SECTION --- */
.hero { 
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.85)), 
                url('https://images.unsplash.com/photo-1561651823-34feb02250e4?auto=format&fit=crop&w=1920&q=80');
    background-size: cover; 
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 5%;
    text-align: center;
    border-bottom: 3px solid #ff0000;
}

.hero h1 { 
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 0.9;
    margin-bottom: 20px;
    text-shadow: 3px 3px 0px #ff0000;
}

.hero p { 
    font-size: 1.3rem; 
    color: #ffffff; 
    margin-bottom: 40px; 
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.btn-call { 
    background: #ff0000; 
    color: white; 
    padding: 20px 45px; 
    text-decoration: none; 
    border-radius: 50px;
    font-weight: 900; 
    font-size: 1.1rem;
    display: inline-block; 
    transition: 0.4s; 
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 20px rgba(255, 0, 0, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 40px rgba(255, 0, 0, 0.7); }
    100% { transform: scale(1); box-shadow: 0 0 20px rgba(255, 0, 0, 0.4); }
}

.btn-call:hover { 
    background: #ffffff; 
    color: #ff0000; 
    transform: translateY(-5px);
}

/* --- MENIU GRID --- */
#meniu { padding: 80px 5%; max-width: 1200px; margin: 0 auto; text-align: center; }
#meniu h2 { font-size: 2rem; margin-bottom: 40px; text-transform: uppercase; letter-spacing: 3px; }

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

.menu-item { 
    background: #1a1a1a; 
    border-radius: 15px; 
    overflow: hidden;
    border: 1px solid #2a2a2a;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.menu-item:hover { transform: translateY(-10px); border-color: #ff0000; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }

.menu-img { width: 100%; height: 200px; object-fit: cover; border-bottom: 2px solid #ff0000; }
.menu-content { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }

.menu-item h3 { font-size: 0.95rem; line-height: 1.4; color: #ffffff; margin-bottom: 15px; min-height: 50px; text-transform: uppercase; text-align: center;}
.price { color: #ff0000; font-weight: bold; font-size: 1.5rem; margin-bottom: 20px; display: block; text-align: center;}

.order-btn { 
    background-color: #ff0000; color: #fff; text-decoration: none; padding: 12px; border-radius: 6px; 
    font-weight: bold; text-align: center; transition: 0.3s; margin-top: auto; text-transform: uppercase; font-size: 0.85rem;
}
.order-btn:hover { background-color: #ffffff; color: #000; }

.extra-items { display: none; margin-top: 30px; }
.toggle-btn { 
    margin-top: 50px; background: none; border: 2px solid #ff0000; color: #ff0000; 
    padding: 15px 40px; font-weight: bold; cursor: pointer; border-radius: 50px; 
    transition: 0.3s; text-transform: uppercase; letter-spacing: 1px;
}
.toggle-btn:hover { background: #ff0000; color: white; box-shadow: 0 0 20px rgba(255, 0, 0, 0.3); }

/* --- CONTACT SECTION --- */
#contact { 
    padding: 80px 5%; 
    background: #000000; 
    text-align: center; 
    border-top: 1px solid #1a1a1a;
}

#contact h2 { color: #ff0000; margin-bottom: 40px; text-transform: uppercase; letter-spacing: 2px; }

.info { 
    max-width: 800px; margin: 0 auto; background: #111111; padding: 40px; 
    border-radius: 20px; border: 1px solid #222; display: flex; flex-wrap: wrap;
    justify-content: space-around; gap: 20px; box-shadow: 0 10px 30px rgba(255, 0, 0, 0.05);
}

.info-item { flex: 1; min-width: 200px; padding: 20px; transition: 0.3s; }
.info-item:hover { background: #1a1a1a; border-radius: 15px; }
.info-item i { font-size: 2rem; color: #ff0000; display: block; margin-bottom: 15px; font-style: normal; }
.info-item p { font-size: 0.8rem; color: #888; text-transform: uppercase; margin-bottom: 5px; }
.info-item span { font-size: 1rem; color: #ffffff; font-weight: bold; display: block; }
.info-item a { text-decoration: none; color: inherit; }
.info-item a:hover span { color: #ff0000; }

/* --- HARTA --- */
.map-container { max-width: 800px; margin: 30px auto 0; border-radius: 20px; overflow: hidden; border: 1px solid #222; }
.map-container iframe { width: 100%; height: 350px; border: 0; display: block; filter: grayscale(1) invert(0.9) contrast(1.2); transition: 0.5s ease; }
.map-container:hover iframe { filter: grayscale(0) invert(0) contrast(1); }

/* --- FOOTER --- */
footer { background: #000; color: #555; text-align: center; padding: 30px; font-size: 0.9rem; border-top: 1px solid #1a1a1a; }

/* --- WHATSAPP HAMBURGER --- */
.whatsapp-hamburger { position: fixed; bottom: 20px; right: 20px; width: 80px; height: 80px; z-index: 1000; cursor: pointer; transition: 0.3s; }
.hamburger-circle { width: 100%; height: 100%; background: url('https://cdn-icons-png.flaticon.com/512/3075/3075977.png'); background-size: cover; border-radius: 50%; border: 3px solid #ff0000; position: relative; }
.whatsapp-logo-overlay { position: absolute; bottom: -5px; right: -5px; width: 35px; height: 35px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 2px solid #fff; }
.whatsapp-logo-overlay img { width: 20px; height: 20px; }
.whatsapp-hamburger:hover { transform: scale(1.1) rotate(5deg); }

/* --- RESPONSIVE LOGIC --- */
@media (max-width: 768px) {
    .nav-links {
        display: none; 
        flex-direction: column;
        position: absolute;
        top: 100px;
        left: 0;
        width: 100%;
        background: #111;
        z-index: 1000;
        border-top: 1px solid #333;
    }

    .nav-links.active { display: flex; }
    .nav-links li { margin: 0; }
    .nav-links li a { display: block; padding: 20px; color: #ffffff !important; text-align: center; border-bottom: 1px solid #222; }

    .menu-toggle { display: block; cursor: pointer; z-index: 1001; }
    .menu-toggle .bar { display: block; width: 28px; height: 3px; margin: 6px 0; background-color: #fff; border-radius: 3px; transition: 0.3s; }
    .menu-toggle.open .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); background-color: #ff0000; }
    .menu-toggle.open .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.open .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); background-color: #ff0000; }
}

@media (min-width: 769px) {
    .menu-toggle { display: none; }
    .nav-links { display: flex; list-style: none; gap: 20px; }
    .nav-links li a { color: #fff; text-decoration: none; transition: 0.3s; }
    .nav-links li a:hover { color: #ff0000; }
}

footer {
    background: #1a1a1a;
    padding: 40px 20px;
    text-align: center;
    color: white;
}

.facebook-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1877F2; /* Culoarea oficială Facebook */
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease;
    margin-top: 10px;
}

.facebook-link:hover {
    transform: scale(1.05);
    background: #155db2;
}
.partners a:hover {
    text-decoration: underline;
    opacity: 1;
}