body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    color: white;
    background-color: black;
    font-family: 'Nunito sans', sans-serif;    
}




/* CSS for all heading levels */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito sans', sans-serif;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

/* Basic gallery container styling */
.slides {
    width: 100%;
    max-width: 600px;
    overflow: hidden;
    margin: 40px auto;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.image-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    cursor: pointer;
}

.slide img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

/* Navigation buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: #333;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 10px;
    border-radius: 50%;
}

.prev { left: 10px; }
.next { right: 10px; }

/* Modal styling */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal img {
    max-width: 80%;
    max-height: 90%;
    border-radius: 10px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}


/* Blinking button style */
.blinking-button {
    display: inline-block;
    padding: 20px 40px;
    font-size: 24px;
    font-family: 'Nunito sans', sans-serif;
    font-weight: bold;
    color: rgb(7, 7, 7);
    background-color: #f1edec; /* Stylish orange color */
    text-align: center;
    text-decoration: none;
    border-radius: 10px; /* Rounded corners */
    border: 2px solid white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3); /* Stylish shadow */
    cursor: pointer;
    transition: background-color 0.3s ease; /* Smooth background color transition */
}

/* Hover effect */
.blinking-button:hover {
    background-color: #a5a3a3; /* Darker orange on hover */
}

/* Blinking animation */
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.styled-button {
    display: inline-block;
    background-color: #ff6600; /* Button color */
    color: white; /* Text color */
    padding: 12px 24px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    
    /* Centering */
    margin: 20px auto;
    display: block;
    width: fit-content;
}

.styled-button:hover {
    background-color: #cc5500; /* Darker color on hover */
    transform: scale(1.05); /* Slightly enlarge on hover */
}

.styled-button:active {
    transform: scale(0.95); /* Slight shrink on click */
}




/* Specific styles for each heading level */
h1 {
    font-size: 26px;
    color: white; /* Orange color */
}

h2 {
    font-size: 30px;
    color: #0066cc; /* Blue color */
}

h3 {
    font-size: 26px;
    color: #009933; /* Green color */
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
    text-transform: uppercase; /* Make the text uppercase */
    letter-spacing: 1px; /* Increase space between letters */
}


/* Style the main menu */
.menu {
    position: fixed; /* Fix the menu to the left side */
    top: 50%; /* Start at the middle of the page */
    left: 0;
    transform: translateY(-50%); /* Center the menu vertically */
    background-color: transparent; /* Light background color */
    padding: 0.5%; /* Add some padding */
    z-index: 1000; /* Ensure the menu is above other content */
    font-family: 'Nunito sans', sans-serif;
    font-weight: 600;
    font-size: large;
}

.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: 2%;
    text-decoration: none;
    color: white;
    background-color:transparent;
}

.menu ul li a:hover {
    background-color: transparent;
    color: rgba(80, 0, 80,1);
}


.submenu {
    display: none;
    position: absolute;
    left: 80%; /* Align the submenu with its parent */
    top: 0%; /* Position it below the parent menu item */
    background-color:transparent; /* Same background as the main menu */
    z-index: 1000;
    padding: 0;
    width: 100%; /* Make submenu width same as parent */
}


/* Style the submenu items */
.submenu li {
    display: block; /* Stack vertically */
}

.submenu a {
    padding: 3px;
    text-decoration: none;
    color: white;
    display: block; /* Full-width links */
    background-color: rgba(0, 0, 0, 0.8); /* Light background color */
}

/* Show submenu on hover */
.menu li:hover > .submenu {
    display: block; /* Display the submenu */
    background-color: transparent;
    color: #fff;
}

.submenu li a:hover {
    background-color: #e56e19;
}



.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:transparent; /* Optional: Background color of the menu */
    border-right: 0px solid #ccc; /* Optional: Add a right border */
    padding: 0.5%; /* Optional: Padding inside the menu */
    z-index: 1000; /* Ensure the menu stays above other content */
    font-family: 'Nunito sans', sans-serif;
}

.fixed-menu ul {
    list-style-type: none; /* Remove default list styling */
    margin: 0; /* Remove default margin */
    padding: 0.5%; /* Remove default padding */
}

.fixed-menu ul li a {
    display: block; /* Make the links fill the container */
    text-decoration: none; /* Remove underline from links */
    padding: 0.5%; /* Add some padding for clickable area */
    color: white; /* Text color */
}

.fixed-menu ul li a:hover {
    background-color: black; /* Color change on hover */
}

.social-links {
    position: fixed; /* Fix the position relative to the viewport */
    bottom: 10%; /* Position from the bottom of the viewport */
    right: 0.5%; /* 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: 10%; /* Space between links */
}

.social-links ul li a {
    display: block; /* Make the links fill the container */
    color: #fff; /* Icon color */
    background-color: transparent; /* Background color */
    padding: 10%; /* 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 */
    right: 0; /* Aligns the element to the left of the viewport */
    background-color: transparent; /* Optional: Adds a background color */
    color: white;
    padding: 0.5%; /* Optional: Adds some padding around the link */
    margin: 0.5%; /* 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: 'Nunito sans', sans-serif;
    font-weight: 600;
}

.email-link-no-underline {
    text-decoration: none; /* Removes the underline */
    color: white; /* Sets the text color to white */
}

