
@import url('https://fonts.googleapis.com/css2?family=Metal+Mania&family=Roboto:wght@400;700&display=swap');


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


body {
    font-family: 'Roboto', sans-serif; 
    background-color: #1a1a1a; 
    color: #f5f5f5; 
    line-height: 1.6; 
}

html {
    scroll-behavior: smooth; 
}


.container {
    max-width: 1100px; 
    margin: 0 auto; 
    padding: 4rem 2rem; 
}


header {
    background-color: rgba(0, 0, 0, 0.7); 
    backdrop-filter: blur(10px); 
    border-bottom: 1px solid #444; 
    width: 100%;
    position: fixed; 
    top: 0;
    left: 0;
    z-index: 1000; 
}


header nav {
    display: flex;
    
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
}


.logo {
    font-family: 'Metal Mania', cursive;
    font-size: 2.5rem;
    color: #f5f5f5;
    text-decoration: none;
    margin-right: auto; 
}

nav ul {
    display: flex; 
    list-style: none; 
}

nav ul li {
    margin-left: 2rem; 
}

nav ul li a {
    color: #f5f5f5;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s ease; 
}

nav ul li a:hover {
    color: #c1121f; 
}

#preloader {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a; 
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; 
    transition: opacity 0.75s ease, visibility 0.75s ease; 
}


#preloader.loaded {
    opacity: 0;
    visibility: hidden; 
}

.loader {
    width: 80px; 
    height: 80px;
    
    background-image: url('../images/loader.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    
    
    animation: spin 1.5s linear infinite;
}


@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


#inicio {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100vh;
    
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
}

#inicio h1 {
    font-family: 'Metal Mania', cursive;
    font-size: 5rem; 
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8); 
}

#inicio h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
    text-transform: uppercase;
}

.dbc-logo {
    width: 150px; 
    margin-bottom: 2rem; 
    opacity: 0.8; 
    filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.5)); 
    z-index: 0; 
    position: relative; 
    animation: idleanimation 5s infinite; 
    animation-timing-function: ease-in-out; 
    animation-delay: 0.5s; 
    animation-fill-mode: forwards; 
    animation-direction: alternate; 
    animation-iteration-count: infinite; 
}


#countdown-container {
    display: flex; 
    justify-content: center;
    gap: 1.5rem; 
    margin: 3rem 0; 
}

.countdown-item {
    text-align: center;
}

.countdown-item span {
    display: block;
    font-family: 'Metal Mania', cursive; 
    font-size: 4rem; 
    color: #f5f5f5;
    line-height: 1;
}

.countdown-item p {
    font-size: 1rem;
    text-transform: uppercase;
    color: #aaa;
}


@media (max-width: 768px) {
    .countdown-item span {
        font-size: 2.5rem; 
    }
    #countdown-container {
        gap: 1rem;
    }
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
    background-color: #fff;
    color: #1a1a1a;
}




section {
    border-top: 2px solid #333; 
}


section h2 {
    font-family: 'Metal Mania', cursive;
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #c1121f; 
}


#detalhes-show {
    background-color: #212121; 
}

.show-info {
    display: flex; 
    align-items: center;
    gap: 3rem; 
}

.info-text, .map-container {
    flex: 1; 
}

.info-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.info-text strong {
    color: #c1121f; 
    font-weight: 700;
}

.map-container {
    
    
    width: 100%;
    height: 400px; 
    position: relative; 
    overflow: hidden; 
    border-radius: 10px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); 
    background-color: #2a2a2a; 
    display: flex; 
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0; 
}


.band-members {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 2rem;
}

.member-card {
    background-color: #2a2a2a;
    border: 1px solid #444;
    text-align: center;
    padding: 2rem 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member-card:hover {
    transform: translateY(-10px); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.5); 
}

.member-card h3 {
    font-family: 'Metal Mania', cursive;
    font-size: 2rem;
    color: #f5f5f5;
    margin-bottom: 0.5rem;
}

.member-card p {
    color: #aaa;
    font-weight: bold;
}

.member-card-extra {
    background-color: #2a2a2a;
    border: 1px solid #444;
    text-align: center;
    padding: 2rem 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member-card-extra:hover {
    transform: translateY(-10px); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.5); 
}

.member-card-extra h3 {
    font-family: 'Metal Mania', cursive;
    font-size: 2rem;
    color: #f5f5f5;
    margin-bottom: 0.5rem;
}

.member-card-extra p {
    color: #aaa;
    font-weight: bold;
}

.member-card-extra .p-forever {
    font-style: italic;
    color: #aaa;
    font-weight: bold;
    opacity: 0.6; 
    transition: color 0.3s ease, font-style 0.3s ease; 
}

