/* === MAIN CONTENT === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: #fff;
    background-color: #0b0c10;
    line-height: 1.6;
    overflow-x: hidden;
}

/* === END OF MAIN CONTENT === */



/* === NAVIGATION === */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1f2833;
    padding: 15px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #66fcf1;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

    .nav-links a {
        text-decoration: none;
        color: #c5c6c7;
        transition: color 0.3s;
    }

        .nav-links a:hover {
            color: #66fcf1;
        }

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.popup-content {
    background: #1f2833;
    padding: 30px 40px;
    border-radius: 12px;
    max-width: 900px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.8s ease forwards;
}

    .popup-content h1 {
        margin-bottom: 25px;
        font-size: 2em;
        color: #66fcf1;
        text-shadow: 0 0 10px #45a29e;
    }

.map-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.map-card {
    text-decoration: none;
    background: #0b0c10;
    border: 2px solid #45a29e;
    border-radius: 8px;
    overflow: hidden;
    width: 180px;
    transition: transform 0.3s ease, border 0.3s ease;
}

    .map-card:hover {
        transform: scale(1.05);
        border-color: #66fcf1;
    }

    .map-card img {
        width: 100%;
        height: 120px;
        object-fit: cover;
    }

.map-title {
    padding: 10px 0;
    font-weight: bold;
    letter-spacing: 1px;
}

    /* INDIVIDUAL MAP COLORS */

    /* gray-white */
    .map-title.moon {
        color: #e0e0e0;
    }
    /* light blue */
    .map-title.origins {
        color: #4db8ff;
    }
    /* Yellow orange */
    .map-title.Shadows {
        color: #E6AD0B;
    }
    /* icy blue */
    .map-title.eisendrache {
        color: #9bd3ff;
    }
    /* greenish */
    .map-title.zetsubou {
        color: #5fd675;
    }
    /* red */
    .map-title.gorod {
        color: #ff5555;
    }
    /* purple */
    .map-title.revelations {
        color: #b98bff;
    }
/* END OF MAP COLORS */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 600px) {
    .map-card {
        width: 140px;
    }
}
/* === END OF NAVIGATION === */










/* === HERO SECTION === */
.hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.home-hero {
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.3)), url('images/Background.jpg') center repeat;
    color: #fff;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-hero {
    height: 44vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.Map-hero {
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.3));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    height: 39vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}


.hero-content {
    background-color: rgba(0, 0, 0, 1);
    padding: 40px;
    border-radius: 10px;
}

.hero h1 {
    font-size: 2.5em;
    color: #66fcf1;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2em;
    color: #c5c6c7;
    margin-bottom: 20px;
}

.btn {
    background-color: #45a29e;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    margin-top: 50px;
    border-radius: 5px;
    transition: background 0.3s;
}

.home-hero-content {
    background-color: rgba(0, 0, 0, 1);
    padding: 40px;
    border-radius: 10px;
}

.home-hero h1 {
    font-size: 2.5em;
    color: #66fcf1;
    margin-bottom: 15px;
}

.home-hero p {
    font-size: 1.2em;
    color: #c5c6c7;
    margin-bottom: 20px;
}

.home-btn {
    background-color: #45a29e;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    margin-top: 50px;
    border-radius: 5px;
    transition: background 0.3s;
}

    .home-btn:hover {
        background-color: #66fcf1;
        color: #0b0c10;
    }

.page-header {
    text-align: center;
    padding: 40px 20px 20px;
    color: #66fcf1;
    background-color: #0b0c10;
}

    .page-header p {
        color: #c5c6c7;
        max-width: 700px;
        margin: 10px auto;
    }

.page-header-zets {
    text-align: center;
    padding: 40px 20px 20px;
    color: #66fcf1;
    background-color: #0b0c10;
}

    .page-header-zets p {
        color: #F45C57;
        max-width: 800px;
        margin: 10px auto;
    }

    .page-header-zets h3 {
        color: #c5c6c7;
        max-width: 800px;
        margin: 30px auto;
    }



/* === END OF HERO SECTION === */












/* === ALL STYLES FOR STEPS OVERLAY === */

.steps-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 40px 20px;
    background-color: #1f2833;
}

