/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange-primary: #FF8C42;
    --gold-accent: #B8A055;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --white: #ffffff;
    --gray-text: #999999;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */

/* Hero Section – pôster central recortado + degradê vertical */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    color: var(--white);
    background-color: #000;

    /* Pôster preenchendo a largura e recortando top/bottom,
       mantendo o centro da arte */
    background-image: url('https://allmetalstarsbr.com.br/poster.jpeg');
    background-position: center center;
    /* foco no centro */
    background-size: cover;
    /* recorta topo/baixo */
    background-repeat: no-repeat;
}

/* Degradê só em cima e embaixo para "fundir" com o site */
.hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 1) 0%,
            /* bem escuro no topo */
            rgba(0, 0, 0, 0.9) 12%,
            rgba(0, 0, 0, 0.5) 30%,
            /* centro quase sem filtro */
            rgba(0, 0, 0, 0.5) 70%,
            rgba(0, 0, 0, 0.5) 88%,
            rgba(0, 0, 0, 0.8) 100%
            /* bem escuro embaixo */
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    /* alinha com as outras sections */
    margin: 0 auto;
}


.logo-ticket {
    position: absolute;
    top: -20px;
    left: 20px;
}

.ticket-logo {
    height: 40px;
    opacity: 0.8;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 10vw, 7rem);
    color: var(--orange-primary);
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 300;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.hero-tribute {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--orange-primary);
    letter-spacing: 3px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--orange-primary);
    color: var(--white);
    border: 2px solid var(--orange-primary);
}

.btn-primary:hover {
    background-color: transparent;
    border: 2px solid var(--orange-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 66, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px dashed var(--white);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.hero-special {
    font-size: 1rem;
    color: var(--gold-accent);
    letter-spacing: 2px;
    margin-bottom: 50px;
    line-height: 1.8;
}

.special-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    display: block;
    letter-spacing: 3px;
}

.hero-bands {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}

.band-section {
    text-align: center;
}

.band-label {
    font-size: 0.75rem;
    color: var(--gold-accent);
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.band-logo {
    height: 60px;
    filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.8));
}

/* Tribute Section */
.tribute-section {
    padding: 100px 20px;
    background-color: var(--black);
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--orange-primary);
    text-align: center;
    letter-spacing: 3px;
    margin-bottom: 40px;
}

.tribute-text {
    font-size: 1.2rem;
    font-weight: 300;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.tribute-text strong {
    font-weight: 700;
    color: var(--white);
}


/* Artists Section */
.artists-section {
    padding: 100px 20px;
    background-color: #0a0a0a;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.artist-card {
    background-color: var(--dark-gray);
    border: 1px solid #333;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.2);
}

.artist-icon {
    color: var(--orange-primary);
    margin-bottom: 20px;
}

.artist-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: var(--white);
}

.artist-role {
    color: var(--orange-primary);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.artist-description {
    font-size: 0.95rem;
    color: var(--gray-text);
    line-height: 1.6;
}

.special-guest {
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.1), rgba(184, 160, 85, 0.1));
    border: 2px solid var(--orange-primary);
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.special-label {
    color: var(--orange-primary);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.special-name-large {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 3px;
    color: var(--white);
}

/* Bands Section */
.bands-section {
    padding: 100px 20px;
    background-color: var(--black);
}

.band-featured {
    background-color: var(--dark-gray);
    border: 2px dashed var(--orange-primary);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
}

.band-photo {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 30px;
}

.band-info {
    text-align: center;
}

.band-name-large {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--orange-primary);
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.band-role {
    font-size: 1rem;
    color: var(--gray-text);
    margin-bottom: 15px;
}

.band-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.band-link:hover {
    color: var(--orange-primary);
}

.bands-opening {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.opening-card {
    background-color: var(--dark-gray);
    border: 1px solid #333;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.opening-card:hover {
    transform: translateY(-5px);
    border-color: var(--orange-primary);
}

.opening-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--orange-primary);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.opening-role {
    color: var(--gray-text);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Dates Section */
.dates-section {
    padding: 100px 20px;
    background-color: #0a0a0a;
}

.dates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.date-card {
    position: relative;
    background-color: var(--dark-gray);
    border: 1px solid #333;
    border-radius: 10px;
    padding: 26px 24px 30px;
    transition: all 0.3s ease;
    overflow: hidden;
}

/* brilho de borda quando passa o mouse */
.date-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 0% 0%,
            rgba(255, 140, 66, 0.45) 0,
            transparent 55%),
        radial-gradient(circle at 100% 100%,
            rgba(184, 160, 85, 0.35) 0,
            transparent 55%);
    opacity: 0;
    pointer-events: none;
    mix-blend-mode: screen;
    transition: opacity 0.3s ease;
}

.date-card:hover {
    transform: translateY(-5px);
    border-color: var(--orange-primary);
    box-shadow: 0 12px 35px rgba(255, 140, 66, 0.25);
}

.date-card:hover::before {
    opacity: 1;
}

/* topo do card: ícone + data */
.date-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

