/* --- home.css: Estilos da Página Inicial --- */

/* Hero Section Estática*/
.hero-section {
    position: relative;
    height: calc(100vh - 70px);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Imagem de Fundo Fixa */
    background: url('../img/ghostshare2.webp') center/cover no-repeat; 
    box-shadow: inset 0 0 100px #000;
}

/* Overlay escuro para o texto aparecer */
.hero-section::before {
    content: '';
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Escurece a imagem de fundo */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    color: #fff;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--dark-purple);
    border-radius: 8px;
    max-width: 90%;
    width: 600px;
    box-shadow: 0 0 30px rgba(179, 0, 255, 0.4);
}

.hero-content h1 {
    font-family: 'Metal Mania', cursive;
    font-size: clamp(3rem, 10vw, 4.5rem);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
    margin: 0 0 1rem 0;
}

.hero-album-cover {
    max-width: 200px;
    border-radius: 8px;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 0 25px rgba(0,0,0,0.8);
}

.hero-buttons {
    display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap;
}

.btn {
    padding: 12px 30px; border-radius: 50px; text-decoration: none; font-weight: bold;
    transition: all 0.3s ease; border: 2px solid transparent;
}
.btn-custom { background-color: var(--primary-color); color: #fff; }
.btn-custom:hover { background-color: #c43bff; transform: translateY(-3px); }
.btn-outline { background-color: transparent; border-color: #fff; color: #fff; }
.btn-outline:hover { background-color: #fff; color: #000; transform: translateY(-3px); }

/* Grid da Discografia */
.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}
.album-card {
    position: relative; overflow: hidden; border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4); cursor: pointer;
}
.album-cover {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease;
}
.album-card:hover .album-cover { transform: scale(1.05); }
.album-info {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: #fff; padding: 1.5rem 1rem 1rem; text-align: center;
}

/* Vídeo Expandido */
.video-section { padding: 4rem 0; }
.iframe-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: auto;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    box-shadow: 0 0 25px rgba(179, 0, 255, 0.5);
    background: #000;
}
.iframe-container iframe {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}