:root {
    --primary-color: #0A2463;
    --secondary-color: #FFD700;
    --text-light: #FFFFFF;
    --text-dark: #333333;
}

body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 60px;
    background-color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
}

.site-header a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.site-header a:hover {
    color: var(--secondary-color);
}

.logo {
    font-family: 'Georgia', serif; /* Creative font for logo */
    font-size: 2.2em;
    font-weight: bold;
    color: var(--secondary-color); /* Gold color for logo */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Subtle shadow for floating effect */
    letter-spacing: 1px;
    padding: 5px 0;
    display: block;
}

/* Desktop Header Layout */
.header-top-mobile, .header-buttons-mobile, .mobile-nav {
    display: none; /* Hidden by default on desktop */
}

.header-main-desktop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    box-sizing: border-box;
}

.header-main-desktop .logo {
    margin-right: 30px;
    font-size: 2.5em; /* Larger logo for desktop */
}

.desktop-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
}

.desktop-nav a {
    padding: 8px 0;
    font-size: 1.1em;
    font-weight: 500;
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease-in-out;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 100%;
}

.header-buttons {
    display: flex;
    gap: 15px;
    margin-left: auto; /* Push buttons to the right */
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px; /* Rounded corners */
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Shadow effect */
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%); /* Gradient background */
    color: var(--primary-color); /* High contrast text */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    filter: brightness(1.1);
}

.btn-secondary {
    background: linear-gradient(135deg, #0A2463 0%, #1A3A7C 100%); /* Gradient background */
    color: var(--secondary-color); /* High contrast text */
    border: 2px solid var(--secondary-color); /* Border for emphasis */
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    filter: brightness(1.2);
}

/* Footer Styles */
.site-footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 40px 20px;
    text-align: center;
    font-size: 0.95em;
    line-height: 1.8;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto 30px auto;
    gap: 30px;
}

.footer-col {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    text-align: left;
}

.footer-col h3 {
    color: var(--secondary-color);
    font-size: 1.4em;
    margin-bottom: 20px;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}

.footer-info .footer-logo {
    font-size: 2.8em;
    margin-bottom: 15px;
    display: inline-block;
    color: var(--secondary-color);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.footer-info p {
    margin-bottom: 10px;
}

.footer-info .contact-info {
    font-size: 0.9em;
    opacity: 0.8;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 10px;
}

.footer-nav a {
    display: inline-block;
    color: var(--text-light);
    opacity: 0.9;
    position: relative;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background-color: var(--text-light);
    transition: width 0.3s ease-in-out;
}

.footer-nav a:hover {
    color: var(--secondary-color);
    opacity: 1;
}
.footer-nav a:hover::after {
    width: 100%;
    background-color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 20px;
    font-size: 0.85em;
    opacity: 0.7;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .site-header {
        min-height: auto;
        padding: 0;
        flex-direction: column;
    }

    .header-main-desktop {
        display: none;
    }

    .header-top-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 10px 15px;
        min-height: 50px;
        box-sizing: border-box;
    }

    .header-top-mobile .logo {
        flex: 1;
        text-align: center;
        font-size: 2em;
        margin: 0;
    }

    .header-top-right-spacer {
        width: 40px;
    }

    .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 25px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1002;
    }

    .hamburger-menu .bar {
        width: 100%;
        height: 3px;
        background-color: var(--secondary-color);
        transition: all 0.3s ease-in-out;
        border-radius: 2px;
    }

    .hamburger-menu.open .bar:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }
    .hamburger-menu.open .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger-menu.open .bar:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
    }

    .header-buttons-mobile {
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 10px 15px;
        background-color: var(--primary-color);
        gap: 10px;
        box-sizing: border-box;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 999;
    }

    .header-buttons-mobile .btn {
        flex: 1;
        max-width: 150px;
        padding: 10px 15px;
        font-size: 0.9em;
    }

    .mobile-nav {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 70%;
        height: 100%;
        background-color: var(--primary-color);
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        z-index: 1001;
        padding-top: 80px;
        box-sizing: border-box;
        overflow-y: auto;
    }

    .mobile-nav.open {
        transform: translateX(0);
    }

    .mobile-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-nav li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-nav a {
        display: block;
        padding: 15px 20px;
        color: var(--text-light);
        font-size: 1.1em;
        font-weight: 500;
        transition: background-color 0.3s ease;
    }

    .mobile-nav a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--secondary-color);
    }

    /* Footer adjustments for mobile */
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-col {
        min-width: unset;
        width: 100%;
        text-align: center;
    }

    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}