.steps-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.step-card {
    background-color: #0b0c10;
    border: 2px solid #45a29e;
    border-radius: 10px;
    width: 320px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

    .step-card:hover {
        transform: translateY(-5px);
        border-color: #66fcf1;
    }

.Moon-step-card h2 {
    color: #e0e0e0;
    margin-bottom: 10px;
    font-size: 1.3em;
    text-shadow: 0 0 8px rgba(150, 200, 255, 0.4), 0 0 15px rgba(100, 180, 255, 0.3), 0 0 25px rgba(80, 160, 255, 0.3);
}

.Shadows-step-card h2 {
    color: #E6AD0B;
    margin-bottom: 10px;
    font-size: 1.3em;
    text-shadow: 0 0 8px rgba(150, 200, 255, 0.4), 0 0 15px rgba(100, 180, 255, 0.3), 0 0 25px rgba(80, 160, 255, 0.3);
}

.Origins-step-card h2 {
    color: #4db8ff;
    margin-bottom: 10px;
    font-size: 1.3em;
    text-shadow: 0 0 8px rgba(150, 200, 255, 0.4), 0 0 15px rgba(100, 180, 255, 0.3), 0 0 25px rgba(80, 160, 255, 0.3);
}

.de-step-card h2 {
    color: #9bd3ff;
    margin-bottom: 10px;
    font-size: 1.3em;
    text-shadow: 0 0 8px rgba(150, 200, 255, 0.4), 0 0 15px rgba(100, 180, 255, 0.3), 0 0 25px rgba(80, 160, 255, 0.3);
}

.Gorod-step-card h2{
    color: #ff5555;
    margin-bottom: 10px;
    font-size: 1.3em;
    text-shadow: 0 0 8px rgba(150, 200, 255, 0.4), 0 0 15px rgba(100, 180, 255, 0.3), 0 0 25px rgba(80, 160, 255, 0.3);
}

.Rev-step-card h2 {
    color: #b98bff;
    margin-bottom: 10px;
    font-size: 1.3em;
    text-shadow: 0 0 8px rgba(150, 200, 255, 0.4), 0 0 15px rgba(100, 180, 255, 0.3), 0 0 25px rgba(80, 160, 255, 0.3);
}





\
@media (max-width: 1000px) {
    .steps-row {
        flex-direction: column;
        align-items: center;
    }
}

.read-more-btn {
    background-color: #45a29e;
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 20px;
    align-self: center;
}

    .read-more-btn:hover {
        background-color: #66fcf1;
        color: #0b0c10;
    }

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #1f2833;
    border: 2px solid #45a29e;
    border-radius: 10px;
    padding: 25px;
    max-width: 700px;
    width: 90%;
    text-align: center;
    animation: fadeIn 0.3s ease forwards;
}

    .modal-content img {
        width: 100%;
        border-radius: 6px;
        margin: 15px 0;
    }

        .modal-content img.Small {
            width: 50%;
            border-radius: 6px;
            margin: 15px 0;
        }

    .modal-content h2 {
        color: #66fcf1;
        margin-bottom: 10px;
    }

    .modal-content p {
        color: #c5c6c7;
        font-size: 0.95em;
    }

.modal strong {
    color: #e8e8e8;
    font-weight: 700;
    text-shadow: 0 0 6px rgba(160, 200, 255, 0.5), 0 0 12px rgba(120, 180, 255, 0.35), 0 0 20px rgba(80, 150, 255, 0.25);
}

.modal a {
    color: #31d5c9;
    font-weight: 600;
    transition: color 0.3s, text-shadow 0.3s;
}

.modal-content p.Notes {
    color: #6198AB;
}


.modal-content-staff {
    background-color: #1f2833;
    border: 2px solid #45a29e;
    border-radius: 10px;
    padding: 25px;
    max-width: 1200px;
    width: 90%;
    text-align: center;
    animation: fadeIn 0.3s ease forwards;
}

