.mobile-text, .smartphone-type-selection{
    display: none;
}

/* Ajustements pour les images de fond / titres de section */
.main-global{
    padding: 0.1vh 0;
}

.page-top{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content:  center;
    gap: 10%;
}

.ticket-type-section{
    margin-left: 5vw;
}

.section-title{
    font-family: Lora;
    font-weight: 500;
    color: #f37551;
    font-size: x-large;
    display: flex;
    align-items: baseline;
    gap: 2vw;
}

/* Section du sélecteur de type de billet */
.ticket-types-selection{
    display: flex;
    gap: 7vw;
    background-image: url("../images/rectangle-choix-billet.png");
    background-repeat: no-repeat;
    background-size: contain;
    padding: 4vw 8vw 4vw 8vw;
    align-items:flex-start;
    justify-content: center;
    max-width: 39vw;
}

.ticket-text, .ticket-price, .ticket-inputs{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: Inter;
}

.ticket-text{
    color: #f37551;
}

.ticket-price{
    align-items: center;
}

.ticket-inputs{
    gap: 3vh;
    margin-top: 2vh;
    input{
        border-style: none;
        border-radius: 20px;
        max-width: 6vw;
        height: 2.7vh;
        background-image: url(../images/fleche-gauche-billet.svg), url("../images/fleche-droite-billet.svg");
        background-repeat: no-repeat;
        background-position: 0%, 100%;
        text-indent: 45.5%;
    }
    input:hover{
        animation-name: GrowArrows;
        animation-duration: 0.5s;
        animation-fill-mode: forwards;
    }
}

/* Section calendrier (code de base saisi sur W3Schools, à l'adresse suivante:
(https://www.w3schools.com/HOWTO/howto_css_calendar.asp) (assez bien modifié pour répondre aux
besoins du projet */
ul {list-style-type: none;
}

.calendar{
    font-family: Inter;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.calendar-content{
    background-image: url(../images/calendrier-arriere-plan.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 20%;
    padding: 7vh 3vw;
    height: 40vh;
    width: 24.7vw;
}

.month-calendar {
  width: fit-content;
  height: fit-content;
  text-align: center;
  background-color: #005f86;
  font-family: Inter;
  border-radius: 5%;
  padding: 1%;
  margin: auto;
}

.month-calendar ul {
  margin: 0;
  padding: 0;
}

.month-calendar ul li {
  color: white;
  font-size: 20px;
  letter-spacing: 3px;
}

.weekdays {
  margin: 0;
  padding: 10px 0 10px 1%;
  font-size: 13px;
  display: flex;
  gap: 2vw;
}

.weekdays li {
  display: inline-block;
  width: 4%;
  color: #666;
  text-align: center;
}

.numbers-calendar{
    display: flex;
    gap: 9%;
    padding-bottom: 5%;
}

.day-numbers, .week-numbers {
  padding: 10px 0;
  margin: 0;
}
.day-numbers{
    li:hover{
        animation-name: GrowText;
        animation-duration: 1s;
        animation-fill-mode: forwards;
    }
    
}
.day-numbers li, .week-numbers li {
  list-style-type: none;
  width: 13.6%;
  text-align: center;
  margin: 0 0 5px 0;
  font-size:12px;
  padding: 40%;
  width: fit-content;
}

.week-numbers, .day-numbers{
    display: flex;
    flex-direction: column;
    padding-top: 3.5%;
    gap: 10%;
}

.week-numbers li, .selected{
    background-color: #f37551;
    border-radius: 20%;
}

.next-button{
    all: unset;
    display: flex;
    justify-self: end;
    font-family: Inter;
    background-image: url("../images/bouton-suivant-billet.png");
    background-size: contain;
    background-repeat: no-repeat;
    padding: 4%;
    background-position: center;
    margin-right: 15px;
    color: white;
}

/* Section des différents forfaits */
.plan-title{
    font-family: Lora;
    color:#005f86;
    margin-left: 5vw;
    font-size: 25px;
}

.plan-descriptions{
    display: flex;
    justify-content: space-between;
    padding: 0 10vw 10vh 10vw;
}

.plan-description{
    display: flex;
    flex-direction: column;
    max-width: 20%;
    background-image: url("../images/rectangle-type-forfait.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    padding: 5%;
    color: #ffffff;
    font-family: Lora;
    font-size: 11px;
    font-weight: 0;
    line-height: 200%;
}

.plan-description-title{
    display: flex;
    justify-content: center;
    font-family: Inter;
    color: #f37551;
    font-size: 20px;
}
@media screen and (max-width: 1200px){
    .page-top{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .desktop-text{
        display: none;
    }
    .ticket-types-selection{
        background-position: center;
    }
    .ticket-inputs{
        gap: 4.9vh;
    }
    .calendar-content{
      background-size: contain;
      background-position: end; 
      padding: 7vw;
      height: 55vh;
    }
    .weekdays{
        gap: 2.8vw;
    }
    .plan-title{
        justify-self: center;
    }
    .mobile-text{
        display: flex;
        padding-bottom: 10vh;
    }
    .plan-description{
        background-size: contain;
        background-position-y: 4vh;
    }
    .plan-description-title{
        margin-top: 0;
    }
    .day-number:active{
        animation-name: AppearColoredBackground;
        animation-duration: 0.5s;
        animation-fill-mode: forwards;
    }
}
@media screen and (max-width: 1080px){
    .page-title{
        justify-self: center;
        margin-right: 5%;
    }
    .desktop-type-selection{
        display: none;
    }
    .smartphone-type-selection{
        display: flex;
        flex-direction: column;
    }
    .ticket-types-selection{
        background-size: cover;
        border-radius: 10vw;
    }
    .price-label{
        color: #000000;
        display: flex;
    }
    .ticket-label{
        p{
            margin: 0;
            margin-bottom: 1vh;
        }
        margin-bottom: 5vh;
    }
    .ticket-inputs{
        gap: 8vh;
        input{
            padding: 1vh;
            max-width: 10vw;
        }
    }
    .calendar{
        margin-top: 6vh;
        align-items: baseline;
    }
    .next-button{
        padding: 8vw;
    }
    .plan-title{
        margin-top: 0;
    }
    .plan-descriptions{
        flex-direction: column;
        align-items: center;
        margin-bottom: 0;
    }
    .plan-description-title{
        font-size: 30px;
        margin-bottom: 2vh;
    }
    .plan-description{
        font-size: 13px;
        height: 33vh;
        padding: 10vw;
    }
    .mobile-text{
        width: 20vw;
        font-size: 15px;
    }
}