@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: rgb(245,245,245);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    background-color: rgb(245,245,245);
    background-image: url(../images/header-irlanda.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 0vh;
}

.menu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    padding: 20px;
}

.logo img {
    width: 50px;
    height: 50px;
    vertical-align: middle;
}

.menu .navbar ul {
    display: flex;
    align-items: center;
    margin: 0;
}

.menu .navbar ul li {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menu .navbar ul li a {
    display: inline-block;
    font-size: 18px;
    padding: 20px;
    color: #fffdfc;
    font-weight: 600;
    line-height: 25px;
}

#menu {
    display: none;
}

.menu-icono {
    width: 25px;
}

.menu label {
    cursor: pointer;
    display: none;
}

.header-txt {
    text-align: center;
}

.header-txt h1 {
    font-size: 85px;
    color: #fffdfc;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Estilos para la sección Spotify */
.spotify-section {
    padding: 20px;
    background-color: rgb(245, 245, 245);
    text-align: center;
    margin: 40px auto;
    max-width: 1200px;
}

.spotify-section h2 {
    margin-bottom: 20px;
}

.spotify-container {
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

/* Estilos para la galería de videos */
.video-gallery {
    padding: 20px;
    background-color: rgb(245, 245, 245);
    text-align: center;
}

.video-gallery h2 {
    margin: auto auto 20px auto;
}

.video-gallery .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.video-gallery .video-item {
    width: 48%; /* Dos videos por fila */
    margin: 1%;
}

.video-gallery .video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-gallery .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.load-more-container {
    text-align: center;
    margin: 20px 0;
}

.load-more {
    background-color: #000; /* Color negro */
    color: #fff; /* Texto blanco */
    border: none;
    padding: 15px 30px; /* Tamaño más grande */
    cursor: pointer;
    font-size: 20px; /* Texto más grande */
    font-weight: 700; /* Texto más grueso */
    border-radius: 8px; /* Bordes redondeados */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra */
    transition: all 0.3s ease; /* Transición suave */
}

.load-more:hover {
    background-color: #333; /* Cambio de color al pasar el mouse */
}

/* Footer */
.footer {
    background-color: rgb(245,245,245);
    padding: 150px 0 100px 0;
    background-image: url(../images/footer.png);
    background-size: cover;
    background-position: center center;
    text-align: center;
}

.footer ul {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.footer ul li {
    margin: 0 10px; /* Espacio entre cada elemento li */
}

.footer ul li:last-child {
    margin-right: 0; /* Elimina el margen derecho del último elemento li */
}

.footer ul li a {
    color: #1B293A;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: #31527a;
}

.footer-txt {
    margin-top: 0; /* Remueve el margen superior extra */
    border-top: none; /* Elimina la línea superior */
    padding: 0; /* Remueve el padding adicional */
}

.footer-txt p {
    color: #1B293A;
    font-size: 14px; /* Asegúrate de que el tamaño de la fuente sea consistente */
}


/* Responsive styles */
@media(max-width: 991px) {
    .menu {
        padding: 20px;
    }

    .menu label {
        display: initial;
    }

    .menu .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #1b293ad9;
        backdrop-filter: (10px);
        box-shadow: 0px 2px 20px 10px rgba(222, 222, 222, .25);
        display: none;
        border-radius: 5px;
        padding: 0; /* Agregar margen a los lados */
    }

    .menu .navbar ul {
        padding: 0 20px; /* Agregar margen a los lados */
    }

    .menu .navbar ul li {
        width: 100%;
        padding: 10px 0; /* Ajuste del padding para evitar desbordamientos */
        text-align: center; /* Centrar el texto */
        font-size: 16px; /* Reducir el tamaño de fuente */
    }

    .menu .navbar ul li a {
        font-size: 16px; /* Reducir el tamaño de fuente */
        padding: 10px 0; /* Ajuste del padding para evitar desbordamientos */
    }

    #menu:checked ~ .navbar {
        display: initial;
    }

    .header {
        min-height: 0vh;
    }

    .header-content {
        padding: 100px 30px;
    }

    .header-txt h1 {
        font-size: 50px;
    }

    .header-txt p {
        padding: 0;
    }

    .general {
        padding: 30px 30px 0 30px;
    }

    .general-content {
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }

    .video-gallery .video-item {
        width: 100%; /* Un video por fila en pantallas pequeñas */
    }

    .spotify-section {
        margin-top: 50px; /* Agrega un margen superior */
    }

    .logo img {
        content: url('../images/logoazul.png'); /* Cambia la imagen del logo */
    }

    .menu-icono {
        content: url('../images/menuazul.png'); /* Cambia la imagen del menú */
    }
}

@media(max-width: 480px) {
    .video-gallery .video-item {
        width: 100%; /* Un video por fila en pantallas muy pequeñas */
    }

    .last-episode .video-container iframe {
        width: 100%;
        height: auto;
    }
}
