html{
    --font-celtic:'Celtic', Arial, sans-serif;
    --font-arial:'Arial Rounded', Arial, sans-serif;

}

@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;
}

footer {
    background: #222;
    color: #fff;
    padding: 40px 20px;
    
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: auto;
}


.footer-section {
    flex: 1;
    min-width: 250px;
    margin: 0.7rem;
}

.footer-section h3 {
    color: #996533;
    margin-bottom: 15px;
    border-bottom: 2px solid #996533;
    display: inline-block;
    padding-bottom: 5px;
}

footer h5{
    text-decoration: underline;
    color: #996533;
    font-family: var(--font-celtic);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 8px 0;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    font-family: var(--font-arial);
}

.footer-section ul li a:hover {
    color: #996533;
}

.footer-section p a {
    color: #996533;
    text-decoration: none;
}

.footer-section p a:hover {
    text-decoration: underline;
}

.img-chiot{
    width: 10%;

}

.img-chiot img{
    width: 100%;
}

.qrcode{
    height: 45%;
}

/* Media Queries pour la responsivité */

/* Tablettes (768px - 1024px) */
@media screen and (max-width: 1024px) {
    footer {
        padding: 30px 15px;
        
    }
    
    .footer-container {
        justify-content: space-between;
    }
    
    .footer-section {
        min-width: 200px;
        margin: 0.5rem;
    }
    
    .img-chiot {
        width: 15%;
    }
}

/* Mobiles (moins de 768px) */
@media screen and (max-width: 767px) {
    footer {
        padding: 25px 10px;
        width: 32.5rem;
    }
    
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-section {
        min-width: 100%;
        margin: 1rem 0;
        text-align: center;
    }
    
    .footer-section h3 {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-section ul li {
        margin: 10px 0;
    }
    
    .img-chiot {
        width: 25%;
        margin: 1rem auto;
    }
}

/* Petits mobiles (moins de 375px) */
@media screen and (max-width: 375px) {
    footer {
        padding: 20px 8px;
    }
    
    .footer-section {
        margin: 0.8rem 0;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .footer-section ul li a,
    .footer-section p {
        font-size: 0.9rem;
    }
    
    .img-chiot {
        width: 35%;
    }
}