/* ícone tipo raio, com moldura */
.date-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: var(--orange-primary);
    /* stroke do SVG */
    fill: rgba(255, 140, 66, 0.12);
    /* preenchimento leve */
    padding: 4px;
    border-radius: 8px;
    box-shadow:
        0 0 0 1px rgba(255, 140, 66, 0.6),
        0 0 18px rgba(255, 140, 66, 0.5);
    background: radial-gradient(circle at 30% 0%,
            rgba(255, 255, 255, 0.18) 0,
            transparent 55%);
}

/* ajusta o path do SVG pra usar a cor */
.date-icon path {
    stroke: currentColor;
    fill: currentColor;
}

/* data grande ao lado do ícone */
.date-day {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 2px;
    color: var(--orange-primary);
    margin: 0;
}

/* restante das infos do card */
.date-location {
    margin-bottom: 20px;
}

.date-city {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.date-venue {
    font-size: 0.9rem;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-ticket {
    width: 100%;
    justify-content: center;
    background-color: var(--orange-primary);
    color: var(--white);
    padding: 12px 20px;
    font-size: 0.9rem;
    border: 2px solid var(--orange-primary);
    transition: all 0.3s ease;
}

.btn-ticket:hover {
    background-color: transparent;
    border-color: var(--orange-primary);
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    background-color: var(--black);
    text-align: center;
}

.cta-text {
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--white);
}

.btn-large {
    padding: 20px 50px;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    padding: 60px 20px 30px;
    background-color: #0a0a0a;
    text-align: center;
    border-top: 1px solid #333;
}

.footer-producer {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.footer-credits {
    font-size: 0.9rem;
    color: var(--gray-text);
    margin-bottom: 8px;
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--gray-text);
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .artists-grid {
        grid-template-columns: 1fr;
    }

    .dates-grid {
        grid-template-columns: 1fr;
    }

    .hero-bands {
        flex-direction: column;
    }

    .band-logo {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .special-name {
        font-size: 2rem;
    }
}

/* Smooth Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.artist-card,
.date-card,
.opening-card {
    animation: fadeIn 0.6s ease-out;
}

/* Bands Section */
.bands-section {
    padding: 100px 20px;
    background: radial-gradient(circle at top, #151515 0%, #050505 55%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.bands-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 0, rgba(255, 140, 66, 0.15), transparent 55%),
                radial-gradient(circle at 90% 100%, rgba(184, 160, 85, 0.14), transparent 55%);
    opacity: 0.8;
    pointer-events: none;
}

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

.bands-subtitle {
    max-width: 720px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 1rem;
    font-weight: 300;
    color: var(--gray-text);
}

/* Destaque principal (PHORNAX) */
.band-featured {
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.12), rgba(0, 0, 0, 0.8));
    border-radius: 16px;
    border: 1px solid rgba(255, 140, 66, 0.4);
    padding: 32px;
    display: flex;
    gap: 32px;
    align-items: stretch;
    margin-bottom: 48px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(4px);
}

.band-featured::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.band-photo-wrapper {
    position: relative;
    flex: 0 0 38%;
    max-width: 420px;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
     margin: 0 auto; 
}

.band-photo {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 0.5s ease;
}

.band-featured:hover .band-photo {
    transform: scale(1.06);
}

.band-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(255, 140, 66, 0.8);
    color: var(--orange-primary);
}

.band-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.band-name-large {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3rem);
    color: var(--white);
    letter-spacing: 4px;
    margin-bottom: 4px;
}

.band-role {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-accent);
    margin-bottom: 8px;
}

.band-description {
    font-size: 0.95rem;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 12px;
}

.band-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.band-tag {
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-text);
    background: rgba(0, 0, 0, 0.6);
}

.band-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    opacity: 0.9;
    transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.band-link-cta {
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 140, 66, 0.6);
    background: rgba(0, 0, 0, 0.7);
    width: fit-content;
}

.band-link-cta:hover {
    color: var(--orange-primary);
    opacity: 1;
    transform: translateY(-1px);
}

/* Aberturas */
.bands-opening {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.opening-card {
    background: radial-gradient(circle at top, rgba(255, 140, 66, 0.12), #111);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 22px 26px;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.opening-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 140, 66, 0.22), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.opening-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 140, 66, 0.65);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.9);
}

.opening-card:hover::before {
    opacity: 1;
}

.opening-header {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 10px;
}

.opening-badge {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--orange-primary);
}

.opening-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.9rem;
    color: var(--white);
    letter-spacing: 3px;
    margin-bottom: 6px;
}

.opening-style {
    font-size: 0.9rem;
    color: var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.opening-role {
    font-size: 0.9rem;
    color: var(--gray-text);
    line-height: 1.6;
}

/* Responsivo */
@media (max-width: 900px) {
    .band-featured {
        flex-direction: column;
        padding: 24px;
    }

    .band-photo-wrapper {
        max-width: 100%;
        flex: 1 1 auto;
    }

    .band-info {
        align-items: flex-start;
    }
}
