* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

.pisos {
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

#headercor {
    background-color: #f2274c;
    width: 100%;
    padding-top: 25px;
    padding-bottom: 25px;
}

h1 {
    width: 1000px;
    margin-left: auto;
    margin-right: 50px;
    margin-bottom: 80px;
    margin-top: 10%;

    font-family: Caveat;
    font-size: auto;
    font-weight: 400;
    line-height: auto;
    text-align: center;
    color: #4AFF21;
}

.entrada {
    background-image: url(imgs/background\ 1.jpg);
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.entradacontents {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    padding: 0 5%;
    max-width: 1400px;
    box-sizing: border-box;
    gap: 100px;
}

.kanyeimage {
    width: auto;
    height: 450px;
    max-width: auto;
    display: block;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
    z-index: 1000;
}

.logo {
    max-width: 150px;
    height: auto;
}

.navbuttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 70px;
}

.navbuttons a {
    text-decoration: none;
    color: black;

    font-family: Rubik;
    font-optical-sizing: 100px;
    font-weight: 600;
    font-style: semibold;
    font-size: xx-large;
}

.navbutton {
display: inline-block;
transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s ease;
}

.navbutton:hover {
transform: scale(1.1);
color: #000;
}

html {
scroll-behavior: smooth;
}

.bio {
background-image: url(imgs/Mask\ group.png), url(imgs/background\ 2.jpg);
background-position: right center, center;
background-size: 50% auto, cover;
background-repeat: no-repeat;

width: 100%;
height: 675px;
}

.biotitle {
 margin-bottom: 20px;
 margin-top: 0%;
 margin-left: -100px;

  font-family: Lalezar;
    font-optical-sizing: 200px;
    font-weight: 600;
    font-style: semibold;
    font-size: xxx-large;
    color: #FF2F2F;
}

.biocontainer {
display: flex;
flex-direction: column;
max-width: 500px;
padding-top: 100px;
}

.biotext {
color: black;
font-size: x-large;
line-height: 1.6;
margin-left: 100px;
font-family: Open Sans;
font-weight: 800;
font-style: extrabold;
width: 600px;
}

.albums {
background-color: #BEBEBE;
padding: 60px 10%;
width: 100%;
box-sizing: border-box;
}


.title1 {

 font-family: Lalezar;
    font-optical-sizing: 200px;
    font-weight: 600;
    font-style: semibold;
    font-size: xxx-large;
    color: #FF2F2F;

    text-align: center;
    margin: 0 auto;
}

.albumsgrid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 40px;
padding: 20px 0;
width: 100;
max-width: 1200px;
margin: 0 auto;
}

.albumcard {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
text-decoration: none;
color: inherit;
transition: transform 0.2s ease-in-out;
}

.albumcard:hover {
transform: scale(1.05);
cursor: pointer;
}


.albumcard img {
width: 100%;
max-width: 250px;
height: auto;
border-radius: 30px;
margin-bottom: 15px;
}

.albumtext {
font-family: Poppins;
}

.separator {
display: block;
border: none;
height: 3px;
background-color: #FF2F2F;
width: 90%;
margin: 60px auto;
}

.unreleased {
background-color: #BEBEBE;
padding: 50px 0;
width: 100%;
text-align: center;
}


.title2 {
 font-family: Lalezar;
    font-optical-sizing: 200px;
    font-weight: 600;
    font-style: semibold;
    font-size: xxx-large;
    color: #FF2F2F;

    text-align: center;
    margin: 0 auto;
}

.albumcardunreleased {
position: relative;
outline: none;
cursor: pointer;
}

.albumcardunreleased::after {
content: attr(data-message);
position: absolute;
top: -40px;
left: 50%;
transform: translateX(-50%);
background: #FF2F2F;
color: white;
padding: 8px 15px;
border-radius: 5px;
font-weight: bold;
opacity: 0;
pointer-events: none;
z-index: 9999;

opacity: 0;
visibility: hidden;
transition: opacity 2s ease, visibility 2s;
}

.albumcardunreleased:focus::after {
animation: popAndFade 3s forwards;
}

.albumcardunreleased:not(:focus)::after {
transition-delay: 2s;
}

.albumcardunreleased img {
width: 100%;
max-width: 250px;
height: auto;
border-radius: 30px;
margin-bottom: 15px;
}

.albumcardunreleased {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
text-decoration: none;
color: inherit;
transition: transform 0.2s ease-in-out;
}

.albumcardunreleased:hover {
transform: scale(1.05);
cursor: pointer;
}

@keyframes popAndFade {
0% {opacity: 1; visibility: visible;}
70% {opacity: 1; visibility: visible;}
100% {opacity: 0; visibility: hidden;}
}

.extraalbums {
display: none;
grid-column: 1 / 5;
}

#expand-toggle {
display: none;
    position: absolute;
}

#expand-toggle:checked ~ .extraalbums {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 40px;
}

#expand-toggle:checked ~ .seemorebtn::after {
content: "See less...";
}

#expand-toggle:checked ~ .seemorebtn {
display: inline-block;
}

.seemorebtn {
grid-column: 1 / 5;
justify-self: center;
border: 2px solid #FF2F2F;
color: #FF2F2F;
padding: 10px 30px;
font-weight: bold;
cursor: pointer;
margin-top: 30px;
transition: 0.3s;
text-align: center;
width: fit-content;
position: relative;
z-index: 10;
}

