/* Fuentes Kumbh Sans */
@font-face {
    font-family: 'Kumbh Sans';
    src: url('../fonts/kumbh-sans/KumbhSans-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Kumbh Sans';
    src: url('../fonts/kumbh-sans/KumbhSans-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Kumbh Sans';
    src: url('../fonts/kumbh-sans/KumbhSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Kumbh Sans';
    src: url('../fonts/kumbh-sans/KumbhSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Kumbh Sans';
    src: url('../fonts/kumbh-sans/KumbhSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Kumbh Sans';
    src: url('../fonts/kumbh-sans/KumbhSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Kumbh Sans';
    src: url('../fonts/kumbh-sans/KumbhSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Kumbh Sans';
    src: url('../fonts/kumbh-sans/KumbhSans-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Kumbh Sans';
    src: url('../fonts/kumbh-sans/KumbhSans-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

/* Home */
body {
    font-family: 'Kumbh Sans', sans-serif;
    margin: 0;
    padding: 0;
}

/* Fondo principal */
.bg-main{
    background-image: url('../images/fondo-home.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


.home-page .container-fluid.bg-main {
    height: 100vh;
    overflow: hidden;
    padding: 0;
    margin: 0;
}


@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-main, .main-title, .social-links {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards; 
}

.logo-main {
    animation-delay: 0.2s;
}

.main-title {
    animation-delay: 0.4s;
}

.social-links {
    animation-delay: 0.6s;
}


/* Logo */
.logo {
    max-height: 80px;
    width: 80px;
}

/* Estilos del menú */
.navbar {
    background-color: transparent !important;
}

.navbar-nav {
    gap: 45px;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.78) !important;
    font-weight: 300;
    transition: opacity 0.3s;
    font-size: 14px;
}

.navbar-nav .nav-link:hover {
    opacity: 0.8;
}

.navbar-nav .nav-link.active {
    font-weight: 800;
    border-bottom:1px solid rgba(255, 255, 255, 0.78);
}



/* Contenido principal */
.main-content {
    margin-top: 110px;
    text-align: center;
    margin-left: 40%;
}

.logo-main {
    max-width: 350px;
}

.main-title {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.78) !important;
}

/* Redes sociales */
.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.social-icon {
    display: inline-block;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

/* Pagina about */

.bg-about{
    background-image: url('../images/fondo_about.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    min-height: 100vh;
    display: flex;
    flex-direction: column;

}

.main-title-about {
    font-weight: 500;
    margin-bottom: 25px;
    color: rgba(255, 255, 255) !important;
    letter-spacing: 25%;
    font-size: 22px !important;
}

.main-content-about{
    margin-top: 130px;
    text-align: center;
    padding: 0 85px;
}

p.text-about{
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 40px;
    color: #B5B5B5 !important;
}

.line{
    border-bottom: 1px solid #808080 !important;
    margin-top: 35px;
    margin-bottom: 90px;
    width: 50% !important;
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto
}

/* Pagina artist */

.bg-artist{
    background-image: url('../images/fondo_artist.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;


    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.logo-artist{
     max-width: 350px;
}

.main-content-artist{
    margin-top: 80px;
    text-align: center;
    padding: 0 85px;
}

.main-content-artist .line{
    margin-bottom: 40px !important;
}

.main-content-artist .social-links {
    margin-bottom: 230px;
}


/* Pagina producer */

.bg-producer{
    background-image: url('../images/fondo-producer-songwriter.webp');
    background-repeat: no-repeat;
    background-size: cover;
}


.logo-producer{
    max-width: 350px;
    margin-bottom: 60px;
}

.main-content-producer{
    margin-top: 80px;
    text-align: center;
    padding: 0 14vw;
}

.main-content-producer .line {
    width: 90% !important;
}

p.text-producer{
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 40px;
    color: #B5B5B5 !important;
}

.main-content-producer .logo-main{
    margin-bottom: 50px;
}


.main-content-producer .line{
    margin-top: 145px;
}

.main-title-producer {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 65px;
    color: rgba(255, 255, 255) !important;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-top: 220px !important;
}


.video-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 0px 50px 120px;
}

.video-container {
    max-width: 700px;
    width: 100%;
    overflow: hidden;
}

.video-placeholder {
    width: 100%;
    height: 300px;
    position: relative;
    cursor: pointer;
}


.video-placeholder img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Estilos para la información a la izquierda del video */
.video-info-side {
    padding-left: 16px;
    margin-top: -140px;
}

.video-title-side {
    font-size: 37px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.2;
}

.video-subtitle-side {
    font-size: 16px;
    color: #fff;
    margin-bottom: 14px;
    font-weight: 500;
}

.video-year-side {
    font-size: 25px;
    color: #fff;
    font-weight: 500;
}

/* imagen estatica rectangulo video */
.static-image {
    background-image: url('../images/rectangle.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* Pagina studio */

.bg-studio{
    background-image: url('../images/fondo_estudio_grabacion.webp');
    background-repeat: no-repeat;
    background-size: cover;

    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content-studio{
    margin-top: 130px;
    text-align: center;
    padding: 0 14vw;
}

.main-title-studio{
    font-weight: 500;
    margin-bottom: 25px;
    color: rgba(255, 255, 255) !important;
    letter-spacing: 25%;
    font-size: 22px !important;
}

.line-studio {
    border-bottom: 1px solid #808080 !important;
    margin-top: 0px;
    margin-bottom: 50px;
    width: 15% !important;
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.text-studio{
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 40px;
    color: #B5B5B5 !important;
}

/* Pagina contacto */

.bg-contact{
    background-image: url('../images/fondo_contacto.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content-contact{
    margin-top: 80px;
    text-align: center;
    padding: 0 85px;
}

.logo-contact {
    max-width: 350px;
}

.main-title-contact{
    font-size: 22px;
    font-weight: 500;
    color: rgba(255, 255, 255) !important;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-top: 30px !important;
    letter-spacing: 22%;
    margin-bottom: 15px;
}

.small-email{
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 40px;
    color: #B5B5B5 !important;
    display: block;
    margin-bottom: 60px;
}

/* Ajustes para móviles */
@media (max-width: 767px) {
  
    /* Home */

    .home-page .container-fluid.bg-main {
        height: 100vh;
        overflow: hidden;
        padding: 0;
        margin: 0;
    }

    .navbar {
        position: static !important;
    }

    .navbar-nav {
        gap: 15px;
    }
    
    .container-fluid {
        position: relative;
    }
    
    .menu-btn {
        border: none !important;
        background: transparent !important;
        padding: 10px 15px !important;
        font-weight: 500;
        letter-spacing: 1px;
        outline: none !important;
        box-shadow: none !important;
        text-align: center;
        display: block;
        margin: auto;
    }
    
    .menu-btn .menu-text {
        color: #fff;
        font-size: 14px;
        transition: all 0.3s ease;
        font-weight: 300;
    }
    
    .menu-btn[aria-expanded="true"] .menu-text {
        content: "CLOSE";
    }
    
    .menu-btn[aria-expanded="true"] .menu-text {
        display: none;
    }
    
    .menu-btn[aria-expanded="true"]::after {
        content: "CLOSE";
        font-weight: 300;
        letter-spacing: 1px;
        color: #fff !important;
        font-size: 14px;
    }
    
    #navbarMain{
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        background: #000000 !important;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        z-index: 1000;
        width: 80%;
        text-align: center;
        display: block;
        margin: auto;
        transform: translateY(-10px);
        opacity: 0;
        transition: all 0.3s ease-in-out;
        visibility: hidden;
    }

    #navbarMain.show {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    #navbarMain .navbar-nav {
        padding: 35px;
        width: 100%;
    }
    
    #navbarMain .nav-item {
        width: 100%;
        text-align: center;
    }
    
    #navbarMain .nav-link {
        padding: 0 !important;
    }
    


    .bg-main {
        background-image: url('../images/mobile/mobile-fondo-v2-2103.webp');
        background-repeat: no-repeat;
        background-position: bottom center;
        background-size: cover;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }
    
    .logo{
        display: none !important;
    }

    .main-content {
        margin-top: 14vw;
        text-align: center;
        margin-left: 0%;
    }

    .logo-main {
        max-width: 64vw;
    }

    .main-title {
    font-size: 15px;
    
    }

    .main-title {
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 6vw;
    margin-top: 7vw;
    
    }


    .social-icon img {
    width: 34px;
    height: 34px;

    }

    


    /* Pagina about */
    .main-content-about {
        margin-top: 70px;
        text-align: center;
        padding: 0 20px;
    }

    .bg-about{
        background-image: url('../images/fondo_contacto.webp');
        background-repeat: no-repeat;
        background-position: bottom center;
        background-size: cover;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }
    /* Pagina artist */
    .logo-artist {
        max-width: 200px;
    }

    .bg-artist {
        background-repeat: no-repeat;
        background-position: bottom center;
        background-size: cover;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }

    .main-content-artist {
        padding: 0 75px;
        margin-top: 110px;
    }

    .main-content-artist .social-links {
        margin-bottom: 250px;
    }

    /* Pagina producer */
    .bg-producer {
        background-repeat: no-repeat;
        background-position: bottom center;
        background-size: cover;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }

    .main-content-producer {
        text-align: center;
        padding: 0px 25px;
        margin-top: 110px;
    }

    .logo-producer {
        max-width: 200px;
        margin-bottom: 40px;
    }

    .main-title-producer {
        margin-bottom: 65px;
        margin-top: 25px !important;
    }

    .main-content-producer .line {
        margin-top: 65px;
    }

    .video-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0px 0px 50px 0px;
    }


    /* Pagina studio */
   
    .bg-studio{
        background-image: url('../images/fondo_contacto.webp');
        background-repeat: no-repeat;
        background-size: cover;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }

    .main-content-studio {
        margin-top: 110px;
        padding: 0 25px;
    }

    /* Pagina contacto */
     .bg-contact{
        background-image: url('../images/fondo_contacto.webp');
        background-repeat: no-repeat;
        background-size: cover;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }

    .logo-contact {
        max-width: 200px;
    }

    .main-content-contact {
        margin-top: 80px;
        padding: 0 75px;
    }

    .main-content-contact .social-links {
        margin-bottom: 70px;
    }

    .main-content-contact .line {
        margin-top: 0px;
        margin-bottom: 90px;
    }
}