body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #006666, #008687, #003366, #005369, #f3e389);
    color: #fff;
    text-align: center;
}

header {
    background: rgba(0, 51, 102, 0.9);
    padding: 15px 0px 15px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    top: 0;
    z-index: 1000;
    width: 100%;
    flex-wrap: wrap;
}
a {
  color: yellow; /* Sets the default color of all links to yellow */
}
a:hover {
  color: white; /* Change the link color to white on hover */
}
a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:active {
  text-decoration: underline;
}

.logo {
    flex: 1;
    text-align: center;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: inherit; /* optional, keeps text color consistent */
}

.logo img {
 
    height: auto;
    vertical-align: middle;
}

.social-media {
    display: flex;
    gap: 10px;
}

.social-media img {
    width: 32px;
    height: 32px;
}

.mobile-menu {
    display: block;
    font-size: 22px;
    cursor: pointer;
    padding-left: 40px;
	padding-right: 40px;
	padding-bottom: 5px;
	padding-top: 5px;
}
@media (min-width: 1025px) {
    .mobile-menu {
        font-size: 32px;
        padding: 10px 50px;
    }
}
.main-image {
	min-width: 100%;
	max-width: 100%;
	min-height: auto;
	max-height: auto;
}

nav {
    position: relative;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    flex-direction: column;
    background: rgba(0, 51, 102, 0.95);
    position: absolute;
    top: 100%; /* Right under the header */
    left: 0;
    width: 220px;
    padding: 10px 0;
    border-radius: 0 0 8px 8px;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1001;
text-align: left;
}


nav ul.show {
    display: flex;
}

nav ul li {
    margin: 0;
width: 100%;
}

nav ul li a {
    display: block;
    padding: 12px 16px;
    color: #f3e389;
    text-decoration: none;
    font-weight: bold;
    background: transparent;
    transition: background 0.3s, color 0.3s;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}


nav ul li a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}



.container {
    padding: 40px 20px;
    max-width: 1000px;
    margin: auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.card {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    transition: transform 0.3s;
}

.navmenu {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
	padding: 0px 5px;
    margin: 5px 0;
}




@media (max-width: 1024px) {
    header {
        align-items: center;
    }
    .logo img {
        max-width: 70px;
    }
}

@media (max-width: 768px) {
    .social-media {
        display: none;
    }
    .logo {
        text-align: right;
        padding-right: 20px;
    }
    nav ul {
        display: none;
    }
    .mobile-menu {
        display: block;
        cursor: pointer;
    }
    .logo img {
        max-width: 60px;
    }
}
footer {
    background: rgba(0, 51, 102, 0.9);
    padding: 20px;
    margin-top: 20px;
    text-align: center;
}

.footer-columns {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: left; /* override center from footer if needed */
}


.footer-column {
    /* Removed flex: 1 completely */
    min-width: 150px;
    max-width: 250px;              /* Optional: limit width if needed */
    flex-shrink: 0;                /* Prevent columns from shrinking too small */
}

.footer-column h4 {
    margin-bottom: 10px;
    font-size: 16px;
    color: #f3e389;
}

.footer-column a {
    color: #fff;
    text-decoration: none;
}

.footer-column a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-columns {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .footer-column {
        width: 100%;
    }
}

