/* styles.css */
:root {
    --batman-black: #000000;
    --batman-yellow: #FFD700;
    --batman-gray: #000000;
    --background: #000000;
    --text: #ffffff;
    --glass: rgba(71, 71, 71, 0.301);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    position: relative;
    font-family: 'Arial', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
}

/* Fog Layer */
.fog-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./images/fog.gif') repeat;
    z-index: 2;
    pointer-events: none;
    opacity: 0.4;
    mix-blend-mode: screen;
    animation: fog-animation 20s linear infinite;
}

@keyframes fog-animation {
    0% { background-position: 0 0; }
    100% { background-position: 100% 100%; }
}

/* Gotham Section */
.gotham-section {
    position: relative;
    height: 100vh;
    margin-top: 80px;
    z-index: 1; /* Below fog */
}

.gotham-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./images/gotham.jpg') center/cover no-repeat;
    z-index: -1;
}

.gotham-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1; /* Above fog */
}

.main-logo {
    width: 300px;
    filter: drop-shadow(0 0 15px var(--batman-yellow));
    z-index: 1
}

.static-bats {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bat {
    position: absolute;
    font-size: 3rem;
    color: var(--batman-yellow);
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.5));
}

.bat-1 { top: 10%; left: 10%; transform: rotate(45deg); }
.bat-2 { top: 10%; right: 10%; transform: rotate(-45deg); }
.bat-3 { bottom: 10%; left: 10%; transform: rotate(-45deg); }
.bat-4 { bottom: 10%; right: 10%; transform: rotate(45deg); }

/* Glass Navbar */
header {
    background: var(--glass);
    backdrop-filter: blur(10px);
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 3; /* Above fog */
    border-bottom: 1px solid var(--batman-yellow);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    color: var(--batman-yellow);
    text-decoration: none;
}

.nav-logo {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 5px var(--batman-yellow));
}

.nav-links {
    display: flex;
    gap: 2rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--batman-yellow);
}

.copy-button {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--batman-yellow);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.copy-button:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.copy-button a {
    color: inherit;
    text-decoration: none;
}

.bat-icon {
    font-size: 1.25rem;
}
/* About Section */
.about-section {
    position: relative;
    min-height: 100vh;
    background: url('./images/aboutbg.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -305px;
    z-index: 3; /* Above fog */
}

.about-content {
    background: rgba(255, 251, 0, 0.048);
    padding: 2rem;
    border-radius: 1rem;
    max-width: 800px;
    margin: 0 1rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

/* Token Section */
.token-section {
    padding: 4rem 2rem;
    background: var(--batman-gray);
    z-index: 3; /* Above fog */
}

.token-grid {
    max-width: 1200px;
    margin: 2rem auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.token-card {
    background: var(--batman-black);
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid var(--batman-yellow);
    text-align: center;
}

.token-card:hover {
    background: var(--batman-yellow);
    transform: translateY(-5px);
}

/* Features Section */
.features-section {
    padding: 4rem 2rem;
    background: var(--batman-black);
    z-index: 3; /* Above fog */
}

.feature-grid {
    max-width: 1200px;
    margin: 2rem auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--batman-gray);
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid transparent;
    transition: all 0.3s;
    text-align: center;
}

.feature-card:hover {
    border-color: var(--batman-yellow);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--batman-yellow);
    margin-bottom: 1rem;
}

/* Footer Styles */
.main-footer {
    background: var(--batman-black);
    color: var(--text);
    padding: 2rem 1rem;
    border-top: 1px solid var(--batman-yellow);
    margin-top: auto;
    z-index: 3; /* Above fog */
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-text {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-item {
    display: inline;
}

.footer-item a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-item a:hover {
    color: var(--batman-yellow);
}

.footer-item:not(:last-child)::after {
    content: " •";
    color: #3b3b3b;
    margin-left: 10px;
}

.developer-credit {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .gotham-section {
        height: 70vh;
        margin-top: 60px;
    }

    .main-logo {
        width: 200px;
    }

    .bat {
        font-size: 2rem;
    }

    .nav-links {
        display: none;
    }

    .copy-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .logo span {
        display: none;
    }

    nav {
        padding: 0.5rem;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .developer-credit {
        margin-top: 1.5rem;
        padding-top: 1rem;
    }
}

@media (max-width: 480px) {
    .main-logo {
        width: 150px;
    }

    .bat {
        font-size: 1.5rem;
    }

    .nav-logo {
        width: 30px;
        height: 30px;
    }
}