/* Estilos generales */
body {
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: #f1f1f1;
    margin: 0;
    padding: 0;
}

h1, h2, h5 {
    font-family: 'Roboto', sans-serif;
}

.container {
    max-width: 1200px;
    margin: auto;
}

/* Sección de Bienvenida */
.header-section {
    background-image: url('/imágenes/carolina_header.webp');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
}

.header-section h1 {
    font-size: 48px;
    font-weight: bold;
    color: #ffc107;
    text-shadow: 2px 2px #000;
}

.header-section p {
    font-size: 30px;
    color: #f1f1f1;
}

/* Formulario */
.form-section {
    background-color: #121212;
    padding: 50px 0;
}

.form-section h2 {
    color: #ffc107;
    text-align: center;
    font-size: 45px;
}

.form-label {
    color: #ffc107;
}

.form-control, .form-select {
    background-color: #333;
    color: #fff;
    border: 1px solid #ffc107;
}

.form-control:focus, .form-select:focus {
    border-color: #ff5722;
    box-shadow: none;
}

.btn-primary {
    background-color: #ff5722;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #e64a19;
}

/* Sección de Recomendaciones */
.recommendations {
    background-color: #c0b8b8;
    padding: 50px 0;
}

.card {
    background-color: #292929;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: scale(1.05);
}

.card-title {
    color: #ffc107;
}

.card-text {
    color: #111010;
}

/* Sección de Búsqueda de Películas */
.movie-search-section {
    background-color: #2c1a02;
    padding: 50px 0;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
}

.movie-info-section {
    background-color: #333;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.movie-info-section h3 {
    color: #ffc107;
}

.movie-info-section p {
    color: #f1f1f1;
}

.input-group .form-control {
    background-color: #444;
    color: #f1f1f1;
    border: 1px solid #ffc107;
}

.footer {
    background-color: #121212;
    color: #f1f1f1;
    padding: 20px 0;
    text-align: center;
}


