*{
    margin: 0;
    padding: 0;
}
body{
    min-height: 100vh;
    background-image: url(graphics/backgrounds/laptop.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    font-family: 'Montserrat','Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.scroll-fade-in {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s ease-out;
}

.scroll-fade-in.visible {
  opacity: 1;
  transform: translateX(0);
}



#contactMe {
    display: flex;
    flex-direction: row;
    justify-content: end;
    background-color: #002c5e;
}

#contactMe p {
    color: white;
    font-size: 13px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 20px;
}

nav{
    background-color: white;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
    height: auto;
}

nav ul {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav li {
    height: 50px;
    font-size: 15px;
}

nav a {
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: black;
}

#logo {
    margin-right: auto; /* pousse les autres items à droite */
}

#logo a {
    display: flex;
    align-items: center;
    padding: 0 20px;
    text-decoration: none;
}

#logo img {
    height: 75px; /* ajuste selon ton image */
    margin-right: 10px;
}

#logo span {
    font-weight: bold;
    font-size: 18px;
    color: black;
}

nav a:hover{
    background-color: #f0f0f0;
}

nav li:first-child{
    margin-right: auto;
}

.sidebar{
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.sidebar li{
    width: 100%;
}

.sidebar a{
    width: 100%;
}

.goldenMenu {
    background: linear-gradient(45deg, #0054b4, #134680);
    color: white;
    font-weight: bold;
    border-radius: 5px;
}

.goldenMenu a {
    color: white;
}

.goldenMenu:hover a {
    color: black;
}

.contactMenu{
    background: linear-gradient(45deg, #22333b, #2d4551);
    color:white;
    font-weight: bold;
    border-radius: 5px;
}

.contactMenu:hover a{
    color:black;
}

.contactMenu a {
    color: white;
}



/* ------- RESPONSIVE ------- */

@media(max-width: 1000px){
    .hideOnMobile{
        display: none;
    }
}

@media(min-width: 1001px){
    .hideOnPC{
        display: none;
    }
}


