body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    color: black;
    background-color: white;
    font-family: 'Roboto', sans-serif;    
}


#gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    position: relative;
    width: 65%;
    left: 20%;
}

.card {
    border: 0px solid rebeccapurple;
    border-radius: 0px;
    padding: 20px;
    width: 200px;
    height: auto;
    text-align: left;
}

.card img {
    max-width: 100%;
    width: 200px;
    height: auto;
    border-radius: 5px;
    filter: grayscale(100%);
}

.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: lightslategray;
}

.centered-text-container {
    display: flex;
    justify-content: center; /* Center horizontally */
    height: 100%; /* Adjust the height as needed */
    width: 30%;
    position: fixed;
    left: 30%;
    top:20%;
    text-align: left; /* Center text lines horizontally */
}


/* 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: white; /* 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: black;
    background-color: white;
}

/* 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: white;
}

/* Style the submenu items */
.submenu li {
    display: block; /* Stack vertically */
}

.submenu a {
    padding: 0px;
    text-decoration: none;
    color: black;
    display: block; /* Full-width links */
    background-color: white; /* 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: 'Roboto', 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 {
    position: fixed; /* Fix the position relative to the viewport */
    bottom: 100px; /* Position from the bottom of the viewport */
    left: 10px; /* Position from the right of the viewport */
    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 {
    margin-bottom: 10px; /* Space between links */
}

.social-links ul li a {
    display: block; /* Make the links fill the container */
    color: #fff; /* Icon color */
    background-color: #000; /* Background color */
    padding: 10px; /* Padding around the icons */
    border-radius: 50%; /* Make the links circular */
    text-align: center; /* Center the icon/text inside the link */
}

.social-links ul li a:hover {
    background-color: #555; /* Darker background on hover */
}

.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: white; /* Optional: Adds a background color */
    color: black;
    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: 'Roboto', sans-serif;
}

.email-link-no-underline {
    text-decoration: none; /* Removes the underline */
    color: black; /* 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: 10px; /* Aligns the element to the left of the viewport */
    background-color: white; /* Optional: Adds a background color */
    color: black;
    padding: 10px; /* Optional: Adds some padding around the title */
    margin: 0; /* Adjusts margin to ensure it's at the very top and left */
    width: 10%; /* Optional: Makes it full width; adjust as needed */
    z-index: 1000; /* Ensures the title stays above other content */
    font-family: 'Roboto', sans-serif;
}

.fixed-title2 {
    position: fixed; /* Fixed positioning relative to the viewport */
    bottom: 0; /* Aligns the element to the top of the viewport */
    left: 0; /* Aligns the element to the left of the viewport */
    background-color: white; /* Optional: Adds a background color */
    color: black;
    padding: 10px; /* Optional: Adds some padding around the title */
    margin: 0; /* Adjusts margin to ensure it's at the very top and left */
    width: 15%; /* Optional: Makes it full width; adjust as needed */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Optional: Adds a shadow for depth */
    z-index: 1000; /* Ensures the title stays above other content */
    font-family: 'Roboto', 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;
}

.social-links a i {
    font-size: 24px; /* Adjusts the size of the icons */
    color: white; /* Example color, adjust as needed */
}

.social-links a {
    margin: 5px; /* Adds some space around each icon */
    display: inline-block; /* Allows applying margin and dimension */
}

/* Optional: Increase size on hover for a visual effect */
.social-links a:hover i {
    font-size: 30px; /* Larger size on hover */
}

.image-container {
    display: flex; /* Enables flexbox */
    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 {
    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 */