/* Règles générales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}
a {
    text-decoration: none;
}
section {
    padding: 3%; /* Marges latérales et verticales de chaque section */
}
button {
    padding: 15px;
    font-size: 2em;
    border: solid 3px #172c29;
    border-radius: 35px;
    background-color: transparent;
    color: #172c29;
    cursor: pointer;
}
button:hover {
    transform: scale(1.1);
    transition: all 0.2s ease-in-out;
}

/* Version Téléphone */
/* Corps de page */
body {
    width: 100%;
    background-color: #e0d9cf;

}

/* Section Collection */
.Collection {
    width: 100%;
    background-color: #172c29;
}
.Collection-title {
    margin: 0 0 3% 1%;
    font-size: 70px;
    font-family: "Cormorant", serif;
    color: whitesmoke;

}
.Collection-card-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
}
.card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: #e0d9cf;
}
.card-image {
    width: 100%;
    padding: 3%;
}
.card-info-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 3%;
}
.card-title {
    text-align: center;
    font-family: "Cormorant", serif;
    font-size: 45px;
    margin: 0 0 5% 0;
}
.card-button {
    width: 60%;
    margin: 0 0 3% 0;
    padding: 15px;
    font-size: 30px;
    text-align: center;
    color: #172c29;
    border: solid 3px #172c29;
    border-radius: 50px;
}
    /* Animations */
    .card-button:hover {
        border: solid 3px #172c29;
        background-color: #172c29;
        color: #bdb2a3;
    }
    .card-button:active {
        border: solid 3px #172c29;
        background-color: #172c29;
        color: #bdb2a3;
    }





/* Version Tablette */
@media screen and (min-device-width:768px) {
/* Section Collection */
.Collection {
    width: 100%;
}
.Collection-title {
    margin: 0 0 3% 1%;
    font-size: 50px;
}
.Collection-card-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}
.card {
    width: 100%;
    min-width: 180px;        
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.card-image {
    width: 100%;
    padding: 3%;
}
.card-info-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 3%;
}
.card-title {
    width: 85%;
    text-align: center;
    font-size: 25px;
    margin: 0 0 5% 0;
}
.card-button {
    width: fit-content;
    margin: 0 0 3% 0;
    padding: 10px;
    font-size: 15px;
    text-align: center;
    border: solid 2px #172c29;
    border-radius: 50px;
}
    /* Animations */
    .card-button:hover {
        border: solid 2px #172c29;
        color: #bdb2a3;
    }
    .card-button:active {
        border: solid 2px #172c29;
        color: #bdb2a3;
    }
}








/* Version Desktop */
@media screen and (min-device-width:1024px) {
/* Section Collection */
.Collection {
    width: 100%;
}
.Collection-title {
    margin: 10vh 0 2% 1%;
    font-size: 40px;
}
.Collection-card-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    padding: 0 10%;
}
.card {
    width: 100%;
    min-width: 180px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.card-image {
    width: 100%;
    padding: 3%;
}
.card-info-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}
.card-title {
    width: 80%;
    text-align: center;
    font-size: 15px;
    margin: 0 0 3% 0;
}
.card-button {
    width: fit-content;
    margin: 0 0 10px 0;
    padding: 5px 10px;
    font-size: 10px;
    text-align: center;
    border: solid 1px #172c29;
    border-radius: 50px;
}
    /* Animations */
    .card-button:hover {
        border: solid 1px #172c29;
        color: #bdb2a3;
    }
    .card-button:active {
        border: solid 1px #172c29;
        color: #bdb2a3;
    }
}





/* Version 4K */
@media screen and (min-device-width:2560px) {
/* Section Collection */
.Collection {
    width: 100%;
}
.Collection-title {
    margin: 10vh 0 2% 1%;
    font-size: 50px;
}
.Collection-card-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    padding: 0 10%;
}
.card {
    width: 100%;
    min-width: 180px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.card-image {
    width: 100%;
    padding: 3%;
}
.card-info-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}
.card-title {
    width: 80%;
    text-align: center;
    font-size: 25px;
    margin: 0 0 3% 0;
}
.card-button {
    width: fit-content;
    margin: 0 0 10px 0;
    padding: 5px 10px;
    font-size: 15px;
    text-align: center;
    border: solid 1px #172c29;
    border-radius: 50px;
}
    /* Animations */
    .card-button:hover {
        border: solid 1px #172c29;
        color: #bdb2a3;
    }
    .card-button:active {
        border: solid 1px #172c29;
        color: #bdb2a3;
    }
}