/* Website Header Styles - Shared across all public pages */

/* Header Styles */
.header, .public-nav, .sticky-header {
    background: #f8f9fa;
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.header-content, .nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav, .nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav a, .nav-links a {
    color: #003399;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover, .nav-links a:hover {
    color: #9DC45F;
}

.cta-button {
    background: linear-gradient(135deg, #4A63B8 0%, #394F99 100%);
    color: white !important;
    padding: 8px 17px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 99, 184, 0.3);
    font-size: 0.9rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 99, 184, 0.4);
    color: white;
}

/* Hamburger Menu Styles */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #003399;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
    border-top: 1px solid #e1e5e9;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav a {
    display: block;
    padding: 15px 20px;
    color: #003399;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
}

.mobile-nav a:hover {
    background-color: #f8f9fa;
    color: #9DC45F;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav .cta-button {
    background: linear-gradient(135deg, #4A63B8 0%, #394F99 100%);
    color: white !important;
    margin: 10px 20px;
    text-align: center;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(74, 99, 184, 0.3);
}

.mobile-nav .cta-button:hover {
    background: linear-gradient(135deg, #394F99 0%, #2A3A7A 100%);
    color: white !important;
}

/* Footer Styles */
.footer {
    background: #333;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer .logo img {
    height: 30px;
    width: auto;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav, .nav-links {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }
}
