/* FUENTES */
@font-face { font-family: "LasHermanasHeader"; src: url("assets/fonts/file.woff2") format("woff2"); font-display: swap; }
@font-face { font-family: "Thunderbolt"; src: url("assets/fonts/Thunderbolt_family_otf/THUNDERBOLT76-Regular.otf") format("opentype"); font-display: swap; }
@font-face { font-family: "Jacquard12"; src: url("assets/fonts/Jacquard_12/Jacquard12-Regular.ttf") format("truetype"); font-display: swap; }

/* FONDO */
html {
    height: 100%;
    margin: 0;
    padding: 0;
    background: url('assets/bg.gif') repeat top left fixed;
    background-size: auto;
    background-color: #000;
}

body {
    min-height: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
    color: #ff66cc;
    font-family: "Thunderbolt", sans-serif;
    cursor: url("assets/cursor01.png"), auto;
}

/* TABLA PRINCIPAL */
.main-table {
    width: 950px;
    margin: 40px auto;
    border: 3px solid #0099cc;
    background: rgba(0, 0, 0, 0.45);
    border-collapse: collapse;
    table-layout: fixed;
}

/* LOGO */
.hero {
    text-align: center;
    padding: 0;
}
.hero-logo {
    display: block;
    width: 100%;
    max-width: 100%;
    max-height: none;
}

/* SIDEBAR */
.sidebar {
    width: 220px;
    padding: 20px;
    border-right: 2px solid #0099cc;
    vertical-align: top;
}

.sidebar a {
    font-family: "Jacquard12", sans-serif;
    font-size: 28px;
    color: #ff66cc;
    text-decoration: none;
    display: block;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.sidebar a:hover { color: #ffffff; }

.side-gif { width: 75%; border: 1px solid #0099cc; margin-top: 15px; }
.side-spacing { margin-bottom: 25px; }

/* CONTENIDO */
.main-content {
    padding: 30px;
    vertical-align: top;
}

.main-content h2 {
    font-family: "LasHermanasHeader", sans-serif;
    color: #ffffff;
    border-bottom: 2px solid #0099cc;
    padding-bottom: 5px;
    margin-top: 35px;
}

.content-block {
    padding: 10px 0;
    line-height: 1.8;
    font-size: 1.05em;
}

.content-block p { margin-bottom: 14px; }

/* INFO ANCHO COMPLETO */
.info-full {
    padding: 40px 60px;
    border-top: 2px solid #0099cc;
}

.info-full h2 {
    font-family: "LasHermanasHeader", sans-serif;
    color: #ffffff;
    border-bottom: 2px solid #0099cc;
    padding-bottom: 5px;
    margin-bottom: 24px;
    margin-top: 0;
}

.info-block {
    font-size: 1.2em;
    line-height: 2;
    color: #ffffff;
}

.info-block p { margin-bottom: 24px; }

/* MÚSICA */
.discography { width: 100%; table-layout: fixed; }
.discography td { width: 50%; padding: 8px; }
.album-card { position: relative; border: 1px solid #0099cc; line-height: 0; }
.album-card img { width: 100%; display: block; }
.overlay {
    position: absolute; inset: 0;
    background: rgba(0, 153, 204, 0.7);
    color: white;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: 0.3s; text-align: center; padding: 10px;
}
.album-card:hover .overlay { opacity: 1; }

/* GIF TIERRA */
.visual-header {
    width: 100%;
    height: 520px;
    position: relative;
    border: 1px solid #0099cc;
    overflow: hidden;
}
.visual-header img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.img-hover { opacity: 0; transition: 0.5s; }
.visual-header:hover .img-hover { opacity: 1; }

/* VIDEOS */
.video-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 16px;
}
.video-item { width: 100%; }
.video-item iframe {
    width: 100%;
    height: 400px;
    display: block;
    border: 1px solid #0099cc;
}
.video-caption {
    color: #ff66cc;
    font-size: 0.8em;
    margin-top: 8px;
    text-align: center;
    line-height: 1.4;
}

/* LINKS Y DECORACIÓN */
a { color: #ff66cc; text-decoration: none; }
a:hover { color: #ffffff; text-decoration: underline; }
hr { border: 0; border-top: 2px solid #0099cc; margin: 30px 0; }
.badges-container { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.footer { text-align: center; padding: 50px 0; border-top: 2px solid #0099cc; }

/* RESPONSIVE CELULAR */
@media (max-width: 960px) {
    .main-table {
        width: 100%;
        margin: 0;
        border-left: none;
        border-right: none;
    }

    .sidebar {
        display: block;
        width: 100%;
        border-right: none;
        border-bottom: 2px solid #0099cc;
        padding: 16px;
    }

    .sidebar a {
        display: inline-block;
        margin-right: 12px;
        margin-bottom: 8px;
        font-size: 24px;
    }

    .side-gif { width: 40%; }

    .main-content {
        display: block;
        width: 100%;
        padding: 16px;
    }

    .visual-header { height: 220px; }

    .discography { display: block; }
    .discography tr { display: block; }
    .discography td { display: block; width: 100%; padding: 4px 0; }

    .video-item iframe { height: 220px; }

    .info-full { padding: 20px 16px; }

    .info-block { font-size: 1.1em; line-height: 1.9; color: #ffffff; }

    .hero-logo { width: 100%; max-height: none; }
}