body{
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: rgba(221, 221, 215, 0.945);
}
header{
    background-color: #442f27;
    color: rgba(221, 221, 215, 0.945);
    padding: 1rem;
    text-align: center;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
}

header h1 {
    margin: 0 auto;
    font-size: 80px;
    background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 1px 1px 2px #00000070;
    font-weight: bold;
    font-family: 'Georgia', serif;
}



nav{
    background: #634639;
    padding: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    flex-grow: 1;
}
nav a{
    color: white;
    text-decoration: none;
    font-weight: bold;
}
.section{
    padding: 2rem;
    text-align: center;
    
}

.description{
    padding: 2rem;
    text-align: center;
}
.products{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}
.product{
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    width: 250px;
    padding: 1rem;
    transition: transform 0.3s ease ;
}
.product:hover{
    transform: scale(1.05);

}
.product img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}
.btn{
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: #634639;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
footer{
    background: #634639;
    color: white;
    text-align: center;
    padding-top: 2rem;
}

/* Footer */

.footer-wrapper{
    display: block;
    flex-direction: row;
    align-items: center;


    
}

.footer-text{
    padding-left: 5rem;
}

.footer-elem {
    padding: 1rem;
    margin: 0 4rem;
    
}

.footer-elem a{
    text-decoration: none;
    color: #746a35;
}

.footer-elem img{
    width: 1.5rem;
    height: 1.5rem;
    background-color: var(--text-color)
}
.clicked {
    background-color: red;
}

.no-model {
    background-color: aquamarine;
    color: #000000;
}


.logo img {
    max-width: 9rem;
    height: auto;
    border-radius: 15%;

}

.section h4{
    color: #634639;
    text-align: center;
    padding: 2rem;
}

.hidden{
    display: none;
}
.hidden{
    display: none;
}

/* ===== Contact Blocks Styling ===== */

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
}

.contact-block {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 1rem 1.5rem;
    text-align: center;
    width: 250px;
    transition: transform 0.3s ease;
}

.contact-block:hover {
    transform: scale(1.05);
}

.contact-block img {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
}

.contact-block a {
    display: block;
    font-weight: bold;
    color: #634639;
    text-decoration: none;
    font-size: 1rem;
    word-break: break-word;
}

/* ===== Responsive Design ===== */

/* Petits écrans */
@media (max-width: 600px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-block {
        width: 90%;
    }
}

/* Moyens écrans */
@media (min-width: 601px) and (max-width: 1024px) {
    .contact-container {
        justify-content: space-around;
    }

    .contact-block {
        width: 45%;
    }
}

/* Grands écrans */
@media (min-width: 1025px) {
    .contact-block {
        width: 250px;
    }
}




/* ========== RESPONSIVE DESIGN ========== */

/* Petits écrans : Smartphones (max-width: 600px) */
@media (max-width: 600px) {
    header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    header h1 {
        font-size: 40px;
        margin-top: 1rem;
    }

    nav {
        flex-direction: column;
        gap: 1rem;
    }

    .products {
        flex-direction: column;
        align-items: center;
    }

    .product {
        width: 90%;
    }

    .footer-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .footer-text {
        padding-left: 0;
        margin-bottom: 1rem;
        text-align: center;
    }

    .footer-elem {
        margin: 1rem;
    }

    .logo img {
        max-width: 6rem;
    }
}

/* Moyens écrans : Tablettes (601px à 1024px) */
@media (min-width: 601px) and (max-width: 1024px) {
    header h1 {
        font-size: 60px;
    }

    nav {
        gap: 1.5rem;
    }

    .product {
        width: 45%;
    }

    .footer-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Grands écrans : Desktop (au-dessus de 1024px) */
@media (min-width: 1025px) {
    .product {
        width: 250px;
    }
}
