@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lora:ital,wght@0,400..700;1,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lora:ital,wght@0,400..700;1,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth;
    margin: 0;
}

:root {
    --Txt-marron: #412520;
    --Txt-blanc: #F4EBE6;
    --Lora: "Lora", serif;
    --Great_Vibes: "Great Vibes", cursive;
    --Poppins: "Poppins", sans-serif;
    --Inter: "Inter", sans-serif;
    --semi-bold: 600;
    --medium: 500;
    --bold: 700;
    --regular: 400;
}

.specialiter-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../images/specialiter/specialite.png);
    height: 500px;
    object-fit: contain;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-direction: column;
    position: relative;
    padding: 60px 0px 40px 0px;
}

.specialiter-detail-img {
    display: block;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-direction: column;
    max-width: 1020px;
    width: 100%;
    max-height: 400px;
}

.specialiter-txt img {
    display: block;
    width: 250px;
    height: auto;
    max-height: 21px;
}

.star-strape {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    gap: 7px;
    width: 250px;
}

.star-strape-2 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 7px;
    width: 250px;
}

.bxs-star {
    font-size: 1.3rem;
    color: #F5E1BD;
}

.strape {
    background: linear-gradient(-90deg, #ECCFAE 0%, rgba(125, 92, 77, 2%) 100%);
    height: 6px;
    width: 100%;
    border-radius: 4px;
}

.strape-2 {
    background: linear-gradient(-90deg, #ECCFAE 0%, rgba(125, 92, 77, 2%) 100%);
    height: 6px;
    width: 100%;
    border-radius: 4px;
    rotate: calc(180deg);
}

.specialiter-txt {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.specialiter-txt span {
    font-family: var(--Great_Vibes);
    color: #fff;
    font-style: italic;
    font-size: 5rem;
    text-align: center;
}

.specialiter-wrapper p {
    font-family: var(--Inter);
    font-weight: var(--medium);
    color: #fff;
    letter-spacing: 4%;
    font-size: 20px;
}

.specialiter-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.specialiter-wrapper button {
    position: absolute;
    z-index: 10;
    width: 250px;
    background-color: #F4EBE6;
    color: var(--Txt-marron);
    border: none;
    height: 50px;
    border-radius: 12px;
    font-family: var(--Lora);
    font-weight: var(--regular);
    font-size: 1.1rem;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
}

.specialiter-wrapper button i {
    font-size: 25px;
}

.specialiter-wrapper button:hover {
    background-color: var(--Txt-marron);
    color: #F4EBE6;
    cursor: pointer;
}

@media (max-width: 960px) {

    .specialiter-txt {
        flex-direction: column;
        gap: 0px;
    }

    .specialiter-content {
        gap: 10px;
    }
}

@media (max-width: 700px) {
    .specialiter-wrapper {
        padding: 10px 0px 40px 0px;
    }
}
@media (max-width: 450px) {
    .specialiter-wrapper {
        padding: 0px 0px 40px 0px;
        height: 440px;
    }
    .specialiter-txt span{
        font-size: 4rem;
    }
}