/* Estilos Generales */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@1,600;1,700&family=Tourney:wght@100;400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Karantina:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tourney:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Akronim&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Birthstone+Bounce:wght@400;500&family=Qwigley&display=swap');

:root {
    --main-color: #FFC555;
    --secondary-color: #292929;
    --third-color: #382207;
    --four-color: #eaeaea;
    --five-color: #38495a;
    --grey-gradient: linear-gradient(138deg, rgba(234,234,234,1) 0%, rgba(218,218,218,1) 100%);
}

body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

img {
    max-width: 95%;
    border-radius: 1rem;
}


h3 {
    position: relative;
    margin: 2rem 0!important;
    font-family: "Roboto Condensed", system-ui;
    font-weight: 700;
    font-style: italic;
    text-align: center;
    font-size: 40px!important;
}
h3:before {
    content: "";
    position: absolute;
    width: 40px;
    height: 2px;
    background: #575757;
    bottom: -15px;
    left: 50%;
    margin-left: -20px;
}
h4 {
    font-family: 'Tourney', sans-serif;
    font-size: 30px!important;
}

.general-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    max-width: 680px;
}
.performances-box ul,
.performances-box ol {
    list-style-type: none;
    padding-left: 0;
}


/* Cabecera */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    padding: 5px;
    text-align: center;
    height: 45px;
    width: 100%;
}

/*menu hamburger*/
.header-hamburger {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 30px;
    cursor: pointer;
    transition: all .5s ease-in-out;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1999;
}
.header-hamburger__burger {
    width: 100%;
    height: 4px;
    background: var(--main-color);
    border-radius: 5px;
    transition: all .5s ease-in-out;
}
.header-hamburger__burger::before,
.header-hamburger__burger::after {
    content: '';
    position: absolute;
    right: 0;
    width: 100%;
    height: 4px;
    background: var(--main-color);
    border-radius: 5px;
    transition: all .5s ease-in-out;
}
.header-hamburger__burger::before {
    transform: translateY(-10px);
}
.header-hamburger__burger::after {
    transform: translateY(10px);
}
/* ANIMATION */
.header-hamburger.open .header-hamburger__burger {
    transform: translateX(-50px);
    background: transparent;
    box-shadow: none;
}
.header-hamburger.open .header-hamburger__burger::before {
    transform: rotate(45deg) translate(35px, -35px);
}
.header-hamburger.open .header-hamburger__burger::after {
    transform: rotate(-45deg) translate(35px, 35px);
}
.nav-menu {
    clip-path: circle(10px at 10% -10%);
}

.nav-menu.open {
    z-index: 100;
    transition: all 1s ease-out;
    clip-path: circle(1200px at 10% -10%);
    -webkit-clip-path: circle(1200px at 10% -10%);
}
/*fin menu hamburger */

/* Menú de navegación */
.nav-menu {
    position: absolute;
    top: 1rem;
    background-color: rgba(0, 0, 0, 0.78);
    width: 95%;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100;
    border-radius: 1rem;
    transition: all 1s ease-out;
}
.nav-menu ul {
    list-style-type: none;
    margin: 1.1rem;
    padding: 0;
}
.nav-menu li {
    padding-bottom: 1rem;
    margin: 1rem 0;
}

.nav-menu li:not(:last-child) {
    border-bottom: 1px solid var(--main-color);
}
.nav-menu a {
    color: var(--main-color);
    font-weight: bold;
    text-decoration: none;
    font-size: 1.4rem;
    line-height: 26px;
}

@keyframes animateHomeBackground {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
}

.home-box {
    position: relative;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 90vh;
    /*background: radial-gradient(circle at 50% 50%, var(--main-color) 1%, black 40%);*/
    background-image: url('img/javiersaba_onfire_front.png');
    background-size: 36rem;
    background-position: center bottom;
    background-repeat: no-repeat;
    overflow: hidden;
    text-align: center;
}

.home-box:after {
    content: '';
    position: absolute;
    top: 0;
    left:0;
    width: 100%;
    height: 100%;
    background-color: black;
    background-image: url('img/javiersaba_onfire_back.png');
    background-size: 36rem;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    animation: animateHomeBackground 35s infinite ease-in-out;
    z-index: -1;
}

