@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IM+Fell+English&display=swap');

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

body {
    background-color: #0F0F0F; /* Preto ônix */
    color: #E6E6E6; /* Cinza claro fantasmagórico */
    line-height: 1.6;
    font-family: 'IM Fell English', serif;
    background-image: url('data:image/svg+xml,%3Csvg xmlns="https://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"%3E%3Crect width="100" height="100" fill="%230F0F0F"/%3E%3Cg opacity="0.05"%3E%3Cpath d="M0 0h100v100H0z" fill="none" stroke="%23660000" stroke-width="1"/%3E%3Cpath d="M10 10h80v80H10z" fill="none" stroke="%233C0066" stroke-width="1"/%3E%3C/g%3E%3C/svg%3E');
}

/* Header com Banner */
header {
    background-image: url('../images/outro-2.jpeg'); /* Ajuste o caminho */
    background-size: 100% 100%; /* Estica para 100% da largura e altura */
    background-repeat: no-repeat;
    background-position: center;
    width: 100%; /* Garante 100% da largura */
    min-height: 300px; /* Altura mínima ajustável */
    position: relative;
    padding: 1.5rem;
    border-bottom: 3px solid #660000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
}

.menu-toggle {
    display: none; /* Oculto por padrão em telas grandes */
    background: none;
    color: #E6E6E6; /* Cor fixa */
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 20;
    border-radius: 5px; /* Cantos arredondados */
    text-shadow: 1px 1px 2px #000000; /* Sombra para visibilidade */
    background-color: rgba(60, 0, 102, 0.7); /* Fundo roxo semi-transparente */
}

.menu-toggle:hover {
    background-color: rgba(102, 0, 0, 0.7); /* Vermelho ao hover */
    color: #FFFFFF;
}

nav {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: rgba(15, 15, 15, 0.8); /* Fundo semi-transparente preto */
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid #3C0066;
    display: flex; /* Para alinhamento */
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px;
}

nav a {
    color: #E6E6E6;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    transition: color 0.3s, text-shadow 0.3s;
    text-shadow: 1px 1px 2px #000000;
}

nav a:hover {
    color: #660000;
    text-shadow: 0 0 5px #660000, 1px 1px 2px #000000;
}

/* Main e Seções */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
}

section {
    margin-bottom: 50px;
    background: #252525;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
    border: 1px solid #3C0066;
    background-image: linear-gradient(rgba(60, 0, 102, 0.1), rgba(60, 0, 102, 0.1)), url('data:image/svg+xml,%3Csvg xmlns="https://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"%3E%3Cg opacity="0.1"%3E%3Cpath d="M0 0h20v20H0z" fill="none" stroke="%23660000" stroke-width="0.5"/%3E%3C/g%3E%3C/svg%3E');
    position: relative; /* Para posicionar a mensagem */
}

section h2 {
    color: #3C0066;
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px #000000;
}

.coming-soon {
    display: none; /* Oculto por padrão */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: #660000; /* Vermelho carmesim */
    text-shadow: 2px 2px 4px #000000;
    background: rgba(15, 15, 15, 0.9);
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 10;
    border: 1px solid #3C0066;
}

/* Estilos do Carrossel */
.carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.carousel-container {
    display: flex;
    overflow: hidden;
    width: 100%;
    scroll-behavior: smooth;
    transition: transform 0.3s ease;
    touch-action: pan-x; /* Permite deslizar com os dedos */
}

.carousel-container > div {
    background-color: #252525;
    padding: 12px;
    border-radius: 8px;
    min-width: 190px;
    text-align: center;
    margin-right: 15px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
    border: 2px solid #660000;
    box-shadow: inset 0 0 5px #3C0066;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 300px; /* Altura fixa para os cards */
}

.carousel-container > div:hover {
    background-color: #660000;
    transform: scale(1.05);
    box-shadow: 0 0 15px #660000, inset 0 0 10px #3C0066;
}

