body{
    background-color: var(--grey-200); /* Pour les navigateurs ne suportant pas les dégradés */
    background: radial-gradient(circle,
        var(--grey-200) 0%,
        var(--grey-200) 50%,
        var(--grey-400) 100%
    );
    color: var(--grey-900);
    position: absolute;
    display: flex;
}

/* ******************************************* ANIMATION ******************************** */
@keyframes slideDown {
    from { transform: translateY(0); }
    to { transform: translateY(5%); }
}
@keyframes slideUp {
    from { transform: translateY(5%); }
    to { transform: translateY(0); }
}

/* Hauteur de header si connue (ex: 72px) */
:root { --office-header-height: 72px; }

/* Conteneur scrollable principal */
#office-main {
  scroll-behavior: smooth;          /* lissage natif */
  scroll-padding-top: var(--office-header-height);
}

/* Sections (si tu préfères scroll-margin plutôt que scroll-padding) */
#office-main section {
  scroll-margin-top: var(--office-header-height);
}


/* ******************************************* LAPTOP LAYOUT ******************************** */


#office-home-container{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    height: 100%;
    width: 100%;
}

#office-left-side{
    display: flex;
    flex-direction: column;
    /* justify-content: start; */
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 650px;
    /* margin-left: 10%; */
    background-color: var(--grey-200);
    /* background-color => secondary-color avec transparence à 50% */
    /* background-color: rgba(235, 208, 36, 0.5); */  
    
}

/* ******************************************* MOBILE LAYOUT ******************************** */

#office-mobile-layout{
    z-index: 1000;
    /* position: absolute; */
    /* top: calc(60% - 150px); */
    /* left: 30px; */
    display: flex;
    flex-direction: column;
    /* align-self: flex-start; */
    align-self: center;
    justify-content: center;

    height: 300px;
    width: 600px;
    border-radius: 20px;
    background-color: black;
    box-shadow: 2px 1px 10px 2px rgba(0,0,0,0.5);
}
#office-mobile-frame{
    display: flex;
    flex-direction: column;
    margin: 6px;
    height: 100%;
    width: 97%;
    border-radius: 20px;
    background-color: var(--grey-800);
}
#office-iframe{
    width: 680px;
    height: 340px;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: 12px;
    background-color: var(--grey-800);
}

/* ******************************************* OFFICE RIGHT ******************************** */

#office-right-side{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    height: 100%;
    /* width: 66%; */
    width: calc(100% - 660px);
    /* background-color: var(--grey-800); */
}
#office-right-side-content{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    height: 100%;
    width: 100%;
    /* padding: 10px 10px 10px 14%; */
    overflow: auto;
}

/* ******************************************* OFFICE HEADER ******************************** */

#office-header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    width: 100%;
    padding: 10px 20px;
    color: black;
}
#office-brand{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(36px, 3vw, 56px);
    letter-spacing: 1px;
    color: var(--primary-color-dark);
    font-weight: 600;
    cursor: pointer;
}
#office-header-2{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    width: 100%;
    padding: 10px 20px;
    color: black;
}

#office-brand-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 110px;
    width: 100%;
    font-size: 70px;
    color: var(--secondary-color);
    font-weight: 500;
    /* letter spacing of font*/
    letter-spacing: 8px;
}
#office-brand-container-2{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    /* width: 100%; */
    font-size: 56px;
    color: var(--secondary-color);
    font-weight: 500;
    /* letter spacing of font*/
    letter-spacing: 8px;
    margin-left: 50px;
}
#office-header-buttons-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 460px;
    padding: 0 20px;
    color: black;

}
#office-domain-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 100%;
    font-size: 10px;
    color: var(--secondary-color);
    font-weight: 500;
    /* letter spacing of font*/
}
/* #office-footer{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    width: 100%;
    padding: 10px 20px;
    border-top: 1px solid var(--grey-500);
} */

.office-menu-bottom{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 100%;
    padding: 10px 20px;
    border-top: 1px solid var(--grey-500);
}

