/* === STILI GENERALI === */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background-color: #f8f1e6;
    color: #4a3e2e;
    margin: 0;
    line-height: 1.6;
}

.container {
    margin: 0 auto;
    width: 100%;
    padding: 20px;
}

/* Variante per le pagine di info */
.container-info {
    max-width: 800px;
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Variante per la home page */
.container-home {
    text-align: center;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 95vh;
}

h1, h2 {
    font-family: 'Arial Black', Gadget, sans-serif;
    text-align: center;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

h2 {
    font-size: 1.8em;
    margin-top: 30px;
    border-bottom: 2px solid #d89f41;
    padding-bottom: 5px;
    color: #3e4a2e;
}

p {
    font-size: 1.1em;
    margin-bottom: 15px;
}

ul {
    padding-left: 25px;
}

li {
    padding-left: 10px;
    margin-bottom: 8px;
}


/* === CLASSI DI UTILITÀ === */

/* Colori Titoli Categorie */
.title-carb { color: #c27c3e; }
.title-protein { color: #a63c3c; }
.title-veg { color: #3e8a4e; }
.title-fruit { color: #d94a7b; }
.title-ingredient { color: #3e4a2e; }
.title-apple { color: #a63c3c; }
.title-pear { color: #bfa640; }
.title-tomato { color: #d93025; }
.title-legumes { color: #8c6d36; }


/* Stili Liste Ingredienti */
.list-style-potato { list-style-type: '🥔'; }
.list-style-carrot { list-style-type: '🥕'; }
.list-style-apple { list-style-type: '🍎'; }
.list-style-pear { list-style-type: '🍐'; }
.list-style-tomato { list-style-type: '🍅'; }
.list-style-legumes { list-style-type: '🌱'; }


/* === COMPONENTI === */

/* Header (Home) */
.header-area {
    position: relative;
    margin-bottom: 40px;
}
.header-emblem {
    display: block;
    margin: 0 auto;
    max-width: 60%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Fun Fact Box */
.fun-fact {
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    font-style: italic;
}
.fun-fact p {
    margin: 0;
}
.fun-fact-carb { background-color: #f0eada; border-left: 5px solid #d89f41; }
.fun-fact-veg { background-color: #fdecd9; border-left: 5px solid #d95b29; }
.fun-fact-fruit { background-color: #f0eada; border-left: 5px solid #d89f41; }
.fun-fact-tomato { background-color: #fdeceb; border-left: 5px solid #d93025; }
.fun-fact-legumes { background-color: #f5f0e4; border-left: 5px solid #8c6d36; }


/* === NAVIGAZIONE === */

/* Menu Principale (Home) */
.nav-menu {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}
.nav-menu a {
    font-family: 'Arial Black', Gadget, sans-serif;
    text-decoration: none;
    color: #3e4a2e;
    font-size: 1.1em;
    padding: 8px 15px;
    border-radius: 8px;
    transition: background-color 0.3s, color 0.3s;
    border: 2px solid #3e4a2e;
}
.nav-menu a:hover {
    background-color: #3e4a2e;
    color: #fff;
}

/* Navigazione Ingredienti (Pagine Categoria) */
.ingredient-nav {
    margin-bottom: 30px;
}
.ingredient-nav a {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    margin: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}
.btn-carb { background-color: #c27c3e; }
.btn-carb:hover { background-color: #a16630; }
.btn-protein { background-color: #a63c3c; }
.btn-protein:hover { background-color: #852d2d; }
.btn-veg { background-color: #3e8a4e; }
.btn-veg:hover { background-color: #2d6a3a; }
.btn-fruit { background-color: #d94a7b; }
.btn-fruit:hover { background-color: #b83b64; }

/* Link di Navigazione (Indietro / Home) */
.nav-links {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    flex-wrap: wrap;
    gap: 15px;
}
.nav-links a, .home-link {
    font-size: 1.2em;
    color: #3e4a2e;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
}
.nav-links a:hover, .home-link:hover {
    text-decoration: underline;
}
.home-link {
    display: block;
    margin-top: 30px;
}


/* === MEDIA QUERY === */
@media (max-width: 768px) {
    .header-emblem {
        max-width: 80%;
    }
    h1 {
        font-size: 2em;
    }
    h2 {
        font-size: 1.5em;
    }
    .nav-menu {
        flex-direction: column;
        align-items: center;
    }
}
