/* Page title styling */
.page-title {
    text-align: center;
    font-size: 2.7rem; /* Slightly increase the font size */
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif; /* More elegant serif font */
    background-color: rgba(255, 255, 255, 0.9); /* Slightly increase the opacity for readability */
    color: #39453a; /* Matching the color theme */
    padding: 30px 0;  /* Increase padding for more height */
    margin: 0; /* Remove margin to keep it compact */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); /* Enhance shadow for more depth */
    border-bottom: 3px solid #39453a; /* Slightly thicker bottom border for emphasis */
    border-radius: 8px; /* Add a subtle border radius for a softer look */
}

/* Styling for the title text */
.page-title h1 {
    font-size: 32px; /* Increase font size for more prominence */
    color: #010101; /* Darker green for contrast */
    font-weight: 600; /* Slightly bolder font weight */
    margin: 0; /* Removes any default margin */
    letter-spacing: 1px; /* Add subtle letter spacing for a refined look */
    text-transform: capitalize; /* Ensure the title looks polished */
}





/* Ensure the navbar stays at the top */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: url('../static/images/background.jpg') no-repeat center center fixed;
    background-size: cover;
}

/* Header / Navbar styles */
header {
    margin-top: 10px; /* Adds some spacing between the title and the navbar*/ 
    width: 100%;
    background-color: #39453a;
    padding: 10px 0;
    /*position: fixed;*/
    top: 0;
    z-index: 1000;
    /* Ensure navbar height is accounted for */
    box-sizing: border-box;
}


nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    position: relative;
}

nav ul li a {
    text-decoration: none;
    padding: 10px 20px;
    font-size: 16px;
    display: block;
    color: #f2f2f2;
    /* background-color: #227a26; */
}

nav ul li a:hover {
    background-color: #227a26;
}



.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #39453a;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 0; 
    margin: 0;
    z-index: 1000;
    width: max-content;
}

.dropdown-menu li a {
    padding: 10px 20px;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background-color: #6d706d;
}

.dropdown:hover .dropdown-menu {
    display: block;
}


/* Adjust the content area to not overlap with the fixed navbar */
.content {
    padding-top: 70px; /* Adjusted to match the height of the navbar */
    box-sizing: border-box;
    /* Ensure no shifting occurs with box-sizing set */
}

/* General page layout styles */



@import url('https://fonts.googleapis.com/css?family=Inconsolata|Lato:300,400,700');




/* General tab styles */
.tabs {
    text-align: center;
    margin-bottom: 20px;
}

.tab-button {
    background-color: #39453a;
    color: white;
    padding: 10px 20px;
    margin: 5px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

.tab-button:hover {
    background-color: #45a049;
}

.tab-button.active {
    background-color: #3e8e41;
}

/* Tab content box */
.tab-content {
    background-color: rgba(255, 255, 255, 0.85); /* Light background with slight transparency */
    padding: 20px;
    margin: 20px auto;
    width: 90%; /* Adjust the width of the box */
    border: 2px solid #ddd; /* Light border */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Tab content text */
.tab-content h2 {
    color: #333; /* Darker text color for better contrast */
    font-size: 24px;
    margin-top: 0;
}

.tab-content p {
    color: #555;
    line-height: 1.6;
    font-size: 16px;
}




