.site-header { background-color: #0A192F; color: #fff; padding: 15px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 5px rgba(0,0,0,0.2); } .site-header .container { max-width: 1200px; margin: 0 auto; padding: 0 15px; display: flex; justify-content: space-between; align-items: center; } .site-header .logo { font-size: 28px; font-weight: bold; color: #FFD700; text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s ease; } .site-header .logo:hover { color: #fff; } .site-header .main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 25px; } .site-header .main-nav a { text-decoration: none; color: #fff; font-weight: 500; padding: 5px 0; position: relative; transition: color 0.3s ease; } .site-header .main-nav a:hover, .site-header .main-nav a.active { color: #FFD700; } .site-header .main-nav a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background-color: #FFD700; transition: width 0.3s ease; } .site-header .main-nav a:hover::after, .site-header .main-nav a.active::after { width: 100%; } .site-header .hamburger-menu { display: none; background: none; border: none; cursor: pointer; padding: 0; width: 30px; height: 24px; position: relative; z-index: 1001; } .site-header .hamburger-menu span { display: block; width: 100%; height: 3px; background-color: #FFD700; margin-bottom: 5px; transition: transform 0.3s ease, opacity 0.3s ease; } .site-header .hamburger-menu span:last-child { margin-bottom: 0; } .site-header .hamburger-menu.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); } .site-header .hamburger-menu.active span:nth-child(2) { opacity: 0; } .site-header .hamburger-menu.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); } 

/* New styles for header actions and buttons */
.site-header .header-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}
.site-header .header-actions .btn {
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
    font-size: 14px;
}
.site-header .header-actions .btn-register {
    background-color: #FFD700;
    color: #0A192F;
    border: 1px solid #FFD700;
}
.site-header .header-actions .btn-register:hover {
    background-color: #e6c200;
}
.site-header .header-actions .btn-login {
    background-color: transparent;
    color: #FFD700;
    border: 1px solid #FFD700;
}
.site-header .header-actions .btn-login:hover {
    background-color: #FFD700;
    color: #0A192F;
}

/* Header spacer for mobile logo centering */
.site-header .header-spacer {
    display: none; /* Hidden on desktop */
}

.site-footer { background-color: #0A192F; color: #fff; padding: 40px 0 20px; font-size: 14px; } .site-footer .container { max-width: 1200px; margin: 0 auto; padding: 0 15px; } .site-footer h3 { color: #FFD700; font-size: 18px; margin-bottom: 20px; text-transform: uppercase; } .site-footer .footer-columns { display: flex; flex-wrap: wrap; justify-content: space-between; margin-bottom: 30px; gap: 20px; } .site-footer .footer-col { flex: 1; min-width: 200px; margin-bottom: 20px; } .site-footer .footer-col p, .site-footer .footer-col a { color: #ccc; line-height: 1.8; text-decoration: none; } .site-footer .footer-col a:hover { color: #FFD700; } .site-footer .footer-nav ul { list-style: none; margin: 0; padding: 0; } .site-footer .footer-nav ul li { margin-bottom: 10px; } .site-footer .footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 20px; text-align: center; color: #ccc; } @media (max-width: 992px) { .site-header .main-nav ul { gap: 15px; } } @media (max-width: 768px) { .site-header {
        padding-top: 10px; /* Adjust header padding for mobile */
        padding-bottom: 10px;
    }
    .site-header .container {
        flex-wrap: wrap; /* Allow items to wrap to next line */
        justify-content: flex-start; /* Reset from space-between for mobile layout */
        align-items: flex-start; /* Align items to the top of the container */
    }
    .site-header .hamburger-menu { display: block; order: 1; flex-shrink: 0; width: 30px; } .site-header .main-nav { display: none; flex-direction: column; position: absolute; top: 106px; left: 0; width: 100%; background-color: #0A192F; box-shadow: 0 2px 5px rgba(0,0,0,0.2); padding: 20px 0; text-align: center; z-index: 999; height: calc(100vh - 106px); overflow-y: auto; } .site-header .main-nav.active { display: flex; } .site-header .main-nav ul { flex-direction: column; gap: 10px; } .site-header .main-nav li { margin: 0; padding: 10px 0; } .site-header .main-nav a { font-size: 18px; padding: 10px 0; display: block; } .site-header .hamburger-menu { display: block; } .site-footer .footer-columns { flex-direction: column; align-items: center; text-align: center; } .site-footer .footer-col { min-width: unset; width: 100%; max-width: 300px; } .site-footer .footer-nav ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 20px; } .site-footer .footer-nav ul li { margin-bottom: 0; } 
    /* Mobile-specific order and centering for header elements */
    .site-header .logo {
        order: 2; /* Place after hamburger */
        flex-grow: 1; /* Allow logo to take available space */
        text-align: center; /* Center the logo text */
        margin: 0; /* Reset any auto margins */
        padding: 0; /* Reset any padding */
    }
    .site-header .header-spacer {
        display: block; /* Show spacer on mobile */
        order: 3; /* Place after logo */
        width: 30px; /* Match hamburger width to balance logo */
        flex-shrink: 0; /* Prevent shrinking */
    }
    .site-header .header-actions {
        order: 4; /* Place after the first row */
        width: 100%; /* Take full width */
        justify-content: center; /* Center buttons horizontally */
        margin-top: 15px; /* Space below the logo/hamburger row */
        margin-left: 0; /* Reset desktop margin */
        padding-bottom: 0; /* No extra padding here, container padding handles it */
    }
    .site-header .header-actions .btn {
        font-size: 13px; /* Smaller font for mobile buttons */
        padding: 6px 12px; /* Smaller padding for mobile buttons */
    }
}
 @media (max-width: 480px) { .site-header .logo { font-size: 24px; } .site-footer h3 { font-size: 16px; } .site-footer .footer-col p, .site-footer .footer-col a { font-size: 13px; } }