/* GLOBALES */


html {
    scroll-behavior: smooth;
  }

body {
    background-color: #030704;
    margin: 0px;
    padding: 0px;
    font-family: 'Poppins', sans-serif;
    cursor: none;
    --rush: #e90389;
}

.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    background-color: rgba(168, 3, 74, 0.7);
    border: 1.5px solid white;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999;
    mix-blend-mode: difference;
  }

  a:hover, a:focus, button:hover {
    cursor: none;
    pointer-events: none;
    }
  

/* NAVBAR */


nav {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 80px;
    top: 0;
    z-index: 99;
}

.nav-list {
    display: flex;
    width: 30rem;
    justify-content: space-around;
    gap: 20px;
    border-radius: 10px;
    padding: 20px 30px;
    align-items: center;
    list-style: none;
    background-color: #181a1b;
    transition: all 0.5s;
}

.nav-logo{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px 20px;
    font-weight: bold;
    background: transparent;
    outline: 0;
    vertical-align: baseline;
    letter-spacing: -0.1em;
    font-size: 24px;
    padding: 0;
    text-transform: uppercase;
    border-top: 1px solid #a8034a;
    border-bottom: 1px solid #a8034a;
}

    .nav-logo h3{
        margin: 0;
        padding: 0;
        color: #a8034a;
    }

.nl-seccion {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.nav-list:hover {
    width: 40rem;
    transition: all 0.5s;
}

/* .nav-list:hover a{
        display: inline-block;
        opacity: 1;
        transition: all 0.5s;
        visibility: visible;
        height: auto;
    } */

.nav-list a {
    text-decoration: none;
    color: white;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    transition: all 0.5s ease;
}

.nav-list a:hover {
    color: #a8034a;
    transition: 0.3s;
    transform: translateY(-3px);
}

.nav-list a.active {
    color: #a8034a;
    font-weight: bold;
  }

/* BANNER */

.album-header {
    position: relative;
    background-image: url("../../public/The-Loneliest-maneskin-1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: calc(100vh - 180px);
    display: flex;
    justify-content: left;
    align-items: center;
    background-color: #030704;
}

.ah-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #a8034a;
    font-size: 150px;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
}

.ah-subtitle{
    position: absolute;
    top: 20px;
    right: 20px;
    color: #030704;
    font-size: 90px;
    font-weight: bold;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

/* ALBUM */

.album-container {
    color: white;
    display: flex;
    justify-content: space-between;
    margin: 50px 100px;

}

.album-info {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 80px;
}

.ai-cover {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.ah-disco {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 70px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 5px solid #030704;
    outline: 3px solid white;
}

.ah-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border-radius: 150px;
    background-color: #030704;
    border: 1px solid #a8034a;
}

.ah-disco img {
    rotate: 35deg;
    width: 300px;
    height: 300px;
    border-radius: 50%;
}

.ai-info {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    transform: translateY(20px);
}

.ai-title {
    color: #a8034a;
    font-size: 100px;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
}

.ai-title-logo img{
    width: 350px;
    height: 350px;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    transform: rotate(20deg);
}

.ai-year {
    position: absolute;
    color: #a8034a;
    font-size: 35px;
    font-weight: bold;
    margin: 0;
    margin-left: 10px;
    bottom: 25px;
}

.ai-description {
    font-size: 18px;
    font-weight: bold;
    width: 400px;
}

.ai-btn {
    background-color: #a8034a;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: bold;
    border: none;
    border-bottom: 2px solid #f11072;
    border-right: 2px solid #f11072;
    border-top: 2px solid linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);
    border-left: 2px solid linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3); /* Sombra externa */
}

.ai-btn:hover {
    transform: scale(1.1);
    transition: ease-in-out 0.3s;
    border-top: 2px solid #f11072;
    border-left: 2px solid #f11072;
    border-bottom: 2px solid rgb(238, 103, 238);
    border-right: 2px solid rgb(238, 103, 238);
    box-shadow: rgba(240, 46, 170, 0.4) 5px 5px, rgba(240, 46, 170, 0.3) 10px 10px,
    rgba(240, 46, 170, 0.2) 15px 15px;
}

.album-song-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.album-song-list h2 {
    color: #a8034a;
    font-size: 30px;
    font-weight: bold;
    margin: 0;
    padding: 0;
}

.album-song-list ol {
    padding: 0;
    margin: 0;
    list-style-position: inside;
}

.album-song-list li {
    display: flex;
    justify-content: space-between;
    align-items: end;
    background-color: #030704;
    padding: 10px 20px;
    color: white;
    border-bottom: 1px solid #a8034a;
    gap: 130px;
}

.album-song-list li:hover {
    background-color: #a8034a;
    transition: all 0.5s ease-in-out;
}

.album-song-list p {
    margin: 0;
    padding: 0;
}


/* MANESKIN */

.maneskin-container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.ms-cover{
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 40%;
    color: white;
}

.ms-title{
    font-size: 50px;
    font-weight: bold;
    margin: 0;
    color: #a8034a;
    text-transform: uppercase;
    }

.ms-description{
    font-size: 20px;
    font-weight: bold;
    width: 70%;
}

.ms-box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ms-member1, .ms-member2, .ms-member3, .ms-member4 {
    position: relative;
    width: 180px;
    height: 200px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 25px rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    border-radius: 10px;
    margin: 0 -45px;
    backdrop-filter: blur(10px);
    
}

.ms-member1 {
    background-image: url("../../public/ethan.jpg");
    background-size: cover;
    background-position: start;
    background-repeat: no-repeat;
    transform: rotate(calc(-15 * 1deg));
}

.ms-member2 {
    background-image: url("../../public/thomas.jpg");
    background-size: cover;
    background-position: start;
    background-repeat: no-repeat;
    transform: rotate(calc(5 * 1deg));
}

.ms-member3 {
    background-image: url("../../public/damiano.jpg");
    background-size: cover;
    background-position: start;
    background-repeat: no-repeat;
    transform: rotate(calc(15 * 1deg));
}

.ms-member4 {
    background-image: url("../../public/vic.jpg");
    background-size: cover;
    background-position: start;
    background-repeat: no-repeat;
    transform: rotate(calc(30 * 1deg));
}

.ms-box:hover .ms-member1, .ms-box:hover .ms-member2, .ms-box:hover .ms-member3, .ms-box:hover .ms-member4 {
    transform: rotate(0deg);
    margin: 0 10px;
  }

.ms-member1::after, .ms-member2::after, .ms-member3::after, .ms-member4::after {
    content: attr(data-text);
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 40px;
    background: rgba(255, 255, 255, 0.342);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #181a1b;
}

.ms-member2::after, .ms-member4::after {
    color: #ffffff;
}

/* VENTAS Y CONTACTO */

.merchandising-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin: 50px 100px;
    color: white;
}

.mi-title, .ci-title {
    font-size: 50px;
    font-weight: bold;
    color: #a8034a;
    margin-left: 20px;
    margin-top: 20px;
}


/* FOOTER */

.footer-container {
    background-color: #3f071f;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 100px;
}

.footer-info{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-socials{
    display: flex;
    padding-left: 1rem;
    justify-content: center;
    align-items: center;
    gap: 20px;
}




