/* ===========================================================
   SUPER11 - common.css
   Header + Navigation (Glassy Responsive Design)
   =========================================================== */

:root {
    --primary: #00b894;
    --accent: #3a86ff;
    --text-light: #fff;
    --text-muted: #b0b8d1;
    --bg-dark: #0b132b;
    --glass: rgba(255, 255, 255, 0.08);
}

/* === HEADER === */
header.main-header {
    background: transparent !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.main-header {
    background: transparent !important;
}

/* NAV CONTAINER */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 12px 25px;
}

/* LOGO */
.logo a {
    color: white;
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.logo a:hover {
    background: linear-gradient(135deg, #ff4757 0%, #ff6348 50%, #ffa502 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* NAVBAR */
.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
}

.navbar a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    position: relative;
    padding: 5px 10px;
    transition: all 0.4s ease;
    border-radius: 4px;
}

.navbar a:hover {
    background: linear-gradient(135deg, #ff4757 0%, #ff6348 50%, #ffa502 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-2px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ACTIVE HAMBURGER ANIMATION */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* RESPONSIVE MENU */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .navbar {
        position: absolute;
        top: 65px;
        right: 0;
        background: rgba(11, 19, 43, 0.95);
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        text-align: center;
    }

    .navbar.active {
        max-height: 300px;
        padding: 20px 0;
    }

    .navbar ul {
        flex-direction: column;
        gap: 15px;
    }

    .navbar a {
        font-size: 1rem;
        color: var(--text-light);
    }

    .navbar a:hover {
        color: var(--primary);
    }
}
/* ===========================================================
   SUPER11 - FOOTER SECTION
   Matches dark glass header & dashboard theme
   =========================================================== */

footer.main-footer {
    background: transparent !important;
    backdrop-filter: blur(10px);
    color: #333;
    text-align: center;
    padding: 40px 20px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.main-footer {
    background: transparent !important;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* FOOTER GRID */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
    gap: 20px;
}

/* LOGO */
.footer-logo a {
    color: white;
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.footer-logo a:hover {
    background: linear-gradient(135deg, #ff4757 0%, #ff6348 50%, #ffa502 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* LINKS */
.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.footer-links a:hover {
    background: linear-gradient(135deg, #ff4757 0%, #ff6348 50%, #ffa502 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-2px);
}

/* SOCIAL ICONS */
.footer-social a {
    color: white;
    margin: 0 8px;
    font-size: 1.2rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #ff4757 0%, #ff6348 50%, #ffa502 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-3px);
}

/* COPYRIGHT TEXT */
.footer-copy {
    color: white;
    font-size: 0.9rem;
    margin-top: 15px;
    letter-spacing: 0.3px;
}

.footer-copy:hover {
    background: linear-gradient(135deg, #ff4757 0%, #ff6348 50%, #ffa502 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 15px;
    }

    .footer-links a {
        display: inline-block;
        margin: 6px 10px;
    }

    .footer-social {
        margin-top: 10px;
    }
}

