/* ===== IMPORTACIÓN DE LAS TIPOGRAFÍAS ===== */
@font-face {
    font-family: 'Idontknow';
    src: url('fonts/idontknow-regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Tipografía narrow light para el footer */
@font-face {
    font-family: 'Narrow Light';
    src: url('fonts/idontknow-regular.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-stretch: condensed;
    font-display: swap;
}

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fondo blanco */
body {
    background-color: #ffffff;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    display: flex;
    justify-content: center;
    align-items: center;
}

html {
    height: -webkit-fill-available;
}

/* Contenedor principal */
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    padding: 20px;
    position: relative;
}

/* ===== LOGO SUPERIOR IZQUIERDA CON SUBMENÚ HOVER ===== */
.top-left-wrapper {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 200;
    display: inline-block;
}

.top-left-image {
    display: block;
    width: 30px;
    height: auto;
    transition: opacity 0.3s ease;
}

.top-left-image img {
    width: 100%;
    height: auto;
    display: block;
}

.top-left-image:hover {
    opacity: 0.7;
}

/* Submenú social */
.submenu-social {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    margin-top: 8px;
    text-align: left;
    box-shadow: none;
    border: none;
}

.submenu-social a {
    font-family: 'Idontknow', system-ui, -apple-system, sans-serif;
    font-size: 12px;
    font-weight: normal;
    color: #000000;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
    padding: 8px 12px;
    transition: color 0.2s ease;
    letter-spacing: 0.5px;
    white-space: nowrap;
    background-color: transparent;
    position: relative;
    z-index: 1;
}

.submenu-social a:hover {
    color: #ff0000;
    background-color: transparent;
}

/* Imagen hover desplazada más a la izquierda (35%) */
.submenu-social a:hover::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 28%;
    transform: translate(-35%, -50%);
    width: 100px;
    height: 100px;
    background-image: url('https://cdn.shopify.com/s/files/1/0861/3383/4056/files/Proyecto_nuevo_2_4521fc53-c546-4db0-abf1-7a3b993c8d5d.png?v=1777528222');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 10;
    pointer-events: none;
}

/* Mostrar submenú al hacer hover sobre el contenedor */
.top-left-wrapper:hover .submenu-social {
    opacity: 1;
    visibility: visible;
}

/* ===== MENÚ SUPERIOR CENTRO ===== */
.menu-top {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.menu-item {
    position: relative;
    text-align: center;
}

.music-link {
    font-family: 'Idontknow', system-ui, -apple-system, sans-serif;
    font-size: 18px;
    font-weight: normal;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: color 0.3s ease;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.music-link:hover {
    color: #ff0000;
}

/* Imagen hover desplazada más a la izquierda (35%) */
.music-link:hover::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 35%;
    transform: translate(-35%, -50%);
    width: 150px;
    height: 150px;
    background-image: url('https://cdn.shopify.com/s/files/1/0861/3383/4056/files/Proyecto_nuevo_2_4521fc53-c546-4db0-abf1-7a3b993c8d5d.png?v=1777528222');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 10;
    pointer-events: none;
}

/* Submenu */
.submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    margin-top: 8px;
    text-align: center;
}

.submenu a {
    font-family: 'Idontknow', system-ui, -apple-system, sans-serif;
    font-size: 11px;
    font-weight: normal;
    color: #000000;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    padding: 4px 0;
    transition: color 0.2s ease;
    letter-spacing: 0.5px;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.submenu a:hover {
    color: #ff0000;
}

/* Imagen hover desplazada más a la izquierda (35%) */
.submenu a:hover::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 35%;
    transform: translate(-35%, -50%);
    width: 100px;
    height: 100px;
    background-image: url('https://cdn.shopify.com/s/files/1/0861/3383/4056/files/Proyecto_nuevo_2_4521fc53-c546-4db0-abf1-7a3b993c8d5d.png?v=1777528222');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 10;
    pointer-events: none;
}

.menu-item:hover .submenu {
    opacity: 1;
    visibility: visible;
}

/* ===== SHOP EN LA IZQUIERDA CENTRADO ===== */
.shop-left {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.shop-left a {
    font-family: 'Idontknow', system-ui, -apple-system, sans-serif;
    font-size: 18px;
    font-weight: normal;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.3s ease;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    display: inline-block;
    position: relative;
    z-index: 1;
}

.shop-left a:hover {
    color: #ff0000;
}

.shop-left a:hover::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    width: 150px;
    height: 150px;
    background-image: url('https://cdn.shopify.com/s/files/1/0861/3383/4056/files/Proyecto_nuevo_2_4521fc53-c546-4db0-abf1-7a3b993c8d5d.png?v=1777528222');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 10;
    pointer-events: none;
}

/* ===== CONTACT EN LA DERECHA CENTRADO ===== */
.contact-right {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.contact-right a {
    font-family: 'Idontknow', system-ui, -apple-system, sans-serif;
    font-size: 18px;
    font-weight: normal;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.3s ease;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.contact-right a:hover {
    color: #ff0000;
}

.contact-right a:hover::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    width: 150px;
    height: 150px;
    background-image: url('https://cdn.shopify.com/s/files/1/0861/3383/4056/files/Proyecto_nuevo_2_4521fc53-c546-4db0-abf1-7a3b993c8d5d.png?v=1777528222');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 10;
    pointer-events: none;
}

/* Video */
.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

video {
    width: 550px;
    max-width: 92%;
    height: auto;
    object-fit: contain;
}

/* Footer */
.footer {
    text-align: center;
    padding: 0 10px 10px 10px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

.copyright {
    font-family: 'Narrow Light', 'Arial Narrow', system-ui, -apple-system, sans-serif;
    font-weight: 300;
    font-size: 11px;
    color: #000000;
    letter-spacing: 0.5px;
}

.copyright a {
    font-family: 'Narrow Light', 'Arial Narrow', system-ui, -apple-system, sans-serif;
    font-weight: 300;
    color: #000000;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.copyright a:hover {
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 768px) {
    .container { padding: 15px; }
    .top-left-wrapper { top: 15px; left: 15px; }
    .top-left-image { width: 25px; }
    .submenu-social a { font-size: 10px; padding: 6px 10px; }
    .submenu-social a:hover::after { width: 80px; height: 80px; left: 35%; transform: translate(-35%, -50%); }
    .menu-top { top: 15px; }
    .music-link { font-size: 14px; }
    .music-link:hover::after { width: 100px; height: 100px; left: 35%; transform: translate(-35%, -50%); }
    .submenu a { font-size: 9px; padding: 3px 0; }
    .submenu a:hover::after { width: 70px; height: 70px; left: 35%; transform: translate(-35%, -50%); }
    .shop-left { left: 15px; }
    .shop-left a { font-size: 14px; }
    .shop-left a:hover::after { width: 100px; height: 100px; }
    .contact-right { right: 15px; }
    .contact-right a { font-size: 14px; }
    .contact-right a:hover::after { width: 100px; height: 100px; }
    video { width: 380px; max-width: 95%; }
    .copyright { font-size: 9px; }
    .footer { padding: 0 10px 8px 10px; }
}

@media (max-width: 480px) {
    video { width: 320px; }
    .copyright { font-size: 8px; }
    .footer { padding: 0 10px 6px 10px; }
    .top-left-image { width: 20px; }
    .submenu-social a { font-size: 9px; padding: 5px 8px; }
    .submenu-social a:hover::after { width: 70px; height: 70px; left: 35%; transform: translate(-35%, -50%); }
    .music-link { font-size: 12px; }
    .music-link:hover::after { width: 80px; height: 80px; left: 35%; transform: translate(-35%, -50%); }
    .submenu a { font-size: 8px; padding: 2px 0; }
    .submenu a:hover::after { width: 60px; height: 60px; left: 35%; transform: translate(-35%, -50%); }
    .shop-left a { font-size: 12px; }
    .shop-left a:hover::after { width: 80px; height: 80px; }
    .contact-right a { font-size: 12px; }
    .contact-right a:hover::after { width: 80px; height: 80px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    video { width: 500px; }
    .copyright { font-size: 10px; }
}

@media (max-width: 768px) and (orientation: landscape) {
    video { width: 350px; max-height: 85vh; }
    .copyright { font-size: 8px; }
    .footer { padding: 0 10px 5px 10px; }
    .menu-top { top: 10px; }
    .top-left-wrapper { top: 10px; left: 10px; }
    .top-left-image { width: 20px; }
    .submenu-social a { font-size: 8px; padding: 4px 6px; }
    .submenu-social a:hover::after { width: 60px; height: 60px; left: 35%; transform: translate(-35%, -50%); }
    .music-link { font-size: 12px; }
    .music-link:hover::after { width: 70px; height: 70px; left: 35%; transform: translate(-35%, -50%); }
    .submenu a { font-size: 8px; padding: 2px 0; }
    .submenu a:hover::after { width: 50px; height: 50px; left: 35%; transform: translate(-35%, -50%); }
    .shop-left { left: 10px; }
    .shop-left a { font-size: 12px; }
    .shop-left a:hover::after { width: 70px; height: 70px; }
    .contact-right { right: 10px; }
    .contact-right a { font-size: 12px; }
    .contact-right a:hover::after { width: 70px; height: 70px; }
}

/* Elimina los controles nativos del video */
video::-webkit-media-controls { display: none !important; }
video::-webkit-media-controls-play-button { display: block; }