﻿/* Load Zukarii font */
@font-face {
    font-family: 'Zukarii';
    src: url('fonts/Zukarii-Font/EagleLake-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

#splash-canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}

/* Main content wrapper with gradient background */
#splash {
    position: relative;
    min-height: 100vh;
 /* Matches dungeon.css #splash exactly */
    z-index: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    background: linear-gradient(to bottom right, #d4af3730 15%, #3c2f2f30 100%);

}

/* Fade-in animation for content */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* General body styling */
body {
    margin: 0;
    font-family: 'Zukarii', 'Verdana', Roboto, sans-serif;
    background:#090909;

}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(20, 30, 20, 0.7);
    border-bottom: 0.125rem solid #0f0;
    padding: 1rem;
    z-index: 10;
}

    nav .container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    nav a.logo {
        font-size: 2.5rem;
        font-weight: 999;
        text-decoration: none;
        color: #121c12; /* Matches .splash-title */
        text-shadow: 0 0 4px rgba(0, 255, 0, 0.6); /* Matches .splash-title */
        font-family: 'Zukarii', 'Verdana', Roboto, sans-serif;
    }

    nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: 1.5rem;
    }

        nav ul li a {
            font-size: 1.2rem;
            color: #288628e1; /* Matches .splash-menu li */
            text-decoration: none;
            transition: color 0.3s;
            text-shadow: 0 0 4px rgba(0, 255, 0, 0.6);
            font-family: 'Zukarii', 'Verdana', Roboto, sans-serif;
        }

            nav ul li a:hover {
                color: #0f0;
            }

/* Hero Section */
#home {
    position: relative;
    padding-top: 5rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    z-index: 1;
}

    #home .container {
        padding: 1rem;
    }

    #home h1 {
        font-size: 4rem;
        font-weight: 999;
        margin-bottom: 1rem;
        color: #121c12; /* Matches .splash-title */
        text-shadow: 0 0 4px rgba(0, 255, 0, 0.6); /* Matches .splash-title */
        font-family: 'Zukarii', 'Verdana', Roboto, sans-serif;
    }

    #home p {
        font-size: 1.5rem;
        margin-bottom: 2rem;
        color: #121c12; /* Matches .splash-lore */
        text-shadow: 0 0 5px rgba(0, 255, 0, 0.66); /* Matches .splash-lore */
        font-weight: bold;
        font-family: 'Zukarii', 'Verdana', Roboto, sans-serif;
    }

    #home a.button {
        display: inline-block;
        background: rgba(20, 30, 20, 0.3);
        border: 0.125rem solid #0f0;
        border-radius: 0.3125rem;
        color: #288628e1;
        font-weight: bold;
        margin: 7rem auto;
        padding: .5rem 1rem;
        text-decoration: none;
        transition: color 0.3s, background 0.3s;
        font-family: 'Zukarii', 'Verdana', Roboto, sans-serif;
        font-size: 1.2rem;
        cursor: pointer;
        z-index: 100;
    }

        #home a.button:hover {
            color: #0f0;
            background: #2c672c;
        }






/* Whisper Section */
#whisper {
    position: relative;
    padding: 2rem 1rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    z-index: 1;
}

    #whisper .container {
        padding: 1rem;
    }

    #whisper h2 {
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 1.5rem;
        color: #121c12;
        text-shadow: 0 0 5px rgba(0, 255, 0, 0.66);
        font-family: 'Zukarii', 'Verdana', Roboto, sans-serif;
    }

    #whisper p {
        font-size: 1.2rem;
        line-height: 1.5;
        color: #121c12;
        text-shadow: 0 0 5px rgba(0, 255, 0, 0.66);
        font-weight: bold;
        font-family: 'Zukarii', 'Verdana', Roboto, sans-serif;
    }



/* About Section */
#about {
    position: relative;
    padding: 2rem 1rem;
    text-align: center;
    max-width: 600px;
    z-index: 1;
}

    #about .container {
        padding: 1rem;
    }

    #about h2 {
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 1.5rem;
        color: #121c12;
        text-shadow: 0 0 5px rgba(0, 255, 0, 0.66);
        font-family: 'Zukarii', 'Verdana', Roboto, sans-serif;
    }

    #about p {
        font-size: 1.2rem;
        line-height: 1.5;
        color: #121c12;
        text-shadow: 0 0 5px rgba(0, 255, 0, 0.66);
        font-weight: bold;
        font-family: 'Zukarii', 'Verdana', Roboto, sans-serif;
    }
#contact {
    position: relative;
    padding: 2rem 1rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    z-index: 1;
}
    #contact h2 {
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 1.5rem;
        color: #121c12;
        text-shadow: 0 0 5px rgba(0, 255, 0, 0.66);
        font-family: 'Zukarii', 'Verdana', Roboto, sans-serif;
    }
#social {
    z-index: 1;
    max-width: 400px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
    #social img {
        width: 48px;
        height: 48px;
        margin: 0;
        padding: 2px;
        border-radius: 50%;
        background-color: #288628e1;
    }
    #social img:hover{
        background-color:#0f0;
    }

/* About Section */
#download {
    position: relative;
    padding: 2rem 1rem;
    text-align: center;
    max-width: 600px;
    z-index: 1;
}

    #download .container {
        padding: 1rem;
    }

    #download h2 {
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 1.5rem;
        color: #121c12;
        text-shadow: 0 0 5px rgba(0, 255, 0, 0.66);
        font-family: 'Zukarii', 'Verdana', Roboto, sans-serif;
    }

    #download p {
        font-size: 1.2rem;
        line-height: 1.5;
        color: #121c12;
        text-shadow: 0 0 5px rgba(0, 255, 0, 0.66);
        font-weight: bold;
        font-family: 'Zukarii', 'Verdana', Roboto, sans-serif;
    }

.content-section {
    background: rgba(40, 60, 40, 0.9);
    border: 0.125rem solid #0f0;
    padding: 1.5rem;
    z-index: 1;
    margin: 2rem auto;
    border-radius: 1.5rem;
    justify-items: center;
}

content-section p {
    width: 100%;
    color:#111;
    padding: 0.5rem;
    margin: 0 auto;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.80);
}
.content-section a:hover {
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #00ff00;
    text-decoration: none;
    text-shadow: 0 0 5px rgba(10, 10, 10, 0.8);
    font-family: 'Zukarii', 'Verdana', Roboto, sans-serif;
}
.content-section a {
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #101010;
    text-decoration: underline;
    text-shadow: 0 0 5px rgba(0, 255, 0, 1);
    font-family: 'Zukarii', 'Verdana', Roboto, sans-serif;
}

/* Footer */
footer {
    background: rgba(20, 30, 20, 0.7);
    border-top: 0.125rem solid #0f0;
    padding: 1.5rem;
    text-align: center;
    z-index: 1;
    margin-top: auto;
}

    footer p {
        margin: 0;
        font-size: 1.2rem;
        color: #288628e1;
        text-shadow: 0 0 4px rgba(0, 255, 0, 0.6);
        font-family: 'Zukarii', 'Verdana', Roboto, sans-serif;
    }

/* Responsive Design */
@media (max-width: 768px) {
    nav a.logo {
        font-size: 2rem;
    }

    nav ul li a {
        font-size: 1rem;
    }

    #home h1 {
        font-size: 2.5rem;
    }

    #home p {
        font-size: 1.2rem;
    }

    #home a.button {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }

    #about h2 {
        font-size: 1.8rem;
    }

    #about p {
        font-size: 1rem;
    }

    footer p {
        font-size: 1rem;
    }
}
