/* =========================================
   VIDEO
========================================= */

.video-container {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}


/* =========================================
   GENERAL
========================================= */

body {
    background-color: black;
    margin: 0;
    padding: 0;
}


/* =========================================
   BANNER / LOGO
========================================= */

.banner {
    display: flex;
    align-items: center;
}

.repeticion {
    flex: 1;
    height: 60px;

    background-image: url("img/star.webp");
    background-repeat: repeat-x;
    background-position: center;
    background-size: auto 60px;
}

.numetal_logo {
    width: 380px;
    display: block;
}


/* =========================================
   LINKS DE REDES
========================================= */

.links-container {
    display: flex;
    justify-content: center;
    gap: 20px;

    margin-bottom: 20px;
}

.links {
    color: yellow;
    display: block;
    text-align: center;
    font-size: 17px;
}


/* =========================================
   TEXTO
========================================= */

p {
    color: white;
    text-align: center;
}

h4 {
    color: rgb(165, 32, 32);
    text-align: center;
}


/* =========================================
   SEPARADOR
========================================= */

.separador {
    border: none;
    height: 1px;
    background: rgb(165, 32, 32);
    opacity: 1;

    margin: 30px auto;
}


/* =========================================
   NAVBAR
========================================= */

.navbar {
    background-image: url("img/navbar_bg.webp");

    margin-bottom: 20px;
}


/* Links del navbar */

.navbar ul {
    list-style: none;

    display: flex;
    justify-content: center;
    align-items: center;

    margin: 0;
    padding: 20px 0;
}

.navbar li {
    margin: 0;
    padding: 0;
}

.nav-link {
    color: white !important;

    text-transform: uppercase;
    letter-spacing: 2px;

    margin: 0 40px;

    font-weight: 800;
}

.nav-link:hover {
    color: yellow !important;
}


/* =========================================
   FOTO PRINCIPAL
========================================= */

.home_pic {
    width: 480px;

    display: block;

    margin: 0 auto;
}


/* =========================================
   FOOTER
========================================= */

footer {
    margin-top: 20px;
}

footer .repeticion {
    width: 100%;
}


/* =========================================
   RESPONSIVE
   CELULARES
========================================= */

@media (max-width: 600px) {


    /* -------------------------------------
       BANNER
    ------------------------------------- */

    .banner {
        flex-direction: column;
        width: 100%;
    }


    /* Estrellas de arriba y abajo del logo */

    .repeticion {
        width: 100%;
        height: 40px;

        background-size: auto 40px;
    }


    /* Logo */

    .numetal_logo {
        width: 280px;
        max-width: 90%;
        height: auto;
    }


    /* -------------------------------------
       REDES SOCIALES
    ------------------------------------- */

    .links-container {
        display: flex;

        flex-wrap: wrap;

        justify-content: center;

        gap: 8px 15px;

        padding: 0 15px;

        margin-bottom: 15px;
    }

    .links {
        font-size: 15px;
    }


    /* -------------------------------------
    NAVBAR
    ------------------------------------- */

    .navbar {
        margin-bottom: 20px;
    }

    .navbar .navbar-nav {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;

        justify-content: center;
        align-items: center;

        width: 100%;

        padding: 10px 5px;

        gap: 0;
    }

    .navbar .nav-item {
        flex: 0 0 auto;
    }

    .navbar .nav-link {
        margin: 0 7px;

        padding: 5px !important;

        font-size: 13px;

        letter-spacing: 1px;

        white-space: nowrap;
    }


    /* -------------------------------------
       FOTO PRINCIPAL
    ------------------------------------- */

    .home_pic {
        width: 90%;
        max-width: 480px;

        height: auto;
    }


    /* -------------------------------------
       TÍTULO
    ------------------------------------- */

    h4 {
        font-size: 18px;

        padding: 0 15px;

        margin-top: 20px;
    }


    /* -------------------------------------
       TEXTO
    ------------------------------------- */

    p {
        font-size: 14px;

        padding: 0 20px;

        line-height: 1.5;
    }


    /* -------------------------------------
       SEPARADOR
    ------------------------------------- */

    .separador {
        margin-left: 15px;
        margin-right: 15px;
    }


    /* -------------------------------------
       FOOTER
    ------------------------------------- */

    footer {
        margin-top: 20px;
    }

}