.close {
    position: absolute;
    top: 5px;
    right: 20px;
    font-size: 28px;
    color: #66fcf1;
    cursor: pointer;
    transition: color 0.3s;
}

    .close:hover {
        color: #ffffff;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Images */
.see-IMG-container {
    text-align: center;
    margin: 15px 0 20px;
}

.see-IMG-btn {
    background-color: #45a29e;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

    .see-IMG-btn:hover {
        background-color: #66fcf1;
        color: #0b0c10;
    }

    .see-IMG-btn .arrow {
        display: inline-block;
        margin-left: 6px;
        transition: transform 0.3s ease;
    }

.see-IMG {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.4s ease;
    opacity: 0;
    position: relative;
}

    .see-IMG.show {
        max-height: 700px;
        opacity: 1;
    }

.image-wrapper {
    position: relative;
    display: inline-block;
}

    .image-wrapper img {
        width: 100%;
        max-width: 600px;
        border-radius: 6px;
        display: none;
        transition: opacity 0.4s ease;
    }

        .image-wrapper img.active {
            display: block;
            opacity: 1;
        }

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    border: none;
    color: #66fcf1;
    font-size: 1.8rem;
    padding: 8px 14px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .carousel-arrow:hover {
        background-color: rgba(102, 252, 241, 0.4);
    }

    .carousel-arrow.right {
        right: 10px;
    }

    .carousel-arrow.left {
        left: 10px;
        display: none;
    }

/* === MODAL IMAGE GRID === */
.modal-img-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    align-items: center;
    margin: 0px;
}

    .modal-img-grid img {
        width: 80%;
        height: 80%;
        border-radius: 8px;
        border: 1px solid #45a29e;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        .modal-img-grid img:hover {
            transform: scale(1.05);
            box-shadow: 0 0 10px rgba(102, 252, 241, 0.4);
        }



/*Staff Parts*/
.element-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 50px 0;
}

/* === BUTTON BAR === */
.element-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.element-btn {
    background-color: #1f2833;
    color: #fff;
    font-size: 1.1em;
    padding: 12px 25px;
    border: 1px solid #45a29e;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .element-btn:hover {
        background-color: #45a29e;
        color: #0b0c10;
    }

    .element-btn.active {
        background-color: #66fcf1;
        color: #0b0c10;
    }

    .element-btn .arrow {
        transition: transform 0.3s ease;
    }

    .element-btn.active .arrow {
        transform: rotate(180deg);
    }

/* === DISPLAY AREA === */
.element-display {
    width: 100%;
    max-width: 1000px;
    text-align: center;
}

.element-content {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background-color: #14181f;
    border: 1px solid #45a29e;
    border-radius: 10px;
    padding: 25px;
    animation: fadeIn 0.4s ease;
}

    .element-content img {
        max-width: 800px;
        width: 85%;
        border-radius: 8px;
        box-shadow: 0 0 20px rgba(102, 252, 241, 0.25);
    }

    .element-content a {
        color: #66fcf1;
        font-weight: 600;
        text-decoration: none;
        transition: color 0.3s, text-shadow 0.3s;
    }

        .element-content a:hover {
            color: #45a29e;
            text-shadow: 0 0 8px rgba(102, 252, 241, 0.6);
        }

/* === ANIMATION === */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.98);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}
/* === END OF STYLES FOR STEPS OVERLAY === */










/* === FOOTER INFO=== */
footer {
    text-align: center;
    padding: 20px;
    background-color: #1f2833;
    color: #c5c6c7;
    font-size: 0.9em;
}

.shoutouts-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
}

.shout-card {
    background-color: #1f2833;
    border: 2px solid #45a29e;
    border-radius: 12px;
    padding: 30px 40px;
    width: 600px;
    color: #c5c6c7;
    text-align: center;
    box-shadow: 0 0 20px rgba(102, 252, 241, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .shout-card:hover {
        transform: scale(1.03);
        box-shadow: 0 0 25px rgba(102, 252, 241, 0.3);
    }

    .shout-card h2 {
        color: #66fcf1;
        margin-bottom: 15px;
        font-size: 1.8em;
        text-shadow: 0 0 12px rgba(102, 252, 241, 0.5);
    }

    .shout-card p {
        font-size: 1em;
        color: #c5c6c7;
        line-height: 1.5;
    }

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 60px 20px;
    background-color: #1f2833;
}

.about-section {
    padding: 60px 20px 10px 20px;
}

.feature {
    flex: 1 1 300px;
    max-width: 320px;
    text-align: center;
    background: #0b0c10;
    border: 1px solid #45a29e;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s;
}

    .feature:hover {
        transform: translateY(-10px);
    }

    .feature h2 {
        color: #66fcf1;
        margin-bottom: 10px;
    }

    .feature p {
        color: #c5c6c7;
    }

.social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}

.socials a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 250px;
    padding: 16px 0;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    background-color: #3a8784;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(102, 252, 241, 0.2);
}

    .socials a:hover {
        transform: scale(1.05);
        background-color: #66fcf1;
        color: #0b0c10;
        box-shadow: 0 0 25px rgba(102, 252, 241, 0.5);
    }


/* stack on mobile */
@media (max-width: 768px) {
    .shout-card {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav {
        flex-direction: column;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .hero h1 {
        font-size: 1.8em;
    }

    .features {
        flex-direction: column;
        align-items: center;
    }
}

/* === END OF FOOTER === */
