/* ============================================
   PUNKVERSE: SECRET GARDENS
   Section Background ../Images CSS
   ============================================ */

/* Hero Section - Mystical Garden Portal */
.hero-section {
    background-image: url(../images/landing-hero-nightbg.png);
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.about-section {
    position: relative;
    background-image: linear-gradient(45deg, #000000b3, #00000017), url(../images/landing-hero-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;

    .lead {
        text-shadow: 0px 0px 4px #111111;
        font-weight: 400;
    }
}




/* World Section - Ancient Garden Ruins */
.world-section {
    background: linear-gradient(125deg, #000000ab, #00000033), url(../images/gardens-bioluminescent-forest.jpg) center center / cover no-repeat fixed;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
    justify-content: space-between;
}

.world-section .world {
    border: 1px solid #ffffff17;
    padding: 2rem 4rem;
    border-radius: 10px;
    box-shadow: 0px 30px 8px -15px #000000fa;
    border: none;
    border-radius: 3px;
    box-shadow: none;
    transition: all var(--transition-normal);
    background: transparent;

    .lead {
        text-shadow: 2px 2px 2px #111111, 0px 0px 3px #fff;
    }
}


/* Gardens Section - Bioluminescent Forest */
.gardens-section {
    background: linear-gradient(127deg, #122031f0, #111833f5), url(../images/gardens-bioluminescent-forest.jpg) center center / cover no-repeat;
    position: relative;
    min-height: 100vh;
}

.gardens-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 0, 255, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(0, 255, 200, 0.06) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.gardens-section .container {
    position: relative;
    z-index: 1;
}

/* Games Section - Neon Arcade Arena */
.games-section {
    background: url('../images/games-neon-arena.jpg') center center / cover no-repeat fixed;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0px;
}

.games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    backdrop-filter: blur(5px);
}

@keyframes scanlines {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(10px);
    }
}

/* Roadmap Section - Cosmic Timeline */
.roadmap-section {
    background:
        linear-gradient(180deg, rgba(15, 10, 20, 0.9) 0%, rgba(10, 5, 15, 0.85) 50%, rgba(15, 10, 20, 0.9) 100%),
        url('../images/roadmap-cosmic-timeline.jpg') center center / cover no-repeat;
    position: relative;
}

.roadmap-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(100, 50, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

/* Join Section - Portal Gateway */
.join-section {
    background: linear-gradient(135deg, rgb(10 10 20 / 94%) 0%, rgb(20 10 30 / 90%) 50%, rgb(10 10 20 / 94%) 100%), url(../images/join-portal-gateway.jpg) center center / cover no-repeat fixed;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.news-section {
    min-height: 100vh;
}

@keyframes portalPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

/* Enhanced parallax effect for scrolling */
@media (min-width: 768px) {

    .world-section,
    .games-section,
    .join-section {
        background-attachment: fixed;
    }
}

/* Optimize for mobile */
@media (max-width: 767px) {

    .hero-section,
    .world-section,
    .gardens-section,
    .games-section,
    .roadmap-section,
    .join-section {
        background-attachment: scroll;
        background-size: cover;
    }
}

/* Additional overlay for better text readability */
.section-overlay {
    position: relative;
}

.section-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}



.row.garden-wrap {
    width: auto;
    height: 60vh;
    margin: auto;

    .col-lg-3 {
        width: calc(20% - 1rem);
        margin: 1rem 1.5rem;
        height: 90%;
    }
}

.row.garden-wrap:focus,
.row.garden-wrap:active {
    outline: 0;
}

.modal-content {
    background: var(--bg-secondary);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .row.garden-wrap .col-lg-3 {
        width: calc(75% - 1rem);
        margin: 1rem 1.5rem;
        height: 90%;
    }

    .game-icon {
    margin-top: -40px;
    padding-bottom: 38%;
}
}