html{
    --font-celtic:'Celtic', Arial, sans-serif;
    --font-arial:'Arial Rounded', Arial, sans-serif;
    --btn-color: #996533;
    --bg-color-brown: #996533;
    --white: #ffffff;
    --black: #000000;
    --dark-primary: #7a502a;
    --light-primary: #c49b76;
}

@font-face {
    font-family: 'Celtic';
    src: url('../fonts/CELTG___.TTF') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Arial Rounded';
    src: url('../fonts/arlrdbd.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


header {
    color: var(--dark-primary);
    text-align: center;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

h1 {
    font-family: var(--font-celtic);
    font-size: 2.5rem;
    margin: 0;
}



h2 {
    font-family: var(--font-celtic);
    color: var(--dark-primary);
    border-bottom: 2px solid var(--bg-color-brown);
    padding-bottom: 0.5rem;
    margin-top: 2rem;
}

.toxic-foods {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 2rem;
}

.food-item {
    background-color: var(--white);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--bg-color-brown);
}

.food-item h3 {
    color: var(--dark-primary);
    margin-top: 0;
    font-family: var(--font-arial);
}

.food-item-img{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.food-item-img img{
    width: 50%;
}

.nutrition-section {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nutrition-item {
    margin-bottom: 1.5rem;
}

.nutrition-item h3 {
    color: var(--dark-primary);
    margin-bottom: 0.5rem;
    font-family: var(--font-celtic);
}

.packaging-info {
    background-color: var(--light-primary);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.packaging-info h2 {
    color: var(--white);
    border-bottom: 2px solid var(--white);
}

.packaging-info ul {
    list-style-type: none;
    padding-left: 0;
}

.packaging-info li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}




@media (max-width: 768px) {
    .toxic-foods {
        grid-template-columns: 1fr;
    }
}