html {
    height: 100vh;
    overflow: hidden;

}

body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    background: #222;
    perspective: 1px;
    transform-style: preserve-3d;
    overflow-x: hidden;
    overflow-y: scroll;
}

.section1 {
    width: 100%;
    min-height: 100vh;
    position: relative;
    transform-style: preserve-3d;
}

.section2 {
    width: 100%;
    min-height: 110vh;
    position: relative;
    transform-style: preserve-3d;
}

.section3 {
    width: 100%;
    min-height: 105vh;
    position: relative;
    transform-style: preserve-3d;
}

.content-container {
    width: 100%;
    min-height: 10vh;
    position: relative;
    transform-style: preserve-3d;
    z-index: 2;
}

.section1::before {
    content: "";
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    background: url("second.png") center center;
    background-size: cover;
    transform: translateZ(-1px) scale(2.2);
    background-attachment: fixed;
}

.section2 {
    width: 100%;
    min-height: 110vh;
    position: relative;
    transform-style: preserve-3d;
    background: rgb(68,35,19);
    background-attachment: fixed;

}
    
.text {
    top: 50%;
    left: 50%;
    position: absolute;
    font-family: 'Franklin Gothic Heavy';
    font-size: 10vw;
    color: white;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3), 5px 5px 70px rgba(255, 255, 255, 0.5);
    transform: scale(1,1.1) translate(-50%, -10%);
}

.artist-name {
    top: 25vh;
    left: 50%;
    position: absolute;
    font-family: 'Franklin Gothic Heavy';
    font-size: 10vw;
    color: white;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3), 5px 5px 70px rgba(255, 255, 255, 0.5);
    transform: scale(1,1.1) translate(-50%, -10%);
}

.biography {
    top: 10vh;
    left: 40%;
    position: absolute;
    font-family: 'Franklin Gothic Heavy';
    font-size: 5vw;
    color: white;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3), 5px 5px 70px rgba(255, 255, 255, 0.5);
    transform: scale(1,1.1) translate(-50%, -10%);
}

.biography-text {
    width: 550px;
    height: 400px;
    position: absolute;
    top: 28vh;
    left: 8%;
    transform: translateY(-50%);
    font-family: 'Franklin Gothic Heavy';
    font-size: 20px;
    color: white;
    text-align: justify;
    padding: 20px;
    overflow: auto;
    overflow-y: hidden;
    background: transparent;
    line-height: 1.5;
}

.biography-image {
    position: absolute;
    top: 25vh;
    left: 60%;
    width: 380px;
    height: auto;
    transform: translateY(-50%) translateX(100%);
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
    
}


@media (max-width: 600px) {
    .section1::before {
        background-size: 70vw 70vh;
    }
}

.section2 {
    width: 100%;
    min-height: 120vh;
    position: relative;
    transform-style: preserve-3d;
}

.section3 {
    width: 100%;
    min-height: 120vh;
    position: relative;
    transform-style: preserve-3d;
}

.social-icons {
    position: absolute;
    top: 50px;
    right: 40px;
    z-index: 10;
}

.social-icons a {
    display: inline-block;
    margin-left: 10px;
}

.social-icons img {
    width: 40px;
    height: auto;
}

.hidden {
    opacity: 0;
    filter: blur(10px);
    transform: translateX(-100%);
    transition: all 1s;
}

.show {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}

.spotify-embed {
padding-top: 35vh;
padding-left: 20%;
}

.music {
    top: 10vh;
    left: 30%;
    position: absolute;
    font-family: 'Franklin Gothic Heavy';
    font-size: 5vw;
    color: white;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3), 5px 5px 70px rgba(255, 255, 255, 0.5);
    transform: scale(1,1.1) translate(-50%, -10%);
}
.gallery {
    top: 10vh;
    left: 75%;
    position: absolute;
    font-family: 'Franklin Gothic Heavy';
    font-size: 5vw;
    color: white;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3), 5px 5px 70px rgba(255, 255, 255, 0.5);
    transform: scale(1,1.1) translate(-50%, -10%);
    display: inline-block;
    white-space: nowrap;
}

.white-line {
    position: absolute;
    top: 35vh;
    left: 52%;
    width: 10px;
    height: 350px;
    border-radius: 50px;
    background: url("white.jpg");
    background-position: center;
    background-size: cover;
    transform: translate(-50%, 0);
}

.imagee {
    display: flex;
    align-items: center;
    position: absolute;
    left: 76%;
    transform: translateX(-50%);
    top: 30vh;
    
}


.image-box {
    width: 100px;
    height: 450px;
    margin: 10px;
    border-radius: 50px;
    background: url(1.jpeg);
    background-size: cover;
    background-position: center;
    transition: width 0.5s;
}

.image-box:nth-child(2){
    background: url(2.jpeg);
    background-size: cover;
    background-position: center;
}

.image-box:nth-child(3){
    background: url(3.jpeg);
    background-size: cover;
    background-position: center;
}

.image-box:nth-child(4){
    background: url(4.jpg);
    background-size: cover;
    background-position: center;
}

.image-box:hover {
    width: 300px;
    cursor: pointer;
}


