:root{
    --overlay-dark: rgba(5, 5, 145, 0.884);
    --overlay-light: rgba(63, 208, 252, 0.137);
    --vote-btn-color: rgba(40, 11, 121, 0.568);
}
.grid {
    padding-top: 0px;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: var(--gap);
    color: var(--text-color);
}

@media (max-width:980px) {
    .grid {
        grid-template-columns: 1fr;
        /* padding-left: 1rem;
        padding-right: 1rem; */
    }

}
body{
    flex-direction: column;
    position: relative;
    background-color: var(--compliment);
    
}

.underlay{
    position: fixed;
    top: 0px;
    left: 0px;
    background: url(./entertainement-bg.jpg), no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 100vw;
    z-index: -1;
}

.underlay-overlay{
    height: 100vh;
    width: 100vw;
    z-index: -1;
    background: linear-gradient(180deg, var(--overlay-dark) 2%, var(--overlay-light) 98%);
    opacity: 0.8;
}

header{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    margin-bottom: 0px;
}
.rumphi-enter-logo-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.rumphi-enter-logo{
    width: 25%;
    justify-self: center;
    align-self: center;
}



.header-hero-heading-container{
    position: relative;
    padding-top: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    background: url(./entertainement-bg-2.jpg), no-repeat;
    background-size: cover;
    background-position: center;

}
.header-overlay {
    position: absolute;
    background: linear-gradient(0deg, var(--overlay-dark) 2%, var(--overlay-light) 98%);
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.header-hero-heading{
    font-weight: bold;
    font-size: 7rem;
    text-align: center;
    width: 70%;
    z-index: 10;
}
.big-vote-button {
    display: flex;
    text-decoration: none;
    z-index: 10;
}

@keyframes voteAnimation {
    0% {
        transform: scaleX(1.1);
    }

    25% {
        transform: scaleX(1.12);
    }

    50% {
        transform: scaleX(1.14);
    }

    75% {
        transform: scaleX(1.16);
    }

    100% {
        transform: scaleX(1.18);
    }
}

.big-vote-button a {
    max-width: 600px;
    min-width: 300px;
    width: 300px;
    width: fit-content;
    font-size: 3rem;
    font-weight: 1000;
    text-align: center;
    border-radius: 0.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: white;
    background-color: var(--vote-btn-color);
    outline: 2px solid white;
    outline-offset: 0.4rem;
    /* border-left: 2px solid white; */
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    box-shadow: 0rem 1.2rem 0.8rem -0.3rem rgba(236, 255, 255, 0.534);
    box-shadow: 0rem 1.2rem 0.8rem -0.3rem rgba(1, 50, 83, 0.534);
    transition: background-color, outline, outline-offset, color, 0.5s;

    animation: voteAnimation 0.7s ease-in-out 0ms infinite alternate-reverse;
}

.big-vote-button a:hover {
    /* color: var(--compliment); */
    outline: 2px solid var(--compliment);
    outline-offset: -8rem;
    /* background-color: var(--accent); */
}

.big-vote-button a:active {
    color: white;
    outline: 2px solid var(--accent);
    background-color: var(--card);
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    justify-content: center;
    min-height: 300px;
    height: 50vh;

    padding: 22px;
    border-radius: var(--radius);

    color: var(--text-color);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    
    border: 1px solid rgba(255, 255, 255, 0.03)
}

.hero.rumphi-card{
    display: flex;
    flex-direction: column;
    border-radius: 0px 0px 12px 12px;
}

.hero-left{
    max-width: 80%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.search-btn{
    color: var(--text-color);
}
.hero-right {
    margin-top: 2rem;
}

.hero h2 {
    margin: 0 0 20px 0;
    font-size: 3rem;
    color: var(--text-color);
}

.hero p {
    margin: 0;
    color: var(--text-color);
}

.hero .search {
    margin-top: 12px;
    display: flex;
    gap: 10px
}

.search input {
    flex: 1;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    background: transparent;
    color: inherit
}

/* Cards */
.rumphi-card {
    background: var(--card);
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.02);
    color: var(--text-color);
}

section{
    min-height: 50vh;
    width: 100%;
}

.events-section{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tickets-section{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tickets-section.section-title{
    display: flex;
    align-items: center;
    justify-content: center;
}
.section-title {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    margin-bottom: 12px
}

.section-title h3 {
    font-size: 2.7rem;
    margin: 0;
    margin-bottom: 2rem;
}

.small {
    font-size: 13px;
    color: var(--muted)
}

/* Events list */
.events {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px
}

@media (max-width:700px) {
    .events {
        grid-template-columns: 1fr
    }
}

.event {
    display: flex;
    gap: 10px;
    align-items: flex-start
}

.event .thumb {
    width: 92px;
    height: 72px;
    border-radius: 8px;
    /* background: linear-gradient(90deg, #222 0%, #111 100%); */
    background: linear-gradient(180deg, var(--accent), var(--compliment));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700
}

.thumb{
    min-width: 92px;
    background: linear-gradient(90deg, var(--accent), var(--compliment));
}

.event h4 {
    margin: 0 0 6px 0
}

.event p {
    margin: 0;
    color: var(--muted);
    font-size: 13px
}

.event .meta {
    display: flex;
    gap: 8px;
    margin-top: 8px
}

/* Tickets area */
.tickets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
}

/* Podcast */
.podcast-list {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.podcast-item {
    display: flex;
    gap: 10px;
    align-items: center
}

.podcast-item img {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    object-fit: cover
}

.video-item{
    max-width: 480px;
}

/* Awards voting */
.voting-list {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.vote-row {
    display: flex;
    align-items: center;
    gap: 12px
}

.progress {
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    flex: 1;
    overflow: hidden
}

.progress>i {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--compliment));
    border-radius: 999px
}

/* Right column widgets */
aside {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    background-color: var(--card);
}

.widget {
    padding: 14px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.02)
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.news-item {
    display: flex;
    gap: 10px
}

.news-item .dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%
}

/* Top music & trending */
.music-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px
}

