/* Reset de márgenes y paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilos para el body */
body {
    font-family: Arial, sans-serif;
    padding-top: 50px; /* Para evitar que el header tape el contenido */
    background-color: black;
}

/* Fondo del video */
.video-background {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: transparent;
    text-align: center;
    color: white;
}

.logo {
    width: 300px;
    height: 300px;
}

/* Estilos del header */
header {
    background-color: black;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

nav ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.social-icons {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.social-icons .icon {
    margin-left: 10px;
    color: white;
    text-decoration: none;
    font-size: 18px;
}
.icons.iconos{
    width: 20px;
}

/* Estilos del footer */
footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Ajustes para pantallas pequeñas (móviles) */
@media (max-width: 767px) {
    /* Ajuste del logo */
    .logo {
        width: 250px; /* Ajustamos el tamaño del logo para pantallas pequeñas */
        height: 850px;
    }

    /* Ajustes al menú */
    nav ul {
        flex-direction: column; /* Menú en columna */
        text-align: center;
    }

    nav ul li {
        margin: 10px 0; /* Espaciado más grande entre los enlaces */
    }

    /* Ajustes en el contenedor de texto debajo del logo */
    .bajo_logo p {
        font-size: 14px; /* Reducir tamaño del texto en pantallas pequeñas */
        padding: 0 15px;
    }

    .social-icons {
        right: 10px; /* Reducir espacio en móviles */
        top: 10%;
    }

    /* Asegurarse que el video no se corte en pantallas móviles */
    #background-video {
        object-fit: cover; /* Cambiar de cover a contain para no cortar el video */
    }
}

/* Ajustes para pantallas de tabletas */
@media (max-width: 1024px) {
    /* Ajuste del logo */
    .logo {
        width: 250px; /* Ajustar para tabletas */
        height: 150px;
    }

    /* Ajuste del header */
    header {
        padding: 15px 0;
    }

    /* Ajuste del texto en el footer */
    footer p {
        font-size: 16px; /* Aumentamos el tamaño de fuente en tabletas */
    }
}

/* Ajustes para pantallas más grandes (computadoras de escritorio) */
@media (min-width: 1025px) {
    /* Logo más grande para pantallas grandes */
    .logo {
        width: 420px;
        height: 450x;
    }

    /* Menú en línea para pantallas grandes */
    nav ul {
        flex-direction: row; /* Menú en fila */
    }
}