.seemorebtn:hover {
background-color: ff0000;
color: white;
}

.seemorebtn::after {
content: "See more...";
}

.bully {
    background-color: #101010;
background-image: url(imgs/Mask\ group\ 2.png);
background-position: center;
background-repeat: no-repeat;
background-size: cover;

width: 100%;
min-height: 600px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding-bottom: 50px;
text-align: center;
position: relative;
padding-top: 50px;
}

.bullycontent {
display: flex;
flex-direction: column;
align-items: center;
gap: 80px;
margin-right: auto;
margin-left: 10%;
text-align: left;
max-width: 1200px;
position: relative;
width: 100%;
margin: 0 auto;
min-height: 400px;
}

.bullycontent::after {
content: "";
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
width: 40%;
height: 100%;

background-image: url(imgs/kanye\ background.png);
background-repeat: no-repeat;
background-position: center right;
background-size: contain;
z-index: -1;
pointer-events: none;
}

.title3 {
 font-family: Lalezar;
    font-optical-sizing: 200px;
    font-weight: 500;
    font-style: semibold;
    font-size: xxx-large;
    color: #FF2F2F;

    align-self: flex-start;
    text-align: left;
    max-width: 400px;
    margin-top: 30px;
}

.bullyinfo {
margin-top: 10px;
font-family: Open Sans;
color: white;
font-weight: 800;
align-self: flex-start;
text-align: left;
max-width: 600px;
font-size: large;
}

.bullycontent h1 {
text-align: center;
margin: 0;
line-height: 1.1;
padding-top: 50px;
}

.upcominglabel {
     font-family: Lalezar;
    font-optical-sizing: 200px;
    font-weight: 600;
    font-style: semibold;
    font-size: xxx-large;
    color: #FF2F2F;
    display: block;
}

.bullylabel {
     font-family: Lalezar;
    font-optical-sizing: 200px;
    font-weight: 600;
    font-style: semibold;
    font-size: xxx-large;
    color: #FF2F2F;
    display: block;
}

.vinylsection {
    background-color: #101010;
padding: 80px 10%;
width: 100%;
padding-top: 100px;
}

.vinylcontainer {
display: flex;
justify-content: space-between;
align-items: flex-start;
max-width: 1200px;
margin: 0 auto;
}

.vinylinfo {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  flex: 1;
  padding-top: 100px;
}

.vinylgroup {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 10px;
width: fit-content;
}

.vinyllabel {
font-family: Lalezar;
font-weight: bold;
letter-spacing: 2px;
font-size: 0.9rem;
color: white;
margin: 0;
padding: 0;
line-height: 1;
}

.vinylimage {
    display: block;
width: 100%;
max-width: 800px;
filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
margin: 0;
height: auto;
}

.tracklistinfo {
flex: 1;
text-align: center;
}

.tracklisttitle {
color: #FF2F2F;
font-family: Lalezar;
font-size: 2.5rem;
margin-bottom: 30px;
}

.tracklist {
list-style-position: inside;
font-family: Lalezar;
font-size: 1.2rem;
line-height: 2;
color: white;
font-weight: 200;
}

.ctasection {
background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(imgs/bully\ background.png);
background-size: cover;
background-position: center;
background-color: #101010;
background-repeat: no-repeat;
min-height: 80vh;

padding: 60px 20px;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}

.ctacontent {
display: flex;
flex-direction: column;
align-items: center;
max-width: 1000px;
}

.ctatitle {
color: #FF2F2F;
font-family: Lalezar;
font-size: 3rem;
letter-spacing: 2px;
margin-bottom: 20px;
text-transform: uppercase;
}

.downarrow {
width: 0;
height: 0;
border-left: 50px solid transparent;
border-right: 50px solid transparent;
border-top: 30px solid #f2274c;
margin: 0 auto 30px auto;
}

.buybutton {
display: inline-block;
background-color: #F78C58;
color: black;
font-family: Lalezar;
font-size: 2.5rem;
font-weight: 400;
padding: 20px 60px;
text-decoration: none;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0,0,0,0.5);
transition: transform 0.2s ease;
}

.buybutton:hover {
transform: scale(1.05);
background-color: #ffffff;
}

.footer {
background: url(imgs/footer.jpg) no-repeat center bottom;
background-size: cover;
background-color: #000;

padding: 80px 20px 30px 20px;
display: flex;
justify-content: center;
position: relative;
}

.footercontent {
width: 100%;
max-width: 1200px;
display: flex;
flex-direction: column;
align-items: center;
gap: 50px;
}

.footersocials {
display: flex;
gap: 40px;
}

.socialimg {
width: 40px;
height: auto;
transition: transform 0.3s ease, filter 0.3s ease;

filter: drop-shadow(0 0 10px rgba(255, 51, 0, 0.8));
}

.socialimg:hover {
transform: scale(1.1);
filter: drop-shadow(0 0 10px rgba(255, 51, 0, 1));
}

.footerbottom {
display: flex;
justify-content: space-between;
width: 100%;
padding-top: 20px;
border-top: 1px solid rgba(255, 51, 0, 0.2);
}

.copyright, .designer {
color: #FF2F2F;
font-family: Lalezar;
font-size: 20px;
letter-spacing: 1px;
}