/* Reset some default styles */
body, h1, h2, h3, p, ul {
    margin: 0;
    padding: 0;
}

/* Reset some default styles */
body p {
    margin-bottom: 1.5cm;
}

/* Set a background color for the body */
body {
    background-image: url('pic/forest.jpg');
    background-size: cover; /* Adjust the sizing as needed */
    background-repeat: no-repeat;
    background-attachment: fixed; /* Keeps the background fixed while scrolling */
    font-family: Georgia, serif;
    margin: 0;
    padding: 0;
}

/* Style the header */
header {
    background-color: #191e1f;
    color: #fff;
    padding: 4px;
    text-align: center;
    font-family: Georgia, serif;
}
header h1 {
    font-size: 30px;
    margin-bottom: 3px;
}
header p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 25px;
    font-style: italic;
}

/* Style the navigation links in the header */
nav a {
    background-color: #191e1f;
    color: #fff;
    font-size: 13px;
    text-decoration: none;
    padding: 12px 30px; /* Adjust the padding to control background size */
    transition: background-color 0.3s; /* Add a smooth background color transition */
}

/* Change the background color and border when hovering over a navigation link */
nav a:hover {
    background-color: #080a0a; /* Change to your desired hover background color */
}

/* Style the footer */
footer {
    text-align: center;
    background-color: #191e1f;
    color: #fff;
    padding: 20px;
}



nav ul {
    list-style: none;
    margin: 10px 50px;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* Style for the profile picture on the index page */
.profile-container {
    margin: 0 0 20px 20px; /* Adjust margin for spacing */
}
.profile-container img {
    width: 200px; /* Increase the size */
    height: 200px; /* Maintain aspect ratio */
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.text-content {
    flex: 1; /* Allow the text to take up the available space */
    margin: 20px; /* Adjust margin as needed */
}

.text-content-centered {
    text-align: center; /* Center text horizontally */
    align-items: center; /* Center text vertically */
    flex: 1; /* Allow the text to take up the available space */
    margin: 40px; /* Adjust margin as needed */
}



/* Style the content between the header and footer */
.content {
    margin: 10px 250px 10px 250px;
    line-height: 1.5; /* Adjust line spacing as needed */
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.9); /* Slightly transparent white background */
    display: flex;
    align-items: flex-start;
}

/* Style for headings within the content */
.content h1, .content h2, .content h3 {
    margin-bottom: 20px;
}

/* Style for lists within the content */
.content ul {
    list-style-type: none;
    padding: 0;
}

.content ul li {
    margin-bottom: 20px;
}

/* Adjustments for smaller screens */
@media (max-width: 768px) {
    header {
        padding: 2px;
    }

    header h1 {
        font-size: 10px;
    }

    nav ul li {
        margin-right: 2px;
    }

    .content {
        margin: 2px;
        padding: 2px;
    }

    a {
        font-size: 10px;
    }
}


/* Style for the social network icons */
.social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons a {
    text-decoration: none;
    margin: 10px; /* Adjust the margin as needed */
}

.social-icons img {
    width: 40px; /* Adjust the size as needed */
    height: 40px; /* Maintain aspect ratio */
}







/* %%%%%%%%%%%%%%%%%%%%%%%% */
/* PICTURE IN GALLERY PART */
/* %%%%%%%%%%%%%%%%%%%%%%%% */

/* Style for the image gallery */
.image-gallery {
    display: flex;
    flex-wrap: wrap;
}

.image {
    margin: 30px 10px;
    max-width: 600px; /* Adjust the maximum width as needed */
    max-height: 100px; /* Adjust the maximum width as needed */
}


.image img {
    width: 220px; /* Increase the size */
    height: 140px; /* Increase the size */
}


/* Style for thumbnail images */
.hover-shadow {
    transition: transform 0.2s;
}

.hover-shadow:hover {
    transform: scale(1.05);
}

/* Additional styles for the modal content */
.modal-content {
    display: flex;
    align-items: center; /* Center vertically */
    justify-content: center;
}

.mySlides {
    display: none;
    padding: 10px;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}

.mySlides img {
    max-width: 90%; /* Adjust the maximum width as needed */
    max-height: 90vh; /* Adjust the maximum height as needed */
}


/* Add a style for the close button */
.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    cursor: pointer;
    color: #fff;
}

/* Add a style for navigation arrows */
.prev, .next {
    position: absolute;
    top: 50%;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    color: #fff;
    user-select: none;
    padding: 10px;
    margin-top: -35px;
}

.next {
    right: 0;
}

/* Optional: Add an animation for modal content */
.modal-content img {
    animation: zoom 0.6s;
}

@keyframes zoom {
    from {
        transform: scale(0.05);
    }
    to {
        transform: scale(0.2);
    }
}