.p-forever:hover {
    font-style: italic;
    color: #c1121f; 
    font-weight: bold;
    opacity: 1; 
    text-decoration: underline; 
    cursor: pointer; 
    transition: color 0.3s ease, font-style 0.3s ease; 
    text-decoration: none; 
    text-decoration-color: #c1121f; 
    text-decoration-thickness: 2px; 
    text-underline-offset: 2px; 
    text-decoration-style: solid; 
    text-decoration-line: underline; 
}




#setlist {
    background-color: #212121;
}

.setlist-tracks {
    list-style: none; 
    padding-left: 0;
    max-width: 600px; 
    margin: 0 auto; 
    counter-reset: setlist-counter; 
}

.setlist-tracks li {
    font-size: 1.2rem;
    padding: 1rem;
    border-bottom: 1px solid #444;
    position: relative;
    cursor: pointer;
    padding-left: 4rem; 
    transition: background-color 0.3s ease;
}

.setlist-tracks li:hover {
    background-color: #333;
}


.setlist-tracks li::before {
    counter-increment: setlist-counter; 
    content: counter(setlist-counter, decimal-leading-zero); 
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Metal Mania', cursive;
    font-size: 2.5rem;
    color: #c1121f;
    width: 3rem;
    text-align: center;
}


#spotify-player-container {
    margin-top: 3rem; 
    height: 90px; 
    transition: height 0.3s ease; 
}

#spotify-player-container iframe {
    border-radius: 12px; 
    width: 100%;
    height: 100%;
}

#discography {
    background-color: #212121;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.album-card {
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.album-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.album-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.7);
}


#modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

#modal-content {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    gap: 2rem;
    max-width: 800px;
    width: 90%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

#modal-overlay.open #modal-content {
    transform: scale(1);
}

#modal-album-cover {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

#modal-album-info h3 {
    font-family: 'Metal Mania', cursive;
    font-size: 2.5rem;
    color: #c1121f;
}

#modal-album-info p {
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 1rem;
}

#modal-album-tracks {
    list-style: decimal;
    padding-left: 20px;
    max-height: 200px;
    overflow-y: auto;
}

#close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

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

.gallery-item {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    position: relative; 
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}


.gallery-item::after {
    content: '👁️'; 
    font-size: 2rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid #444;
    color: #aaa;
    font-size: 0.9rem;
}

footer .social-links {
    margin-top: 1rem; 
}

footer .social-links a {
    color: #f5f5f5; 
    text-decoration: none; 
    margin: 0 1rem; 
    font-weight: bold; 
}

footer .social-links a:hover {
    color: #c1121f; 
}

@keyframes idleanimation {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }

    0%, 100% {
        transform: rotate(0deg) translateY(0) translateX(0); 
    }
    25% {
        transform: translateY(-20px) rotate(-10deg) translateX(-20%); 
    }
    50% {
        transform: translateY(-20px) rotate(10deg) translateX(20%); 
    }
}



@media (max-width: 768px) {

    
    section h2 {
        font-size: 2.8rem; 
    }

    .container {
        padding: 3rem 1rem; 
    }
    

    
    .hamburger {
        display: block; 
        cursor: pointer;
    }

    .hamburger .line {
        width: 30px;
        height: 3px;
        background-color: #f5f5f5;
        margin: 6px 0;
    }
    
    nav ul {
        
        display: none; 
        position: fixed;
        top: 70px; 
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: rgba(0, 0, 0, 0.95);
        
        
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
    }
    
    
    nav.nav-active ul {
        display: flex; 
    }
    
    nav ul li {
        margin-left: 0; 
    }

    nav ul li a {
        font-size: 1.5rem; 
    }
    

    
    #inicio {
        background-attachment: scroll; 
    }
    #inicio h1 {
        font-size: 3rem; 
    }
    #inicio h2 {
        font-size: 1.2rem;
    }


    
    .show-info {
        flex-direction: column; 
    }


    
    .band-members {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
        gap: 1rem;
    }

    #modal-content {
        flex-direction: column; 
        align-items: center;    
        padding: 1.5rem 1rem;     
        max-height: 85vh;       
        overflow-y: auto;       
    }

    #modal-album-cover {
        width: 100%;            
        max-width: 250px;       
        height: auto;           
    }

    #modal-album-info {
        text-align: center;     
    }

    #modal-album-info h3 {
        font-size: 2rem;        
    }

    #modal-album-tracks {
        max-height: 150px;      
        text-align: left;       
        padding-left: 30px;
    }
}
