body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    color: black;
    background-color: white;
    font-family: 'Open sans', sans-serif;    
}

.logo-container {
    position: fixed; /* This pins the logo to a fixed spot on the page */
    top: 0; /* Aligns the top edge of the logo with the top of the viewport */
    left: 0; /* Aligns the left edge of the logo with the left of the viewport */
    z-index: 1000; /* Ensures the logo stays above other content */
}

.logo {
    height: 50px; /* Adjust based on the size of your logo */
    width: auto; /* Keeps the logo's aspect ratio intact */
}


.video-container {
    display: flex;
    position:relative;
    top: 20%;
    justify-content: center;
    align-items: center;
    height: 100vh; /* This makes the container take the full height of the viewport. Adjust as needed. */
}

iframe {
    /* Optional: Set a max-width to ensure the video is not too large on big screens */
    max-width: 100%;
}


#gallery {
    margin-top: 10%;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    position: relative;
    width: 65%;
    left: 20%;
}

.card {
    border: 0px solid lightblue;
    border-radius: 0px;
    padding: 20px;
    width: 200px;
    height: auto;
    text-align: left;
}

.card img {
    max-width: 100%;
    width: 200px;
    height: auto;
    border: 0px solid lightblue;
    border-radius: 0px;
}

.card h3 {
    font-size: 14px; /* Smaller font size for headings within the card */
}

.card h2 {
    font-size: 14px; /* Smaller font size for headings within the card */
    font-style: oblique;
    font-weight: lighter;
}

.card p {
    font-size: 14px; /* Smaller font size for paragraphs within the card */
    color: lightblue;
}

.centered-text-container {
    height: 100%; /* Adjust the height as needed */
    width: 50%;
    position: relative;
    left: 30%;
    top:10%;
    text-align: left; /* Center text lines horizontally */
}



/* Reset list styles */
.horizontal-menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

/* Remove default link styles */
.horizontal-menu a {
    text-decoration: none;
    color:lightskyblue; /* Change as needed */
    font-size: 30px;
    font-weight: bold;
}

/* Style for the menu items */
.horizontal-menu li {
    display: inline-block; /* Align items horizontally */
    margin-right: 20px; /* Space between menu items */
}

/* Style for menu items on hover */
.horizontal-menu a:hover {
    color: #007BFF; /* Change hover color as needed */
}

/* Additional styling for the navigation bar */

.horizontal-menu {
    background-color:transparent; /* Light grey background */
    padding: 10px 0; /* Padding around the menu */
    width: 100%; /* Ensure the menu stretches across the full width */
    position: fixed; /* Fix the position of the menu at the top of the viewport */
    top: 0; /* Align the top edge of the menu with the top edge of the viewport */
    left: 0; /* Align the left edge of the menu with the left edge of the viewport */
    z-index: 1000; /* Ensure the menu stays on top of other content */
    display: flex; /* Use flexbox for the menu container */
    justify-content: center; /* Center menu items horizontally */
    align-items: center; /* Center menu items vertically */
}




/* Style the main menu */
.menu {
    position: fixed; /* Fix the menu to the left side */
    top: 30%; /* Start at the middle of the page */
    left: 0;
    transform: translateY(-50%); /* Center the menu vertically */
    background-color: black; /* Light background color */
    padding: 0px 010px; /* Add some padding */
    z-index: 1000; /* Ensure the menu is above other content */
}

.menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.menu li {
    position: relative; /* Needed for submenu positioning */
    display: block; /* Stack the menu items vertically */
}

.menu a {
    display: block;
    padding: 8px;
    text-decoration: none;
    color: white;
    background-color: black;
}

/* Hide the submenu */
.submenu {
    display: none;
    position: absolute; /* Position the submenu */
    left: 100%; /* Position the submenu to the right of the menu item */
    top: 0; /* Align the submenu with the top of the parent item */
    z-index: 1000; /* Ensure submenu is above other content */
    list-style-type: none;
    padding: 0; /* Remove default padding */
    background-color: black;
}

/* Style the submenu items */
.submenu li {
    display: block; /* Stack vertically */
}

.submenu a {
    padding: 0px;
    text-decoration: none;
    color: white;
    display: block; /* Full-width links */
    background-color: black; /* Light background color */
}

/* Show submenu on hover */
.menu li:hover > .submenu {
    display: block; /* Display the submenu */
}

/* Optional: Change link color on hover */
.menu a:hover, .submenu a:hover {
    background-color: orangered;
    color: #fff;
}



.fixed-menu {
    position: fixed; /* Fix the position relative to the viewport */
    top: 50%; /* Set the top edge of the menu at the middle of the viewport */
    left: 0; /* Align the menu to the left side of the viewport */
    transform: translateY(-50%); /* Shift the menu up by half its own height to center it vertically */
    background-color:white; /* Optional: Background color of the menu */
    border-right: 0px solid #ccc; /* Optional: Add a right border */
    padding: 10px; /* Optional: Padding inside the menu */
    z-index: 1000; /* Ensure the menu stays above other content */
    font-family: 'Open sans', sans-serif;
}

.fixed-menu ul {
    list-style-type: none; /* Remove default list styling */
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
}