@media screen and (max-width: 600px) {
    
    .section1::before {
        content: "";
        width: 100%;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        position: absolute;
        background: url("second.png") center center;
        background-size: cover;
        background-repeat: no-repeat;
        transform: translateZ(-1px) scale(2.2);
        background-attachment: fixed;
    }
    .artist-name {
        top: 40vh;
        left: 50%;
        position: absolute;
        font-family: 'Franklin Gothic Heavy';
        font-size: 10vw;
        color: white;
        text-shadow: 2px 2px 5px rgba(0,0,0,0.3), 5px 5px 70px rgba(255, 255, 255, 0.5);
        transform: scale(1,1.1) translate(-50%, -10%);
    }
    
    .biography {
        top: 4vh;
        left: 50%;
        position: absolute;
        font-family: 'Franklin Gothic Heavy';
        font-size: 5vw;
        color: white;
        text-shadow: 2px 2px 5px rgba(0,0,0,0.3), 5px 5px 70px rgba(255, 255, 255, 0.5);
        transform: scale(1,1.1) translate(-50%, -10%);
    }
    
    .biography-text {
        width: 300px;
        height: 800px;
        position: absolute;
        top: 60vh;
        left: 6%;
        transform: translateY(-50%);
        font-family: 'Franklin Gothic Heavy';
        font-size: 14px;
        color: white;
        text-align: justify;
        padding: 20px;
        overflow: auto;
        background: transparent;
        line-height: 2.0;
    }
    
    .biography-image {
        width: 80%;
        left: 10%;
        top: 65vh;
    }
    .music {
        top: 5vh;
        left: 50%;
        position: absolute;
        font-family: 'Franklin Gothic Heavy';
        font-size: 5vw;
        color: white;
        text-shadow: 2px 2px 5px rgba(0,0,0,0.3), 5px 5px 70px rgba(255, 255, 255, 0.5);
        transform: scale(1,1.1) translate(-50%, -10%);
    }
    .gallery {
        top: 62vh;
        left: 50%;
        position: absolute;
        font-family: 'Franklin Gothic Heavy';
        font-size: 5vw;
        color: white;
        text-shadow: 2px 2px 5px rgba(0,0,0,0.3), 5px 5px 70px rgba(255, 255, 255, 0.5);
        transform: scale(1,1.1) translate(-50%, -10%);
    }
    .spotify-embed {
        width: 80%;
        padding-left: 10%;
        padding-top: 10vh;
    }

    .imagee {
        display: flex;
        align-items: center;
        position: absolute;
        left: 76%;
        transform: translateX(-50%);
        top: 20vh;   
    }

.imagee {
    display: flex;
    align-items: center;
    position: absolute;
    left: 49%;
    transform: translateX(-50%);
    top: 68vh;
    
}
.image-box {
    width: 60px;
    height: 350px;
    margin: 10px;
    border-radius: 50px;
    background: url(1.jpeg);
    background-size: cover;
    background-position: center;
    transition: width 0.5s;
    cursor: pointer;
}
.white-line {
    display: none;
}

.section4 {
    flex-direction: column;
    justify-content: flex-start;
}

.section4 .content-container {
    margin-bottom: 28vh;
}
    
}

.contact-title {
    position: absolute;
    top: 9vh;
    left: 50%;
    font-family: 'Franklin Gothic Heavy';
    font-size: 5vw;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3), 5px 5px 70px rgba(255, 255, 255, 0.5);
    transform: scale(1, 1.1) translate(-50%, -10%);
}


.section4 {
    width: 100%;
    min-height: 100vh;
    position: relative;
    transform-style: preserve-3d;
    background: linear-gradient(120deg, #444, #222);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.section4 .content-container {
    top: 11vh;
    width: 80%;
    max-width: 500px;
    padding: 30px;
    background: rgba(34, 34, 34, 255);
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    z-index: 2;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section4 .input_field {
    margin-bottom: 15px;
    width: 100%;
}

.section4 .input_field input[type="text"], 
.section4 .input_field textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: rgba(56,56,56,255);
    color: white;
    font-family: 'Franklin Gothic Heavy';
    box-sizing: border-box;
}

.section4 textarea {
    resize: none;
    height: 100px;
}

.section4 .btn {
    width: 100%;
}

.section4 .btn input[type="submit"] {
    width: 100%;
    padding: 12px;
    background: #569a4d;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: white;
    text-transform: uppercase;
    font-family: 'Franklin Gothic Heavy';
    letter-spacing: 2px;
}

.section4 .btn input[type="submit"]:hover {
    background: #467b3a;
}

#error_message {
    margin-bottom: 20px;
    background: #fe8b8e;
    padding: 10px;
    text-align: center;
    font-size: 14px;
    border-radius: 8px;
    color: white;
    font-family: 'Franklin Gothic Heavy';
    display: none;
}

#success_message, #failure_message {
    margin-bottom: 20px;
    padding: 10px;
    text-align: center;
    font-size: 14px;
    border-radius: 8px;
    font-family: 'Franklin Gothic Heavy';
    color: white;
}

#success_message {
    background: #569a4d;
}

#failure_message {
    background: #fe8b8e;
}

