/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
    text-align: left; /* Align all text elements to the left */
}

/* Header Styles */
header {
    background-color: #005b96; /* Original blue heading */
    color: black;
    text-align: center; /* Align header to the center */
    background-size: cover !important;

}

.pkp_head_wrapper {
    padding-top: 60px;
}


/* Desktop header koko */
@media (min-width: 992px) {
    .pkp_head_wrapper {
        padding-top: 120px;
    }
}



/* Hide site title (is embedded in image) */
.pkp_site_name .is_text {
    visibility: hidden;
}


/* Make hamburger menu black */
.pkp_site_nav_toggle > span {
    border-bottom-color: black !important;
}
.pkp_site_nav_toggle>span:before, .pkp_site_nav_toggle>span:after {
    background: black !important;
}


/* Navigation Styles */
nav {
    display: flex;
    justify-content: center; /* Center navigation items */
    background-color: #FFFFFF; /* Dark teal */
}

nav a {
    color: #005b96; /* Changed color for visibility */
    padding: 14px 20px;
    text-decoration: none;
    text-align: center; /* Align text inside nav to the center */
    transition: background-color 0.3s ease, box-shadow 0.3s ease; /* Removed border and transform */
}

nav a:hover {
    background: linear-gradient(135deg, #00838f, #00acc1); /* Gradient effect */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Enhance shadow */
}

/* Main Content Styles */
main {
    padding: 20px;
}

main h1 {
    font-size: 24px;
    color: #333;
}

main p {
    font-size: 16px;
    color: #666;
}

/* Sidebar Styles */
.sidebar {
    float: right;
    width: 25%;
    padding: 20px;
    background-color: #e9e9e9;
}

.sidebar h2 {
    font-size: 20px;
    color: #333;
}

.sidebar a {
    color: #b2ebf2; /* Lighter teal */
    text-decoration: none;
}

.sidebar a:hover {
    text-decoration: underline;
}

/* Footer Styles */
footer {
    background-color: #b2ebf2; /* Lighter teal */
    color: #333;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}
