body,html {
    padding: 0;
    margin:  0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
}
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
@font-face {
    font-family: "SF Pro Display";
    src: url("font/apple/SFProDisplay-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Display";
    src: url("font/apple/SFProDisplay-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Display";
    src: url("font/apple/SFProDisplay-Bold.woff") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
button {
    background-color: black;
    border: none;
    color: white;
}
.center-div {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}
.menue-div{
    width: 100%;
    height: 25%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.text-div{
    width: 100%;
    height: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.link-div{
    width: 100%;
    height: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menue {
    width: 395px;
    height: 44px;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 15px;
    padding-left: 10px;
    padding-right: 10px;
    box-shadow:  0 0px 13px rgba(0,0,0,0.25);
}

.time {
    width: 30%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;


}
.logo {
    width: 30%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;

    
}
.logo img {
    width: 74px;
    height: 22px;
    margin-top: 3px;
}
.contact {
    width: 30%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    
}
 .contact button {
      transition: transform 0.3s ease, box-shadow 0.3s ease;

    height: 31px;
    width: 74px;
    border-radius: 13px;
    box-shadow: inset 0 5px 12.2px rgba(255, 255, 255, 0.55),0 2px 4px rgba(0, 0, 0, 0.25);;
   
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;


 }
 .contact button:hover {
  transform: scale(1.1); /* agrandissement de 10% */
  
  cursor: pointer;
}


 .text-div h1 {
     font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    font-size: 88px;
    letter-spacing: -5%;
    margin: 0;
    text-shadow: 0 10px 40px rgba(0,0,0,0.6);

    

 }
  .text-div h3 {
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    font-size: 20.7px;
    letter-spacing: -1%;
    opacity: 70%;
    margin-top: -10px;
    font-weight: 400;
    

 }
  .text-div button {
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  font-size: 18px;
  height: 48px;
  width: 187px;
  border-radius: 27px;
  box-shadow:
    inset 0 5px 12.2px rgba(255, 255, 255, 0.55),
    0 5px 15.7px rgba(0, 0, 0, 0.45);
  margin-top: -10px;

  /* Ajout pour animation hover */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hover : agrandit et augmente légèrement l'ombre */
.text-div button:hover {
  transform: scale(1.1); /* agrandissement de 10% */
  box-shadow:
    inset 0 6px 14px rgba(255, 255, 255, 0.6),
    0 7px 18px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

 
.link {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
     font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 20.7px;

}
.logo-reseau {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    overflow: hidden; /* pour que l'ombre ne dépasse pas */
    position: absolute;
     box-shadow: 0 0 9.2px rgba(0,0,0,0.43);
}

.logo-reseau img {
    width: 100%;
    height: 100%;
    display: block;
}

/* Inner shadow blanc */
.logo-reseau::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    box-shadow: inset 0 0 13.1px rgba(255,255,255,1);
    pointer-events: none;
}
.logo-reseau:nth-child(2):after {
    
    box-shadow: inset 0 0 13.1px rgba(255,255,255,0.80);
 
}
.logo-link {
    display: flex;
    width: 200px;
    height: 50%;
    position: relative;
    margin-top: 40px;
}

.logo-reseau:nth-child(2){
    height: 52px;
    width: 52px;
    left: 50%;
    transform: translateX(-50%)

}
.logo-reseau:nth-child(1){
    position: absolute;
    
    transform: translateY(-50%);
    transform: translateX(-50%);
    transform: rotate(-36deg);
    top: 40%;


}
.logo-reseau:nth-child(3){
    left: 72%;
    transform: translateY(-50%);
    transform: translateX(-50%);
    transform: rotate(36deg);
    top: 40%;


}
.word {
    position: relative;
    top: -5%;
    font-size: 20px;
}


@media (max-width: 400px) {
     .text-div h1 {
        font-size: 50px;
    }
    .text-div  h3 {
        font-size: 18px;
        margin-top: 0px;
    }.text-div button {
        width: 149px;
        height: 40px;
        font-size: 15px;
    }.menue {
        width: 310px;
    }.logo-reseau:nth-child(2){
        height: 48px;
        width: 48px;
     

    }
    .logo-reseau:nth-child(1){
        height: 48px;
        width: 48px;
           left: 2%;


    }
    .logo-reseau:nth-child(3){
        height: 48px;
        width: 48px;

    }
    .contact button {
        width: 65px;
    }.word {
        font-size: 18px;
    }
        
}
@media  (min-width: 400px) and (max-width: 480px) {
    .text-div h1 {
        font-size:58px ;
    }.menue {
        width: 350px;
    }  
    .contact button {
        width: 65px;
    }
    .text-div  h3 {
        
        margin-top: 0px;
    }.logo-reseau:nth-child(2){
        height: 50px;
        width: 50px;
     

    }
    .text-div button {
        width: 155px;
        height: 45px;
        font-size: 15px;
    }
    .logo-reseau:nth-child(1){
         height: 48px;
        width: 48px;
           left: 2%;


    }
    .logo-reseau:nth-child(3){
        height: 50px;
        width: 50px;

    }
    
        
}
@media  (min-width:480px) and (max-width:768px) {
    .text-div h1 {
        
        font-size: 65px;
    }
    .logo-reseau:nth-child(2){
        height: 52px;
        width: 52px;
     

    }
    .text-div button {
        width: 155px;
        height: 45px;
        font-size: 16px;
    }
    .logo-reseau:nth-child(1){
        height: 50px;
        width: 50px;
           left: 2%;


    }
    .logo-reseau:nth-child(3){
        height: 50px;
        width: 50px;

    }
    
}
.time {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem; /* espace entre heure et drapeau */
    font-family: "Apple-medium";
    font-size: clamp(12px, 2vw, 16px);
}

.time img {
    width: clamp(24px, 5vw, 32px);
    height: auto;
    border-radius: 4px;
}
span {
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 13px;
    margin-left: -2px;
}

#drapeau {
    height:14px;
    width: 20px;
}

p {
    font-size: 14px;
    opacity: 35%;
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    margin-top: -3px;
    
}
.blur-animate {
    filter: blur(8px);
    opacity: 0;
    transform: translateY(20px);
    animation: blurFadeIn 0.6s ease-out forwards;
    animation-delay: var(--delay, 0s); /* variable pour décaler l'animation */
}

@keyframes blurFadeIn {
    to {
        filter: blur(0);
        opacity: 1;
        transform: translateY(0);
    }
}
/* Logo 1 : rotation -36° */
.logo-reseau:nth-child(1) {
    position: absolute;
    transform: rotate(-36deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-reseau:nth-child(1):hover {
    transform: rotate(-36deg) translateY(-20px) ;
    box-shadow: 0 8px 18px rgba(0,0,0,0.5);
    cursor: pointer;
}

/* Logo 2 : rotation 0° (droit) */
.logo-reseau:nth-child(2) {
    position: absolute;
    left: 50%;
    transform: translateX(-50%); /* position de base */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-reseau:nth-child(2):hover {
    transform: translateX(-50%) translateY(-20px); /* monte droit */
    box-shadow: 0 8px 18px rgba(0,0,0,0.5);
}


/* Logo 3 : rotation 36° */
.logo-reseau:nth-child(3) {
    
   
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-reseau:nth-child(3):hover {
    transform: rotate(36deg) translateY(-20px) ;
    box-shadow: 0 8px 18px rgba(0,0,0,0.5);
    cursor: pointer;
}



a {
   text-decoration: none;
}