:root {
    --red: #c62828;
    --gold: #f9a825;
    --green: #2e7d32;
    --dark: #0e0e0e;
    --light: #f5f5f5;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark);
    color: var(--light);
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    color: inherit;
}

section {
    padding: 80px 8%;
}

/* ================= HERO ================= */

#hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

#hero iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

#hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(198, 40, 40, .6), rgba(249, 168, 37, .5), rgba(46, 125, 50, .6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    background: linear-gradient(to right, var(--red), var(--gold), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.divider {
    width: 120px;
    height: 4px;
    background: linear-gradient(to right, var(--red), var(--gold), var(--green));
    margin: 20px auto;
}

.hero-content h2 {
    color: var(--gold);
    margin-bottom: 10px;
}

.hero-content h3 {
    margin: 20px 0;
    font-weight: 400;
}

.platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.platforms a {
    padding: 10px 20px;
    border: 1px solid var(--gold);
    border-radius: 30px;
    font-size: 0.9rem;
    transition: .3s;
}

.platforms a:hover {
    background: var(--gold);
    color: #000;
}

/* ================= ABOUT ================= */

#about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

#about h2 {
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--red), var(--gold), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text p {
    margin-bottom: 20px;
    color: #ddd;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* ================= TOUR ================= */

#tour h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--gold);
}

.event-list {
    max-width: 900px;
    margin: auto;
}

.event {
    background: #151515;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid var(--green);
}

.event span {
    color: var(--gold);
    font-size: 0.9rem;
}

/* Admin Panel */

#admin {
    margin-top: 50px;
    background: #111;
    padding: 25px;
    border-radius: 10px;
    max-width: 900px;
    margin-inline: auto;
}

#admin h3 {
    margin-bottom: 15px;
    color: var(--green);
}

#admin input,
#admin button {
    padding: 10px;
    margin: 5px 0;
    width: 100%;
    border: none;
    border-radius: 5px;
}

#admin button {
    background: var(--gold);
    cursor: pointer;
    font-weight: 600;
}

/* ================= MERCH ================= */

#merch {
    background: linear-gradient(135deg, #111, #1b1b1b);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: center;
    cursor: pointer;
    border-radius: 15px;
}

#merch h2 {
    color: var(--red);
    margin-bottom: 15px;
}

#merch .coming {
    color: var(--gold);
    font-weight: 600;
    font-size: 1.2rem;
}

#merch img {
    width: 100%;
    max-width: 250px;
    background: transparent;
}

/* ================= CONTACT ================= */

#contact h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--green);
}

.contact-box {
    max-width: 600px;
    margin: auto;
    background: #111;
    padding: 30px;
    border-radius: 10px;
}

.contact-box input,
.contact-box textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: none;
}

.contact-box button {
    width: 100%;
    padding: 12px;
    background: var(--green);
    border: none;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.socials a {
    font-size: 1.3rem;
    color: var(--gold);
}

/* ================= RESPONSIVE ================= */

@media(max-width: 900px) {

    #about,
    #merch {
        grid-template-columns: 1fr;
    }
}