.music-card {
    padding: 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    gap: 10px;
    align-items: center
}

footer {
    margin-top: 24px;
    color: var(--muted);
    font-size: 13px;
    text-align: center
}

/* small utilities */
.pill {
    background: rgba(255, 255, 255, 0.03);
    padding: 6px 8px;
    border-radius: 999px;
    font-size: 12px
}

.muted {
    color: var(--muted)
}
@media (max-width:980px) {

    main{
        width: 100vw;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .rumphi-enter-logo {
        width: 60%;
    }

    .header-hero-heading {
        font-size: 4rem;
        width: 90%;
    }

    .tickets {
        grid-template-columns: 1fr
    }
}

@media (max-width:700px) {
    /* header section {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    } */
    .hero h2 {
        margin: 0 0 20px 0;
        font-size: 2rem;
    }
    .hero.rumphi-card{
        gap: var(--gap);
    }
    .rumphi-enter-logo {
        width: 80%;
    }
    .header-hero-heading-container{
        display: flex;
            flex-direction: column;
            justify-content: space-evenly;
        height: 100%;
    }

    .header-hero-heading {
        font-size: 2rem;
        width: 70%;
    }

    .big-vote-button a {
        height: 60px;
        max-width: 70vw;
        min-width: 100px;
        width: 170px;
        font-size: 2rem;
    }

    .tickets {
        grid-template-columns: 1fr
    }

    .section-title h3 {
        font-size: 1.7rem;
        margin: 0;
        margin-bottom: 2rem;
    }
}

@media (max-width:480px) {
    .music-grid {
        grid-template-columns: 1fr
    }
}



/* ANIATIONS GO DOWN HERE NECHO */
.swipe-down-2 {
    margin-top: 5rem;
    text-align: center;
    z-index: 10;
}

.swipe-down-2 i {
    font-size: 35px;
    color: #fff;
    animation: slideDown 1.5s infinite;
}

@keyframes slideDown {
    0% {
        transform: translateY(0);
        opacity: 0.2;
    }

    40% {
        transform: translateY(15px);
        opacity: 1;
    }

    100% {
        transform: translateY(30px);
        opacity: 0;
    }
}

/* NECHO SHORTCUTS */

.center-col{
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
}

.center-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}