/* estilos.css */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&family=Roboto:wght@300;400&display=swap');

:root {
    --bg-color: #121212;
    --text-color: #f4f4f4;
    --accent-color: #e50914; /* Rojo rockero */
    --nav-bg: #000000;
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
}

h1, h2, h3 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

/* Header y Navegación */
header {
    background-color: var(--nav-bg);
    padding: 20px;
    text-align: center;
    border-bottom: 3px solid var(--accent-color);
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
    color: var(--accent-color);
    text-shadow: 2px 2px 5px rgba(229, 9, 20, 0.5);
}

nav {
    background-color: #1a1a1a;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--accent-color);
}

/* Contenedor Principal */
main {
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.7);
}

section {
    margin-bottom: 40px;
}

/* Imágenes y Video */
img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.video-container {
    text-align: center;
    margin-top: 20px;
}

/* Carrusel Moderno SOLO con CSS */
.carousel {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid var(--accent-color);
}

.slides {
    display: flex;
    width: 300%; /* Para 3 imágenes */
    transition: transform 0.5s ease-in-out;
}

.slide {
    width: 33.333%;
}

.slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* Ocultar los radio buttons reales */
.carousel input[type="radio"] {
    display: none;
}

/* Lógica del carrusel CSS */
#radio1:checked ~ .slides { transform: translateX(0%); }
#radio2:checked ~ .slides { transform: translateX(-33.333%); }
#radio3:checked ~ .slides { transform: translateX(-66.666%); }

/* Controles del carrusel */
.navigation-manual {
    position: absolute;
    bottom: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.manual-btn {
    border: 2px solid var(--accent-color);
    padding: 5px;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 5px;
    transition: background 0.3s;
}

.manual-btn:hover {
    background: var(--accent-color);
}

/* Formularios */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    font-weight: bold;
    color: var(--accent-color);
}

input[type="text"], input[type="email"], select, textarea {
    padding: 10px;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: #2a2a2a;
    color: white;
}

fieldset {
    border: 1px solid var(--accent-color);
    border-radius: 5px;
    padding: 15px;
}

button {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 15px;
    font-size: 1.2rem;
    font-family: 'Oswald', sans-serif;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
}

button:hover {
    background-color: #b30710;
}

/* Footer */
footer {
    background-color: var(--nav-bg);
    color: #777;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-top: 2px solid var(--accent-color);

/* Hace que el enlace del título herede el estilo original */
header h1 a {
    color: inherit;
    text-decoration: none;
}
}