/* Base styles */
:root {
    --accent-solid: #34D399;
}

body {
    background: #0f172a;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #f8fafc;
    overflow-x: hidden;
    margin: 0;
}

/* Nav styling */
#site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all 0.3s ease;
    background: transparent;
}

#site-nav.scrolled,
#site-nav.menu-open {
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#site-nav.scrolled {
    padding: 0.5rem 0;
}

/* Glassmorphism */
.glass-card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    border-color: rgba(52, 211, 153, 0.3);
}

/* Candidate Card */
.candidate-card {
    border-radius: 1.5rem;
    overflow: hidden;
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.bg-mint {
    background-color: var(--accent-solid) !important;
}

.text-mint {
    color: var(--accent-solid) !important;
}

/* Mobile menu styling */
.mobile-menu {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
    max-height: 450px;
    opacity: 1;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu a {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu a:last-of-type {
    border-bottom: none;
}


/* Logo Marquee */
.logo-marquee {
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    width: 100%;
}

.marquee-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.marquee-track img {
    height: 30px;
    width: auto;
    filter: grayscale(1) brightness(200%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.marquee-track img:hover {
    filter: grayscale(0) brightness(100%);
    opacity: 1;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.stagger > * {
    transition-delay: calc(var(--i) * 0.1s);
}

/* Utility */
.hover-lift:hover {
    transform: translateY(-8px);
}

.bg-dark-section {
    background: #0b1221;
}

.resize-animation-stopper * {
    transition: none !important;
    animation: none !important;
}

.signup-btn {
    background: var(--accent-solid);
    color: #071022;
    border: none;
    font-weight: 600;
}

.signup-btn:hover {
    background: #2abf8a;
    box-shadow: 0 4px 15px rgba(52, 211, 153, 0.3);
}

/* Mobile menu button */
#mobile-menu-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s ease, transform 0.3s ease;
    z-index: 101;
}

#mobile-menu-btn:hover {
    color: var(--accent-solid);
}

#mobile-menu-btn:active {
    transform: scale(0.9);
}

#mobile-menu-btn i {
    transition: transform 0.3s ease;
}

/* Mobile menu links */
#mobile-menu a {
    display: block;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

#mobile-menu a:hover {
    color: var(--accent-solid);
    padding-left: 0.75rem;
}

/* Mobile menu button styling */
#mobile-menu .signup-btn {
    background: var(--accent-solid);
    color: #071022;
    border-color: var(--accent-solid);
    transition: all 0.2s ease;
}

#mobile-menu .signup-btn:hover {
    background: transparent;
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: none;
}

/* Force hamburger button visibility on mobile */
@media (max-width: 767px) {
    #mobile-menu-btn {
        display: block !important;
    }
}
