@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
/*   font-family: 'Poppins', sans-serif !important;*/

/* SPAZIO PER NON COPRIRE LA PAGINA */
body {
    padding-top: 80px;
    font-family: 'Inter', sans-serif !important;
}


/* questo è il colore dell quantità*/

#cartCount {
    background-color:#ff8c00; /*ho usato lo stesso arancione di sopra*/
    color: #fff;
    padding: 4px 8px;
    border-radius: 8px;
}

/* STRISCIA ARANCIONE */
.top-bar {
    height: 8px;
    background-color: #ff8c00;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* NAVBAR FISSA */
.navbar-fixed {
    position: fixed;
    top: 8px;
    width: 100%;
    z-index: 999;
    background-color: #ffffff !important; /* fondamentale */
    box-shadow: 0 8px 20px rgba(0,0,0,0.25) !important; /* ⭐ ombra forte */
}



/*effetto underline ai menu destro:*/
/* Effetto underline animato SOLO per il menu destro */
.menu-destro .nav-link {
    position: relative;
    padding-bottom: 4px;
}

.menu-destro .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: #ff8c00; /* arancione della tua striscia */
    transition: width 0.25s ease-in-out;
}

.menu-destro .nav-link:hover::after {
    width: 100%;
}



.navbar, .nav-link {
    font-family: 'Inter', sans-serif !important;
    font-weight: 500;
    letter-spacing: -0.3px; /* stringe leggermente */
}


/*////////////////////////////////////////////////////*/
/* FOOTER SCURO */
.footer-body {
    background: #3b2a1f; /* marrone scuro elegante */
    border-top: 2px solid #5a4335;
    color: #f7d7a8;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25) !important;

    padding-top: 15px;   /* prima era 40px */
    padding-bottom: 10px; /* ridotto */
}

/* Righe più vicine */
.footer-body .row {
    margin-bottom: 10px; /* riduce spazio tra le colonne */
}

/* Titoli più compatti */
.text-footer-title {
    color: #ffb347;
    margin-bottom: 6px; /* prima era 12px */
    font-size: 15px; /* leggermente più piccolo */
}

/* Link più vicini */
.footer-link {
    color: #f7d7a8 !important;
    padding: 2px 0; /* prima era 4px */
    font-size: 14px; /* più compatto */
}

/* Testo centrale più vicino */
.footer-text {
    color: #f7d7a8;
    line-height: 1.2; /* riduce altezza delle righe */
}

/* Linea divisoria più sottile */
.footer-hr {
    border-color: #5a4335;
    margin: 10px 0; /* ridotto */
}

/* Copyright più vicino */
.footer-body .text-center.small {
    margin-top: 5px;
}
footer {
    background: #3b2a1f; /* marrone scuro */
        color: #f7d7a8;
 
    box-shadow: 0 -8px 20px rgba(0,0,0,0.25) !important; /* ⭐ ombra forte */
}

/*stipi per la sezione ricette*/
.card-modern {
    background: #ffffff; /* sfondo bianco pulito */
    border-radius: 18px;
    padding: 25px;

    /* Ombra forte e professionale */
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);

    /* Bordo più visibile */
    border: 2px solid rgba(0,0,0,0.20);
}

@keyframes fadeInAnimation {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.section-ricetta {
    background: url("../img/sfondi/carta.jpg");
    background-size: cover;
    border-radius: 18px;
    padding: 25px;
}

