﻿/* 🎨 Paleta de colores */
:root {
    --color-fondo: #FEE6DA; /* Fondo general */
    --color-principal: #FACFE0; /* Fondo de secciones */
    --color-secundario: #E1CBE2; /* Fondo del header y footer */
    --color-detalles: #B295C3; /* Bordes y botones */
    --color-texto: #333;
    --color-hover: #B2BF93; /* Hover en botones */
    --sombra: rgba(0, 0, 0, 0.1);
}

/* 🔹 Estilos globales */
body {
    background-color: #eae3ea;
    color: var(--color-texto);
    font-family: 'Quicksand', sans-serif;
    margin: 0;
    padding: 0;
}

/* 🔹 Título de la página de detalles */
h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-secundario);
    text-transform: uppercase;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--color-detalles);
    border-radius: 8px;
    box-shadow: 0 4px 12px var(--sombra);
    letter-spacing: 2px;
    transition: all 0.3s ease-in-out;
}

    /* Efecto al pasar el ratón sobre el título */
    h2:hover {
        color: white;
        background: var(--color-hover);
        transform: translateY(-5px);
    }

/* 🎥 Contenedor de los detalles de la película */
.row {
    margin-bottom: 30px;
}

/* 🔹 Estilo de la imagen */
img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px var(--sombra);
}

/* 🔹 Estilo de la columna de detalles */
.col-md-6 p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

    .col-md-6 p strong {
        color: #625768;
    }

/* 🔹 Tráiler */
h3 {
    font-size: 2rem;
    color: #625768;
   
    margin-top: 40px;
}

/* Estilo del contenedor del tráiler */
.embed-responsive {
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px var(--sombra);
}

/* 🔹 Botón "Volver a Cartelera" */
.btn-secondary {
    background: var(--color-detalles);
    border: none;
    color: white;
    padding: 12px 25px;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: background 0.3s ease;
    display: block;
    margin: 20px auto;
}

    .btn-secondary:hover {
        background: var(--color-hover);
    }

/* 📱 Responsividad */
@media (max-width: 768px) {
    .col-md-6 {
        text-align: center;
        margin-bottom: 20px;
    }

    img {
        width: 80%;
        margin: 0 auto;
    }
}
