:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #00BFFF; /* Deep Sky Blue */
    --text-color: #f0f0f0;
    --bg-color-dark: #1a1a1a;
    --bg-color-light: #2a2a2a;
    --accent-color: #e0e0e0;
}

/* Base styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color-dark);
}

a {
    text-decoration: none;
    color: var(--secondary-color);
}

a:hover {
    color: var(--primary-color);
}

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

/* Header styles */
.site-header {
    background-color: var(--bg-color-light);
    padding: 15px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-family: 'Impact', sans-serif; /* Example creative font */
    font-size: 2.5em;
    font-weight: bold;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--secondary-color);
}

.main-nav ul {
    display: flex;
    gap: 25px;
}

.main-nav a {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.1em;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}

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

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

.main-nav a.active {
    color: var(--primary-color);
}

.hamburger-menu {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001; /* Above mobile nav */
}

.hamburger-menu .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: 0.4s;
}

/* Footer styles */
.site-footer {
    background-color: var(--bg-color-light);
    padding: 40px 20px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    margin-top: 50px;
}

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

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

.footer-column h3 {
    color: var(--primary-color);
    font-size: 1.3em;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
}

.footer-column p, .footer-column li {
    font-size: 0.95em;
    line-height: 1.6;
    color: var(--accent-color);
}

.footer-column a {
    color: var(--accent-color);
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-color);
}

.footer-logo {
    font-family: 'Impact', sans-serif;
    font-size: 2em;
    font-weight: bold;
    color: var(--primary-color);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    display: block;
}

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

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

.copyright {
    font-size: 0.85em;
    color: var(--accent-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }

    .main-nav {
        display: none; /* Hide main nav on mobile by default */
        width: 100%;
        background-color: var(--bg-color-light);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
        position: absolute;
        top: 70px; /* Adjust based on header height */
        left: 0;
        right: 0;
        padding: 10px 0;
        text-align: center;
        flex-direction: column;
    }

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

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav li {
        margin: 10px 0;
    }

    .main-nav a {
        display: block;
        padding: 10px 20px;
        font-size: 1.2em;
        color: var(--text-color);
    }

    .main-nav a:hover, .main-nav a.active {
        background-color: rgba(var(--primary-color), 0.1);
        color: var(--primary-color);
    }
    
    .main-nav a::after {
        display: none; /* Hide underline on mobile menu */
    }

    .hamburger-menu {
        display: block; /* Show hamburger on mobile */
    }

    .hamburger-menu.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

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

    .hamburger-menu.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

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

    .footer-column {
        min-width: unset;
        width: 100%;
        max-width: 400px; /* Constrain width on small screens */
    }

    .footer-column h3 {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 10px;
    }
    
    .footer-nav ul li {
        margin-bottom: 5px;
    }
}

/* Small adjustments for tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .main-nav ul {
        gap: 15px;
    }
    .main-nav a {
        font-size: 1em;
    }
    .footer-column {
        min-width: 200px;
    }
}