/* Declaración de fuentes personalizadas */
@font-face {
    font-family: 'Majesty Goldera';
    src: url('../fonts/Majesty Goldera.woff2') format('woff2'),
         url('../fonts/Majesty Goldera.woff') format('woff'),
         url('../fonts/Majesty Goldera.ttf') format('truetype'),
         url('../fonts/Majesty Goldera.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Majesty Goldera';
    src: url('../fonts/Majesty Goldera Italic.woff2') format('woff2'),
         url('../fonts/Majesty Goldera Italic.woff') format('woff'),
         url('../fonts/Majesty Goldera Italic.ttf') format('truetype'),
         url('../fonts/Majesty Goldera Italic.otf') format('opentype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.barra-superior {
    height: 5vh;
    background-color: #FF6B6B;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    position: relative;
    overflow: hidden;
}

.barra-superior img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.contenedor-centro {
    height: 85vh;
    display: flex;
    flex-direction: column;
    background-color: black;
    background-image: url('../img/banner-act.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.fila-horizontal {
    height: 15vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    position: relative;
    padding-left: 50px;
    overflow: hidden;
}

.fila-horizontal img {
    position: absolute;
    left: 10vw;
    height: 80px;
    width: auto;
    object-fit: contain;
    z-index: 2;
}

.columnas-container {
    flex: 1;
    display: flex;
    flex-direction: row;
    overflow: hidden;
}

.columna-izquierda {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: right;
    font-weight: bold;
    order: 1;
    color: white;
}

.columna-izquierda h1 {
    font-size: 84px;
    font-weight: normal;
    line-height: 1.1;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    margin-top: 0;
    font-family: 'Majesty Goldera', serif;
}

.columna-izquierda h1 span {
    font-family: 'Majesty Goldera', serif;
}

.outlaw {
    text-align: right;
    padding-right: 7.3vw;
}

.at-heart {
    text-align: right;
}

.gentleman {
    text-align: right;
    font-size: 50px;
    padding-right: 4.2vw;

}

.always {
    text-align: right;
    font-size: 50px;
    padding-right: 2vw;
}

.columna-central {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-weight: normal;
    order: 2;
    color: white;
    text-align: center;
}

.text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-left: 1.8vw;
    line-height: 1.1;

}

.tagline {
    font-size: 25px;
    font-family: 'Majesty Goldera', serif;
}

.product-desc {
    font-size: 11px;
    font-weight: normal;
    padding-bottom: 1.7vw;
}

.columna-derecha {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    font-weight: bold;
    order: 3;
    color: white;
    gap: 15px;
    padding-bottom: 5.2vw;
}

.contenido-der {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding-left: 4vw;
}

.columna-derecha p {
    font-family: 'Actor', sans-serif;
    font-size: 30px;
    font-weight: 100;
}

.columna-derecha img {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.barra-inferior {
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: normal;
    position: relative;
    overflow: hidden;
}

.barra-inferior img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.barra-inferior p {
    position: relative;
    z-index: 1;
    font-family: 'Majesty Goldera', serif;
    font-size: 40px;
    font-weight: 500;
}

.mobile-break {
    display: none;
}

.mobile-break-central {
    display: none;
}

/* Responsive para pantallas pequeñas */
@media (max-width: 768px) {
    body {
        overflow-y: auto;
        max-height: 100vh;
        min-height: 100vh;
    }

    .contenedor-centro {
        background-image: url('../img/banner_mobile.png');
    }

    .fila-horizontal {
        height: 10vh;
        padding-left: 20px;
    }

    .fila-horizontal img {
        left: 30px;
        top: 30px;
        height: 40%;
        content: url('../img/logo_mobile.png');
    }

    .columnas-container {
        flex-direction: column;
    }

    .columna-izquierda {
        order: 1;
    }

    .columna-izquierda h1 {
        line-height: 0.8;
    }

    .outlaw {
        font-size: 45px;
        padding-top: 1vw;
        padding-right: 30vw;
    }

    .at-heart {
        font-size: 45px;
        padding-right: 10vw;
    }

    .gentleman {
        line-height: 1.4;
        font-size: 28px;
        padding-right: 18vw;
    }

    .always {
        font-size: 28px;
        padding-right: 13vw;
    }

    .columna-derecha {
        order: 2;
        padding: 0;
        align-items: flex-end;
        justify-content: flex-end;
    }

    .contenido-der {
        padding-right: 40px;
        padding-bottom: 0px;
        gap: 2px;
    }

    .mobile-break {
        display: inline;
    }

    .columna-derecha p {
        font-size: 10px;
        text-align: center;
    }

    .columna-derecha img {
        height: 40px;
        margin-bottom: -4vh;
    }

    .columna-central {
        order: 3;
        align-items: flex-start;
        padding-top: 7vh;

        .text-container {
            line-height: 1.1;
        }

        .tagline {
            font-size: 28px;
            padding-bottom: 1vh;
        }

        .product-desc {
            font-size: 13px;
            line-height: 1.1;
            padding-bottom: 5vh;
        }
    }

    .mobile-break-central {
        display: inline;
    }

    .barra-inferior {
        height: 12vh;

        p {
            font-size: 25px;
            text-align: center;
            line-height: 1.1;
            font-weight: normal;
        }
    }

    .barra-superior img {
        content: url('../img/barra_superior_mobile.png');
    }

    .barra-inferior img {
        content: url('../img/barra_inferior_mobile.png');
    }
}