/* Logo container in the top-left */
.logo-container {
    position: fixed;
    top: 2%;
    left: 1%;
}

.logo {
    width: 100px; /* Adjust the width of the logo as needed */
    height: auto; /* Maintain the aspect ratio */
}


.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: white;
    padding: 0.5%; /* 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 */
    z-index: 1000; /* Ensures the title stays above other content */
    font-family: 'Nunito sans', 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: transparent; /* Optional: Adds a background color */
    color: white;
    padding: 0.5%; /* 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 */
    z-index: 1000; /* Ensures the title stays above other content */
    font-family: 'Nunito sans', sans-serif;
}


.fixed-title3 {
    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 */
	align-items: center; /* Centers vertically */
    background-color: transparent; /* Optional: Adds a background color */
    color: white;
    padding: 0.5%; /* 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 */
    z-index: 1000; /* Ensures the title stays above other content */
    font-family: 'Nunito sans', sans-serif;
}

.hamburger {
    display: none;
}

/* Hide the titles on smaller screens */
@media (max-width: 1100px) {
    .fixed-title,
    .fixed-title2,
    .logo-container,
    .email-link {
        display: none; /* Hides the titles on smaller screens */
    }
/* Initially hide the menu */
.menu, .submenu {
    display: none;
    flex-direction: column;
    background-color:rgba(1, 1, 0, 0.8);
    width: 100%;
    z-index: 1000;
    margin: 0;
    padding: 0;
}

/* Show the menu when the "show" class is toggled */
.menu.show {
    display: flex; /* Display the menu */
}

/* Menu items styling */
.menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: px;
}

.menu ul li a {
    display: block;
    color: white;
    padding: 10px;
    text-align: center;
    background-color:transparent;
    text-decoration: none;
}

.menu ul li a:hover {
    background-color: #e56e19;
    color: #fff;
}

.menu ul li:hover > .submenu {
    display: none; /* Disable hover on mobile */
}

/* Show submenu on click in mobile */
.menu ul li.show-submenu > .submenu {
    display: flex; /* Show submenu when clicked */
}



/* Hamburger icon styling */
.hamburger {
    display: block;
    background-color: black;
    color: white;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 24px;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    text-align: left;
    z-index: 1001;
}

/* Content of the page */


/* Push content down when the menu is shown */

/* Social Links styling */
/* Social Links styling */
.social-links {
    display: none; /* Hidden by default, toggled with the "show" class */
    justify-content: center; /* Center the social links horizontally */
    flex-direction: row; /* Align the items horizontally */
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
    width: 100%;
    padding: 10px 0;
    z-index: 1000;
}

/* Show social links when toggled */
.social-links.show {
    display: flex; /* Show the social links when toggled */
}

/* Styling the social links list */
.social-links ul {
    list-style-type: none; /* Remove default list styling */
    display: flex; /* Display the social links horizontally */
    justify-content: center; /* Center the social links */
    gap: 15px; /* Space between the icons */
    padding: 0;
    margin: 0;
}

/* Social links styling */
.social-links ul li a {
    color: white; /* Icon color */
    font-size: 24px;
    text-decoration: none;
}

.social-links ul li a:hover {
    color: #e56e19; /* Highlight color on hover */
}



}


.flex-container {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
    display: flex;
    flex-direction: column; /* Stack items vertically */
    gap: 1%; /* 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: 10%; /* Full height of the viewport */
    text-align: center;
  }
  
  


.container {
    display: flex;
    height: 100%;
    position: relative;
}

.sidebar .site-title {
    font-size: 1em;
    top: 1%;
    left: 1%;
    text-align: left;
}

.address {
    font-size: 1em;
    text-align: left;
    bottom: 1%;
}

.social-links a i {
    font-size: 25px; /* 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: 10px;
    max-width: 95vh;
    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);
}


.gallery2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* Creates a grid of 1 column */
    gap: 20px;
    max-width: 700px;
    margin: 0 auto; /* Centers the grid horizontally */
}

.gallery2 a {
    display: block;
    position: relative;
    overflow: hidden;
}

.gallery2 img {
    width: 100%;
    height: auto; /* Adjusts height automatically to maintain proportions */
    object-fit: cover; /* Ensures images cover the space without losing their proportions */
    transition: transform 0.3s ease;
}

.gallery2 a:hover img {
    transform: scale(1.1); /* Zoom effect on hover */
}

/* Overlay styling */
.gallery2 .overlay {
    position: absolute;
    bottom: 30%;
    left: 0;
    right: 0;
    background-color: rgba(62, 0, 47,0.5); /* Semi-transparent black background */
    color: white;
    padding: 30px;
    text-align: center;
    opacity: 0;
    transition: opacity 1s ease;
    font-family: 'Nunito sans', sans-serif;
    font-size: 1.3vw;
}

/* Show the overlay on hover */
.gallery2 a:hover .overlay {
    opacity: 1;
}


.container {
    display: flex;
    min-height: 100vh; /* Full height of the viewport */
}

.sidebar {
    width: 20%;
    background-color: black;
    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: 80%;
    height: auto;
    display: block;
    margin-bottom: 20px;
}
/* Additional styling for responsiveness and other aspects as required */