#account-box{
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    height: 80%;
    /* width: 200px; */
    max-width: 200px;
    /* background-color: var(--grey-500); */
    /* border-radius: 2px; */
    /* padding: 0 10px; */
    cursor: pointer;
}
#profile-icon{
    height: 40px;
    width: 40px;
    /* margin-right: 10px; */
    margin: 0 30px;
    color: var(--secondary-color);
}
#profile-icon span{
    font-size: 40px;
}
#office-contact-btn{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height:80%;
    width: 220px;
    background-color: var(--primary-color);
    font-size: 24px;
    border-radius: 50px;
    /* margin: 0 10px 0 220px; */
    /* border: 3px solid var(--primary-color); */

}

#connexion-btn{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 34px;
    width: 160px;
    /* background-color: var(--primary-color); */
    background-color: var(--secondary-color);
    font-size: 16px;
    border-radius: 2px;
    /* margin: 0 30px 0 220px; */
    /* border: 3px solid var(--primary-color); */
}
#connexion-btn:hover{
    background-color: var(--grey-300);
}

/* ******************************************* IFRAME ZONE ******************************** */
#office-iframe-zone{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    min-height: 350px;
    width: 100%;
    padding: 10px;
    background-color: var(--grey-300);
}
#office-iframe-2{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    height: 100%;
    width: 700px;
    border-radius: 20px;
    background-color: var(--grey-800);
}

/* ******************************************* OFFICE VIEWS ******************************** */
#office-content-zone{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: start;
    width: 100%;
    min-height: 500px;
    /* padding: 10px; */
    /* background-color: var(--grey-300); */
}
#office-content-container{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    height: auto;
    width: 100%;
    padding: 10px;
    /* background-color: var(--grey-300); */
}
.card{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    min-height: 80vh;
    width: calc(100% - 20px); /* minus margins */
    padding: 10px;
    /* background-color: var(--grey-300); */
    margin: 10px;
}
.tarif-card.card{
    justify-content: center;
    width: 100%;
    margin: 0%;
}

#office-accueil-view{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    width: 100%;
    transition: background-color 2s ease-out;
}
#office-accueil-view-2{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    width: 100%;
    transition: background-color 2s ease-out;
}
#office-marketing-view{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    width: 100%;
    transition: background-color 2s ease-out;
    padding: 10px;
}
#office-formation-view{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    width: 100%;
    transition: background-color 2s ease-out;
    padding: 10px;
}
#office-neuro-view{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    width: 100%;
    transition: background-color 2s ease-out;
    padding: 10px;
}
#office-legal-view{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    width: 100%;
    transition: background-color 2s ease-out;
    padding: 10px;
}

.horizontal-content{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    width: 100%;
}
.vertical-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}




/* ******************************************* MENU ******************************** */
.office-menu{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: 700px;
    padding: 20px 20px;
    /* background-color: var(--grey-500) */
}
#office-menu-2{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 400px;
    padding: 20px 20px;
    /* background-color: var(--grey-500) */
}

.menu-btn{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 34px;
    background-color: var(--grey-200);
    border-radius: 2px;
    /* border-bottom: 3px solid var(--grey-500); */
    cursor: pointer;
}
.menu-btn:hover{
    /* background-color: var(--grey-300); */
    /* box-shadow: 0 0 10px rgba(0,0,0,0.5); */
    /* position: relative; */
    /* bottom: -10px; */
    background-color: var(--primary-color);
}
.selected-btn{
    background-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    animation: slideDown 0.5s forwards;
}

.menu-btn-2{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
    border-radius: 2px;
    border: 3px solid var(--grey-500);
    cursor: pointer;
    padding: 10px 5px;
}
.menu-btn-2:hover{
    background-color: var(--primary-color);
}
.selected-btn-2{
    background-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    animation: slideDown 0.5s forwards;
    border: none;
}


/* ******************************************* OFFICE INTER SIDE ******************************** */

#office-inter-side{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 10px;
    background-color: var(--grey-300);
}

