.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}

.navbar {
    background-color: rgba(0, 21, 41, 0.0) !important;
    background-image: none;
}

.imageContainer {
    position: relative;
    width: 100%;
    height: calc(100vh - 0vw);
}

.imageContainer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 21, 41, 0.6);
    pointer-events: none;
}

.serviceImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shortData {
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 3vw;
    left: 3vw;
    z-index: 1;
}

.shortData h1 {
    font-family: 'Abril Fatface';
    font-size: 5vw;
    color: white;
    font-weight: lighter;
    margin-bottom: 0;
}

.priceAndTime {
    color: white;
    font-size: 2vw;
    margin: 0;
}

.mainDesc {
    color: white;
    width: 45%;
}


.longData, .calendar {
    width: 95%;
    position: relative;
}

.longData h3, .calendar h3, .mobileCalendar h3 {
    font-family: 'Abril Fatface';
    font-size: 3vw;
    color: #FFAEAA;
    font-weight: 400;
    margin: 1rem 0 1rem 0;
}

.markdown-content {
    width: calc(100% - 2rem);
    margin: 0 auto;
    padding: 1rem 1rem 0 1rem;
    border: #FFAEAA 1px solid;
    margin-bottom: 2rem;
}

.markdown-content h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #333;
}

.markdown-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.markdown-content ul {
    list-style-image: url('../../../static/images/puces.svg');
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.markdown-content li {
    margin-bottom: 0.5rem;
}

.markdown-content strong {
    font-weight: bold;
}

/* Style spécifique pour les titres de sections */
.markdown-content h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    margin-top: 0;
    color: #444;
}

/* Style pour les liens */
.markdown-content a {
    color: #0066cc;
    text-decoration: none;
}

.markdown-content a:hover {
    text-decoration: underline;
}

.calendarContent {
    margin: 0 auto;
    padding: 1rem;
    border: #FFAEAA 1px solid;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-around;
}

.date {
    margin-top: 0;
    font-weight: 600;
}

.columnDay, .slotList {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slotBtn {
    background-color: #FFAEAA;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    margin: 0.2rem;
    cursor: pointer;
    width: 100%;
    text-align: center;
    text-decoration: none;
}

.slotBtn:hover {
    background-color: #A3CCCE;
}

.changeWeek {
    width: 3vw;
    margin-top: 1vh;
}

.noSlot {
    /* margin-top: 15vh;
    rotate: -45deg; */
    text-align: center;
    width: 100%;
}

.mobileCalendar {
    display: none;
}

.day-section {
    background-color: white;
    border-radius: 12px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.day-header {
    padding: 15px;
    font-weight: bold;
    font-size: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.day-header::after {
    content: '▼';
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.day-header.active::after {
    transform: rotate(180deg);
}

.slots {
    display: none;
    padding: 10px 15px;
    border-top: 1px solid #eee;
    background-color: #fafafa;
    flex-wrap: wrap;
}

.changeWeekDiv {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 2vh;
}

.changeWeekDiv a {
    text-decoration: none;
    color: #FFAEAA;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.changeWeekDiv a img {
    width: 1.2rem;
}

.quoteExplanation {
    font-size: 1.2rem;
}

@media (max-width: 1024px) {

    .quoteExplanation {
        font-size: 0.8rem;
    }

    .serviceImg {
        margin-top: 5rem;
        height: 30vh;
    }

    .imageContainer {
        height: auto;
        position: relative;
    }

    .navbar {
        background-image: linear-gradient(to bottom, rgba(0, 21, 41, 1), rgba(0, 21, 41, 1), rgba(0, 21, 41, 1)) !important;
    }

    .shortData h1 {
        font-size: 3rem;
    }

    .shortData {
        top: auto;
        bottom: 5vw;
        left: 5vw;
        width: 90vw;
    }

    .priceAndTime {
        font-size: 1.5rem;
    }

    .mainDesc {
        display: none;
    }

    .calendar {
        display: none;
    }

    .longData h3, .calendar h3, .mobileCalendar h3 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .mobileCalendar {
        display: block;
        width: 95%;
        margin-bottom: 5vh;

    }

    .slotBtn {
        width: calc(50% - 2.4rem);
    }

    .changeWeek {
        margin-top: 0;
    }
}