.carousel-container img {
    width: 100%;
    height: 170px; /* Altura fixa para a thumbnail */
    object-fit: contain; /* Mostra a capa inteira sem cortar */
    background-color: #0F0F0F;
    border-radius: 5px;
}

.carousel-container .card-title {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    margin: 10px 0;
    text-shadow: 1px 1px 2px #000000;
}

.carousel-container .card-genre {
    font-size: 0.9rem;
    color: #E6E6E6;
    text-shadow: 1px 1px 2px #000000;
}

.prev, .next {
    background-color: #3C0066;
    color: #E6E6E6;
    border: 1px solid #660000;
    padding: 12px;
    cursor: pointer;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 8px #000000;
}

.prev:hover, .next:hover {
    background-color: #660000;
    box-shadow: 0 0 12px #660000;
}

.prev.disabled, .next.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    box-shadow: none;
}

/* Formulário de Contato */
#contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
}

#contact-form label {
    font-family: 'Cinzel', serif;
    font-weight: bold;
    color: #E6E6E6;
    text-shadow: 1px 1px 2px #000000;
}

#contact-form input,
#contact-form textarea {
    padding: 10px;
    border: 1px solid #3C0066;
    border-radius: 5px;
    background-color: #252525;
    color: #E6E6E6;
    font-family: 'IM Fell English', serif;
    transition: border-color 0.3s;
}

#contact-form input:focus,
#contact-form textarea:focus {
    border-color: #660000;
    outline: none;
    box-shadow: 0 0 5px #660000;
}

#contact-form button {
    background-color: #3C0066;
    color: #E6E6E6;
    padding: 12px;
    border: 1px solid #660000;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Cinzel', serif;
    transition: background-color 0.3s, box-shadow 0.3s;
}

#contact-form button:hover {
    background-color: #660000;
    box-shadow: 0 0 10px #660000;
}

/* Footer */
footer {
    background-color: #0F0F0F;
    color: #E6E6E6;
    text-align: center;
    padding: 1.5rem;
    position: relative;
    bottom: 0;
    width: 100%;
    border-top: 2px solid #3C0066;
    text-shadow: 1px 1px 2px #000000;
}

/* Responsividade */
@media (max-width: 1024px) { /* Tablets */
    header {
        min-height: 250px; /* Reduz altura em tablets */
    }

    main {
        padding: 20px;
    }

    section {
        padding: 15px;
    }

    .carousel-container > div {
        min-width: 180px;
        padding: 10px;
        height: 280px; /* Ajuste para tablets */
    }

    .carousel-container img {
        height: 155px;
    }

    .prev, .next {
        width: 30px;
        height: 30px;
        padding: 10px;
    }
}

@media (max-width: 768px) { /* Mobiles */
    .menu-toggle {
        display: block; /* Exibe o botão hamburguer */
    }

    nav {
        display: none; /* Oculta o menu por padrão */
        position: fixed;
        top: 0;
        left: 0;
        width: 250px;
        height: 100%;
        background: #0F0F0F;
        padding: 60px 20px 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5); /* Sombra para destaque */
    }

    .nav-menu {
        flex-direction: column;
        gap: 20px;
    }

    nav.active {
        display: block;
        transform: translateX(0); /* Mostra o menu */
    }

    header {
        min-height: 150px; /* Altura menor para mobiles */
        background-size: cover;
        background-position: center;
    }

    main {
        padding: 10px;
        max-width: 100%;
    }

    section {
        margin-bottom: 30px;
        padding: 10px;
    }

    section h2 {
        font-size: 1.5rem;
    }

    .carousel-container > div {
        min-width: 150px;
        padding: 8px;
        height: 250px; /* Ajuste para mobiles */
    }

    .carousel-container img {
        height: 130px;
    }

    .prev, .next {
        width: 25px;
        height: 25px;
        padding: 8px;
    }

    #contact-form {
        max-width: 100%;
    }

    #contact-form input,
    #contact-form textarea {
        padding: 8px;
    }

    #contact-form button {
        padding: 10px;
    }
}
