/* styles.css */

.dropdown-content {
    display: block; 
    font-family: 'Lato', sans-serif;
    padding-left: 20px;
}

figcaption {
    font-family: 'Lato', sans-serif;
    font-size: 0.8em; 
    font-style: italic; 
    padding: 1vw;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: left;
    color: white;
}

footer {
    background-color: #009999;
    color: darkgrey;
    font-family: 'Lato', sans-serif;
    padding: 1vw;
    text-align: center;
}

h1 {
   font-family: 'Lato', sans-serif;
   font-size: 1.5em;
}

header {
    align-items: center;
    color: black;
    display: flex;
    justify-content: center;
    height: 30vh;
    margin-bottom: 0;
    overflow: hidden;
    padding: 1vw;
    position: relative;
    z-index: 1;
}

header::before {
    content: '';
    background-image: url('sea.jpeg');
    background-size: cover;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 5px solid #009999; /* Add border to sea-image */
    z-index: -1;
}

#header-content {
    font-family: 'Lato', sans-serif;
    position: relative;
    z-index: 1;
}

nav ul li a {
    color: #009999;
    font-family: 'Lato', sans-serif;
    font-size: 1em;
    text-decoration: none;
    transition: color 0.3s; /* Add a smooth transition for the color change */
    
}

nav ul li a:hover {
    color: #ff9900; /* Change the hover color value */
}

#orange-link {
   
    color: #ff9900;
    font-family: 'Lato', sans-serif;
    font-size: 0.8em;
    font-style: italic;
    display: block;
    padding: 0px;
    text-decoration: none;
}

p {
    font-family: 'Lato', sans-serif;
    font-size: 1em;
    padding: 2px;
}

#profile-image {
    border: 5px solid #009999; /* Border color same as the header */ 
    border-radius: 50%;
    height: 25vw;
    max-width: 100%;
    width: 25vw; 
}

section {
    padding: 2vw;
}

section.container {
    flex: 1; /* Allow the main container to take up the remaining height */
    max-height: 80vh;
    overflow-y: hidden; 
    overflow-x: hidden;
    padding: 2vw; /* Add some bottom padding for better spacing */
}

#site-title {
    color: #009999;
    font-family: 'Lato', sans-serif;
    text-align: center;
}

#site-title-footer {
    color: black;
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
}
