:root {
    --primary-color: #1A202C;
    --accent-color: #FFD700;
    --text-color-light: #F7FAFC;
    --text-color-dark: #1A202C;
    --background-light: #FFFFFF;
    --background-dark: #1A202C;
}

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

/* Base styles for anchors and buttons */
a {
    text-decoration: none;
    color: inherit;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    text-decoration: none !important;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-primary:hover {
    background-color: #E6C200; /* Darker accent */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 15px rgba(26, 32, 44, 0.4);
}

.btn-secondary:hover {
    background-color: #2F3747; /* Lighter primary */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 32, 44, 0.6);
}

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

.site-header .logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    display: block;
}

/* Desktop Layout */
.header-desktop-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    min-height: 60px;
}

.site-header .main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-grow: 1;
}

.site-header .main-nav li {
    margin: 0 15px;
}

.site-header .main-nav a {
    color: var(--text-color-light);
    font-weight: bold;
    padding: 10px 0;
    display: block;
    position: relative;
}

.site-header .main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.site-header .main-nav a:hover::after,
.site-header .main-nav a.active::after {
    width: 100%;
}

.header-buttons {
    display: flex;
    gap: 10px;
}

/* Mobile specific elements - hidden by default on desktop */
.header-mobile-layout {
    display: none;
}

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

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

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h3 {
    color: var(--accent-color);
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

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

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

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

.footer-nav a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}


/* Responsive Styles for Mobile */
@media (max-width: 768px) {
    .header-desktop-layout {
        display: none;
    }

    .header-mobile-layout {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
    .header-top-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 10px 20px;
        box-sizing: border-box;
    }

    .header-top-mobile .logo {
        flex-grow: 1;
        text-align: center;
        padding: 0;
    }

    .mobile-spacer {
        width: 40px;
        height: 1px;
    }

    .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: 1001;
    }

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

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

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

    .header-buttons-mobile .btn {
        flex: 1;
        max-width: 150px;
    }

    .main-nav-mobile {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        display: none;
        flex-direction: column;
        padding: 20px 0;
        z-index: 1001;
        box-sizing: border-box;
    }

    .main-nav-mobile.open {
        display: flex;
    }

    .main-nav-mobile ul {
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .main-nav-mobile li {
        text-align: center;
        margin: 0;
    }

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

    .main-nav-mobile a:hover,
    .main-nav-mobile a.active {
        background-color: rgba(255, 215, 0, 0.1);
        color: var(--accent-color);
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        min-width: unset;
        width: 100%;
        margin-bottom: 20px;
    }
    
    .footer-nav ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .footer-nav li {
        margin: 0;
    }
}