.fixed-menu ul li a {
    display: block; /* Make the links fill the container */
    text-decoration: none; /* Remove underline from links */
    padding: 10px; /* Add some padding for clickable area */
    color: black; /* Text color */
}

.fixed-menu ul li a:hover {
    background-color: white; /* Color change on hover */
}




.social-links {
    display: flex;
    justify-content: center;
    z-index: 1000; /* Ensure the links stay above other content */
}

.social-links ul {
    list-style-type: none; /* Remove default list styling */
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
}

.social-links ul li a {
    display: block; /* Make the links fill the container */
    color: black; /* Icon color */
    background-color:transparent; /* Background color */
    padding: 10px; /* Padding around the icons */
    text-align: center; /* Center the icon/text inside the link */
}

.social-links ul {
    display: flex;
    position: fixed;
    top: 10%;
    justify-content: center; /* Center social links horizontally */
    background-color: transparent; /* Light background for the social links */
    padding: 10px 0; /* Add some padding around the links */
}

.social-links li {
    margin: 0 10px; /* Space out the social links */
}

.social-links a {
    color: #333; /* Dark text color for the links */
    text-decoration: none; /* Remove underline from links */
}

.email-link {
    position: fixed; /* Fixed positioning relative to the viewport */
    bottom: 0; /* Aligns the element to the bottom of the viewport */
    left: 0; /* Aligns the element to the left of the viewport */
    background-color:black; /* Optional: Adds a background color */
    color: white;
    padding: 10px; /* Optional: Adds some padding around the link */
    margin: 10px; /* Optional: Adds some margin around the element */
    z-index: 1000; /* Ensures the link stays above other content */
    text-decoration: none; /* Removes the underline */
    font-family: 'Open sans', sans-serif;
}

.email-link-no-underline {
    text-decoration: none; /* Removes the underline */
    color: white; /* Sets the text color to black */
}

.fixed-title {
    position: fixed; /* Fixed positioning relative to the viewport */
    top: 0%; /* Aligns the element to the top of the viewport */
    left: 0%; /* Aligns the element to the left of the viewport */
    background-color: transparent; /* Optional: Adds a background color */
    color:black ;
    padding: 1%; /* Optional: Adds some padding around the title */
    margin: 0; /* Adjusts margin to ensure it's at the very top and left */
    width: 20%; /* Optional: Makes it full width; adjust as needed */
    z-index: 1000; /* Ensures the title stays above other content */
    font-family: 'Open sans', sans-serif;
}

.flex-container {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
    display: flex;
    flex-direction: column; /* Stack items vertically */
    gap: 20px; /* Adds space between flex items */
}

/* Blinking animation */
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
  }
  
  /* Container styling */
  .center-container {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    height: 100px; /* Full height of the viewport */
    text-align: center;
  }
  
  /* Link styling */
  .blinking-text {
    animation: blink 1s linear infinite;
    font-size: 52px;
    color: yellow;
    font-weight: bold;
    text-decoration: none;
  }
  
  .blinking-text:hover {
    color: #f00;
  }
    


.container {
    display: flex;
    height: 100%;
    position: relative;
}

.sidebar .site-title {
    font-size: 1em;
    top: 10px;
    left: 10px;
    text-align: left;
}

.address {
    font-size: 1em;
    text-align: left;
    bottom: 20px;
}


.image-container {
    display: flex; /* Enables flexbox */
    position: relative;
    top:15%;
    justify-content: center; /* Centers the child horizontally */
    align-items: center; /* Centers the child vertically */
    height: 100vh; /* Optional: Adjusts the container height */
}

.centered-image {
    max-width: auto; /* Ensures the image is responsive and does not overflow its container */
    max-height: 100%; /* Maintains the image's aspect ratio */
}



.pdf-container {
    display: flex; /* Enables Flexbox */
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
    height: 100vh; /* Sets the container height to fill the viewport */
}

iframe {
    border: none; /* Optional: Removes the default iframe border */
}

.gallery {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Crée une grille de 3 colonnes */
    gap: 20px;
    width: 80%;
    max-width: 800px;
    margin: 0 auto; /* Centre la grille horizontalement */
}

.gallery a {
    display: block;
    overflow: hidden;
}

.gallery img {
    width: 100%;
    height: auto; /* Ajuste la hauteur automatiquement pour maintenir les proportions */
    object-fit: cover; /* Garantit que les images couvrent l'espace sans perdre leurs proportions */
    transition: transform 0.3s ease;
}

.gallery a:hover img {
    transform: scale(1.1);
}

.container {
    display: flex;
    min-height: 100vh; /* Full height of the viewport */
}

.sidebar {
    width: 200px;
    background-color: white;
    position: fixed; /* Locks the sidebar in place */
    height: 100vh; /* Full viewport height */
    overflow-y: auto; /* Allows scrolling within the sidebar if needed */
display: flex;
    flex-direction: column;

    padding: 20px;
}

.content {
    flex-grow: 1;
    margin-left: 200px; /* Same as the width of the sidebar */
    padding: 20px;
    overflow-y: auto; /* Allows scrolling within the content area */
}

.full-width-image {
    width: 800px;
    height: auto;
    display: block;
    margin-bottom: 20px;
}
/* Additional styling for responsiveness and other aspects as required */