.home-logo {
    position: relative;
    top: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.home-box h2,
.javiersaba {
    font-family: 'Karantina', system-ui;
    font-size: 6rem;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 70px;
    /*background: linear-gradient(white, var(--four-color));*/
    background-clip: text;
    /*color: transparent;*/
    margin-bottom: 0;
    color: var(--main-color);
}

.home-subtitle {
    font-size: 18px;
    letter-spacing: 3px;
    color: var(--main-color);
}

.home-stamp {
    position: absolute;
    right: 5px;
    top: 13rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1rem;
    background-color: #dfad5859;
    border-radius: 58px;
    text-shadow: 2px 2px 4px #000000;
    width: 85px;
    height: 85px;
    line-height: 22px;
    font-family: "Roboto Condensed", system-ui;
    font-style: italic;
}

.home-stamp div:nth-child(2) {
    font-size: 2rem;
}
.home-bottom {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    bottom: 5rem;
}
.button-book {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--main-color);
    background: linear-gradient(to bottom, #382207 1%, #1F1406 40%);
    font-family: 'Tourney', sans-serif;
    font-size: 1.9rem;
    border-radius: 3rem;
    border: 1px solid var(--main-color);
    padding: 0 2rem;
    width: 280px;
    height: 49px;
    text-decoration: none;
    cursor: pointer;
}
.button-book-play {
    color: var(--main-color);
    background-color: #382207;
    position: relative;
    right: -2rem;
    box-shadow: 0 0 0 11px lightyellow;
    font-size: 50px;
    border-radius: 100px;
    animation: scale-icon 1s ease-in-out alternate infinite;
}

@keyframes scale-icon {
        0% { transform: scale(.8); }
        100% { transform: scale(1); }
}
.button-book:hover {
    background: var(--main-color);
    color: black;
}

.home-services {
    text-align: left;
    font-size: 17px;
}

ul.home-services li {
    list-style-type: "\2714";
    padding: 0 8px;
    /*color: var(--main-color);
    margin-right: 25px;
    line-height: 22px;*/
}

.clients-box {
    background-color: var(--four-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.clients-logos {
    max-width: 680px;
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.clients-logos div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 90px;
    background-color: white;
}
.clients-logos img {
    border-radius: 0;
    flex: 1 1 90px; /* Crecen para ocupar espacio pero no menos de 200px */
    width: 90px; /* Hace que la imagen se ajuste al contenedor */
    height: auto; /* Mantiene la proporción de la imagen */
}
/* Secciones */
section {
    padding: 35px;
}

.welcome-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    align-items: center;
    font-size: 20px;
    text-align: center;
    background-color: var(--secondary-color);
    color: white;
}

.welcome-box-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.profesional-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    text-align: center;
    background-color: var(--main-color);
}

.profesional-img {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.profesional-img div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 322px;
}
.random-box {
    background: var(--four-color);
    background: var(--grey-gradient);
}

.random-box h3 {
    font-size: 29px!important;
}

.videos-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.youtube_subscribe {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(138deg, rgb(255,0,0) 0%, rgb(162,1,1) 100%);;
    padding: .5rem 1rem;
    color: white;
    border-radius: 10px;
    text-decoration: none;
}
.youtube_subscribe i {
    font-size: 30px;
    padding-right: 10px;
}
.cta-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #1F1406;
    color: white;
}

.cta-box h3 {
    font-size: 32px!important;
    color: var(--main-color);
}

.cta-box a {
    text-decoration: none;
    color: var(--main-color);
}
.closeupstage-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    text-align: center;
}

.closeupstage-box img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem 0;
    width: 500px;
}

.testimonials-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    position: relative;
    text-align: center;
    color: var(--main-color);
    background: url(img/bgfooter.jpg) center bottom no-repeat, black;
}
.testimonial {
    margin: 1.5rem 0;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 76px;
    z-index: 10;
    position: relative;
    /*background: var(--secondary-color);
    border-radius: 2rem;*/
}
/*
.testimonial:before {
    content: '';
    position: absolute;
    right: -7px;
    width: 20px;
    height: 20px;
    background-color: var(--secondary-color);
    transform: rotate(45deg);
    z-index: 9;
}*/

.home-box .testimonial {
    position: absolute;
    top: -40px;
}
.home-box .testimonial-title {
    text-align: center;
    font-size: 15px;
    color: var(--main-color);
}

.testimonial-title {
    font-size: 26px;
    letter-spacing: 7px;
    line-height: 25px;
    font-weight: bolder;
    text-transform: uppercase;
}

.testimonial i {
    font-size: 13px;
}

.testimonial-client {
    font-size: 12px;
}

.guaranted-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    text-align: center;
    background-color: white;
}

.guaranted-box-text {
    background: var(--grey-gradient);
    border-radius: 3rem;
    padding: 2rem;
    font-size: 1.1rem;
}

.instagram-box {
    overflow: hidden;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.performances-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 20px;
    text-align: center;
    color: white;
    background: url(img/bgfooter.jpg) no-repeat center bottom, black;
}

.contact-box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url("img/javier_head_b-w.png");
    background-size: 20rem;
    background-position: bottom right -5rem;
    background-repeat: no-repeat;
    font-size: 20px;
    text-align: left;
    background-color: var(--third-color);
    color: var(--main-color);
}
    .contact-box a {
        text-decoration: none;
        color: white;
    }
.contact-intro {
    width: 75%;
    font-style: italic;
}
.contact-items {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin: 3rem 0;
    background: black;
    padding: 1rem;
    border-radius: 1rem;
    opacity: .7;
    color: white;
    text-align: center;
}

.signature {
    position: absolute;
    bottom: 0;
    right: 1rem;
    font-family: "Birthstone Bounce", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 3rem;
    color: white;
}
.javiersaba {
    margin-top: 3rem;
}

/* Footer */
footer {
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 95%;
    border-radius: 1rem;
    z-index: 99;
}

.footer-content a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    /*color: var(--main-color);*/
    background-color: var(--four-color);
    border-radius: 3rem;
    text-decoration: none;
    opacity: 1;
}

.footer-content .fa-instagram {
    color: #e1306c;
}

.footer-content .fa-facebook-f {
    color: #3B5998;
}

.footer-content .fa-youtube {
    color: #FF0000;
}
.footer-content .fa-whatsapp {
    color: #25D366;
}

.footer-content .footer-up {
    opacity: 0;
    position: absolute;
    bottom: 9px;
    right: 0;
    color: white;
    background-color: #29292952;
}

.footer-content a i {
    font-size: 23px;
}

/* Media query para tablets */
@media (min-width: 768px) {
    section {
        padding: 65px;
    }

    .home-box {
        background-size: 42rem;
        background-position: center;
    }

    .home-stamp {
        top: 6rem;
    }
    .home-services {
        font-size: 1.2rem;
    }

    .welcome-box-container {
        flex-direction: row;
    }

    .welcome-box-container div {
        width: 50%;
        text-align: start;
    }

    .welcome-box img {
        width: 325px;
    }
}

/* Media query para desktop */
@media (min-width: 1024px) {
    .home-box {
        background-size: 75rem;
        background-position: center;
    }
    .home-logo {
        align-self: start;

    }
    .home-box h2  {
        font-size: 9rem;;
        line-height: 121px;
    }
}