
@font-face {
    font-family: 'Sora';
    src: url('sora/Sora-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
video::-webkit-media-controls,
video::-webkit-media-controls-enclosure,
video::-webkit-media-controls-panel {
    display: none !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container-menu-2 video{
    display: block;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}
body {
    color: #ffffff;
    font-family: 'Sora', sans-serif;
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* --- Alignment Guidelines & Dots --- */
.grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* Allows clicking elements underneath lines */
    z-index: 2;
}

.grid-dots {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* Allows clicking elements underneath lines */
    z-index: 2;
    filter: invert(100%);
    mix-blend-mode: difference;
}

.line-v {
    position: absolute;
    left: 49.94%;
    top: 0;
    width: 1px;
    height: 100%;
    filter: invert(100%);
    mix-blend-mode: difference;
    z-index: 2;
}

.line-h {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    filter: invert(100%);
    mix-blend-mode: difference;
    z-index: 2;
}

/* Custom percentage heights to match the screenshot layout */
.line-h-1 {
    top: 49.9%;
}

.line-h-2 {
    top: 72.5%;
}
.line-v, .line-h {
    filter: invert(100%);
    mix-blend-mode: difference;
    background-color: #000000; /* needed for filter to work */
}
/* Anchor Dots */

.punto {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #000000;
    border-radius: 1px;
    /* Ligeramente suavizado como los pixeles de la imagen */
    transform: translate(-50%, -50%);

}
.third-cloth{
    background-color: #000000;
}
/* Images Carrousel */
.images-carrousel {
    display: flex;
    gap: 20px;
    background-color: #fff;
    color: #000;
    padding: 40px;
}
.images-carrousel-s {
    width: 100%;
    display: flex;
}
.images-carrousel-s > div {
    width: 50%;
}
.images-carrousel-s img {
    width: 100%;
}
.track-selector{
    height: 150px;
    overflow: auto;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    scrollbar-width: none;
}
.track-selector::-webkit-scrollbar {
    display: none;
}
.images-carrousel > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    
}

.images-carrousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-container {
    position: relative;
}
.img-product-container{
    width: auto;
    height: 100%;
    position: relative;
}
.hover-img {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.img-container:hover .hover-img {
    display: block;
}

.img-container:hover .default-img {
    visibility: hidden;
}

.img-text-center{
    position:relative;
}

.center-text {
    
    position: absolute;
    top: 50%;
    margin-left: 5%;
    text-align:left;
    color:white;
    z-index: 2;
    width: 90%;
}

.txt-right {
    text-align: right;
    font-size: 1.4em;
    font-weight: 400;
}

.img-container img{
    background-color: #000000;
}

.img-container-txt {
    display: flex;
    gap: 10px;
    width: 100%;
    font-size: 1em;
}
.thin-font{
    font-family: 'Sora', sans-serif;
    font-weight: 100;
    font-size: 3.2em;
}
.bold-font{
    font-size: 3.2em;
    font-weight: 700;
}
.semibold-font {
    font-size: 4em;
    font-weight: 400;
}


.img-container-table{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0px;
    width: 100%;
}
.img-container-table > * {
    padding: 0px 5px 10px 0px;
}

.txt-span-1{
    text-align: right;
}
.txt-span-1 a {
    color: inherit;
    text-decoration: none;
}
.txt-span-2{
    text-align: left;
}

/* Posicionamiento preciso en la cuadrícula de 3x3 */

/* Fila Superior */
.p1 {
    top: 25%;
    left: 18%;
}

.p2 {
    top: 25%;
    left: 50%;
}

.p3 {
    top: 25%;
    left: 82%;
}

.p4 {
    top: 50%;
    left: 18%;
}

.p5 {
    top: 50%;
    left: 50%;
}

.p6 {
    top: 50%;
    left: 82%;
}

.p7 {
    top: 75%;
    left: 18%;
}

.p8 {
    top: 75%;
    left: 50%;
}

.p9 {
    top: 75%;
    left: 82%;
}


/* --- Hero Section --- */
.hero-container {
    position: absolute;
    top: 52.1%;
    left: 50%;
    transform: translate(-50%, -100%);
    filter: invert(100%);
    mix-blend-mode: difference;
    text-align: center;
    z-index: 2;
}

.hero-container h1 {
    font-size: 4.5rem;
    font-weight: 400;
    letter-spacing: -1px;
    filter: invert(100%);
    mix-blend-mode: difference;
}


/* --- Track Selector --- */
.track-selector {
    position: absolute;
    top: 69%;
    left: 50%;
    transform: translate(-50%, -12px);
    /* Perfectly aligns the crosshair intersection */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    z-index: 2;
    box-shadow: inset 0px 0px 30px 20px rgb(255 255 255);
}

.track-list {
    padding-top: 20px;
}

.track-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.3s ease, text-shadow 0.3s ease;
    scroll-snap-align: center;
    flex-shrink: 0;
}

.track-item.active {
    opacity: 1;
}

.track-item:hover {
    opacity: 0.8;
}

.track-title {
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: #fff;
}

.track-time {
    font-size: 1rem;
    color: #fff;
    margin-top: 4px;
}


/* --- Footer Layout --- */
.hoyer-footer-container{
    background-color: #fff;
}
/* Hoyer footer: 3 columns — left, center, right */
.hoyer-footer {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    width: 100%;
    padding: 20px 5%;
    color: #000000;
    align-items: center;
    background-color: #fff;
}

.hoyer-footer > * {
    width: 100%;
}

.hoyer-footer > :nth-child(1) {
    justify-self: start;
    text-align: left;
}

.hoyer-footer > :nth-child(2) {
    justify-self: center;
    text-align: center;
}

.hoyer-footer > :nth-child(3) {
    justify-self: end;
    text-align: right;
}

/* --- Footer Layout --- */
.footer {
    position: fixed;
    bottom: 40px;
    width: 100%;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 2;
    filter: invert(100%);
    mix-blend-mode: difference;
}

.footer-gif {
    height: 110px;
    width: auto;
    filter: invert(10%);
    mix-blend-mode: difference;
}

.footer-media {
    display: flex;
    gap: 10px;
    align-items: flex-end;
    filter: invert(100%);
    mix-blend-mode: difference;
}

.footer-img {
    height: auto;
    width: 55px;
    align-self: flex-end;
}

.footer-left-img{
    filter: invert(100%);
    mix-blend-mode: difference;
    height: 125px;
    width: auto;
}
.filter-bend{
    filter: invert(100%);
    mix-blend-mode: difference;
}
.svg-menu-2-img-2 {
    align-items: center;
    justify-content: center;
    z-index: 1;
    display: flex;
    gap: 40px;
}
.svg-menu-2-img {
    align-items: center;
    justify-content: center;
    z-index: 1;
    display: grid;
}
.svg-menu-2-img img {
    height: 45px;
    width: auto;
}
.svg-menu-2-img-2:first-child {
    grid-column: 2;
}

.svg-menu-2-img-2:last-child {
    grid-column: 3;
}

.container-menu-2 {
    margin-bottom: -5px;
    position: relative;
    width: 100%;
    background-color: #000;
}

.container-menu-content {
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}

.social-links a {
    margin: 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.3rem;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.social-links a:hover {
    opacity: 1;
}

/* Right Branding */
.brand-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.location-stamp {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.65rem;
    letter-spacing: 0.5px;
    color: #ffffff;
    margin-bottom: 4px;
}

.brand-logo {
    font-size: 2.8rem;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -1px;
    line-height: 1;
}

.bg-video {
    display: block;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    z-index: -1;
    /*height: 100vh;
    z-index: -1;
    width: fit-content;*/
}

/* Navigation Menu Container */
.nav-menu {
    position: fixed;
    top: -1px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    padding-left: 40px;
    padding-right: 40px;
    width: 100%;
    z-index: 100;
}
    
/* Navigation Items */
.nav-item {
    width: 100%;
    display: flex;
    font-size: 23px;
    font-weight: 500;
    z-index: 2;
}


.nav-item .num {
    margin-right: 15px;
    font-size: 23px;
}

.nav-item .label {
    width:100%;
    height:70px;
    margin-top: 0.7em;
    margin-left: 13%;
}

.copyright{
    color: #000;
    text-align: center;
    background-color: white;
    margin-bottom: 300px;
}