:root {
    --bg-yellow: #f8c032;
    --brand-red: #c91c1c;
    --brand-dark: #1a1a1a;
    --green-offer: #1e6d32;
    --card-bg: #fff8e7;
}



/* Pozitionare Header Hero */
.hero {
    position: relative; /* Permite poziționarea absolută a mascotei în colț */
    padding-top: 40px;
}

/* Stil Mascote Stânga Sus */
.mascots-top-left {
    position: absolute;
    top: 15px;
    left: 20px;
    z-index: 10;
}

.mascot-img {
    height: 90px; /* Ajustează înălțimea în funcție de preferințe */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.2)); /* Un efect fin de umbră */
}

/* Aliniere Titlu și Slogan pe aceeași linie */
.hero-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap; /* Se așează frumos pe 2 rânduri doar pe telefoane foarte mici */
    margin-bottom: 10px;
}

.hero-brand .logo {
    margin: 0;
    font-size: 2.5rem;
}

.hero-brand .tagline {
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffca28; /* Culoare accent (galben/auriu) sau culoarea actuală a sloganului */
}

.brand-separator {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Ajustări pentru telefoane (Responsive) */
@media (max-width: 768px) {
    .mascots-top-left {
        position: static; /* Nu mai sta suprapus pe ecran mic */
        text-align: center;
        margin-bottom: 10px;
    }
    
    .mascot-img {
        height: 70px;
    }

    .hero-brand {
        flex-direction: column; /* Pe mobil le pune una sub alta ca să nu aglomereze ecranul */
        gap: 5px;
    }

    .brand-separator {
        display: none; /* Ascunde punctele separatoare pe mobil */
    }
}





* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-yellow);
    color: var(--brand-dark);
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
.hero { text-align: center; padding: 30px 20px; }
.logo { font-family: 'Fredoka', cursive; font-size: 3.2rem; color: var(--brand-red); text-shadow: 2px 2px 0px #fff; }
.tagline { font-family: 'Fredoka', cursive; font-size: 1.4rem; background-color: var(--green-offer); color: #fff; display: inline-block; padding: 5px 15px; border-radius: 5px; margin: 10px 0; }
.badge { font-weight: 600; font-style: italic; margin-bottom: 20px; }

/* .btn-call {
    display: inline-block;
    background-color: var(--brand-red);
    color: #fff;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}
.btn-call:hover { transform: scale(1.05); } */

.btn-call {
    display: inline-block;
    background-color: #2e7d32; /* Verde vizibil */
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 50px; /* Colțuri rotunjite tip pilulă */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s, background-color 0.2s;
    margin: 15px 0;
    
    /* Previne selectarea textului la apăsare repetată pe mobil */
    -webkit-user-select: none;
    user-select: none;
}
.btn-call:hover { transform: scale(1.05); }
/* Efect vizual când se apasă cu degetul pe telefon */
.btn-call:active {
    transform: scale(0.96);
    background-color: #1b5e20;
}




.address { margin-top: 15px; font-weight: 600; }

/* Oferte */
.offers-section { background-color: var(--green-offer); color: #fff; padding: 20px 0; text-align: center; }
.offers-section h2 { font-family: 'Fredoka', cursive; margin-bottom: 15px; color: #fff; }
.offers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px; }
.offer-card { background: rgba(255, 255, 255, 0.15); padding: 10px; border-radius: 8px; font-weight: 600; }

/* Grid Meniu Pizza */
h2 { font-family: 'Fredoka', cursive; text-align: center; margin: 30px 0 20px 0; color: var(--brand-red); font-size: 2.2rem; }

.pizza-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.pizza-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s;
}

.pizza-card:hover {
    transform: translateY(-5px);
}

.img-box {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #eee;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pizza-details {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.pizza-details h3 {
    font-family: 'Fredoka', cursive;
    color: var(--brand-red);
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.ingredients {
    font-size: 0.88rem;
    color: #666;
    margin-bottom: 15px;
}

.price-tag {
    display: flex;
    justify-content: space-between;
    background: var(--card-bg);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.95rem;
    border-left: 4px solid var(--brand-red);
}

/* Livrare & Footer */
.delivery-box { background: var(--card-bg); border: 2px dashed var(--brand-red); padding: 20px; border-radius: 10px; margin-top: 30px; }
.delivery-box h3 { font-family: 'Fredoka', cursive; color: var(--brand-red); margin-bottom: 10px; }
footer { text-align: center; padding: 25px; background: #1a1a1a; color: #fff; margin-top: 40px; }

/* Bara Fixă Jos pe Mobil */
@media (max-width: 768px) {
    .bottom-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 60px;
        background: #fff;
        display: flex;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
        z-index: 999;
    }

    .nav-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 1rem;
        text-decoration: none;
        border: none;
    }

    .btn-call-nav { background: #2e7d32; color: #fff; }
    .btn-cart-nav { background: #d32f2f; color: #fff; cursor: pointer; }
}

@media (min-width: 769px) {
    .bottom-nav { display: none; }
}

/* Modal Popup Coș */
.cart-modal {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.cart-content {
    background: #fff;
    width: 90%;
    max-width: 500px;
    padding: 20px;
    border-radius: 8px;
    max-height: 90vh;
    overflow-y: auto;
}

.cart-header { display: flex; justify-content: space-between; align-items: center; }
.close-btn { font-size: 2rem; border: none; background: none; cursor: pointer; }
.cart-item { display: flex; justify-content: space-between; margin-bottom: 10px; border-bottom: 1px solid #eee; padding-bottom: 5px; }
.btn-send-order { width: 100%; padding: 12px; background: #2e7d32; color: #fff; font-size: 1.1rem; border: none; border-radius: 4px; font-weight: bold; margin-top: 10px; }

.map-link {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.map-link:hover {
    text-decoration: underline;
    color: #1a73e8;
}

.map-icon {
    width: 18px;
    height: 18px;
    vertical-align: middle;
}

/* Containerul și link-ul de adresă */
.address-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

.address-link {
    display: inline-flex;
    align-items: center;
    gap: 12px; /* Spațiul dintre imagine și text */
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
}

.address-link:hover {
    transform: scale(1.02);
}

/* Stilul imaginii harta.png conform schiței (rotundă/mare în stânga) */
.map-thumb {
    width: 65px;         /* Ajustează dimensiunea dacă dorești mai mare/mică */
    height: 65px;
    border-radius: 50%;  /* Face imaginea rotundă ca în schiță */
    object-fit: cover;
    border: 2px solid #2e7d32; /* Poți schimba culoarea bordurii */
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

/* Stilul textului de adresă */
.address-text {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
}

.address-link:hover .address-text {
    color: #1a73e8; /* Se colorează albastru când se trece cu cursorul */
    text-decoration: underline;
}