* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, serif;
    /* Replace 'sunset-sky.jpg' with your actual uploaded image filename */
    background-image: url('sunset-sky.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    position: relative;
    min-height: 100vh;
    width: 100%;
}

/* Sidebar Navigation */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 120px;
    height: 100vh;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    z-index: 100;
}

.nav-item {
    color: #e30d10;
    text-decoration: none;
    font-family: Georgia, serif;
    font-size: 16px;
    font-weight: normal;
    transform: rotate(90deg);
    white-space: nowrap;
}

/* Main Content Areas */
.main-content {
    margin-left: 120px;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
}

.artist-bio {
    position: absolute;
    top: 80px;
    left: 40px;
    max-width: 400px;
    font-family: Georgia, serif;
    font-size: 16px;
    line-height: 1.5;
    color: #ffffff;
    background: transparent;
    transform: rotate(-9deg);
    transform-origin: top left;
}

.heart-symbol {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: #e30d10;
}

.signature {
    position: absolute;
    bottom: 80px;
    right: 40px;
    font-family: Georgia, serif;
    font-size: 18px;
    color: #e30d10;
    text-align: right;
    line-height: 1.2;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .sidebar {
        width: 80px;
        justify-content: space-evenly;
    }

    .nav-item {
        font-size: 14px;
    }

    .main-content {
        margin-left: 80px;
        padding: 20px;
        display: block;
        position: relative;
    }

    .artist-bio {
        position: static;
        transform: none;
        max-width: 100%;
        margin-bottom: 40px;
        text-align: left;
        font-size: 14px;
    }

    .heart-symbol {
        position: static;
        transform: none;
        text-align: center;
        margin: 30px 0;
        font-size: 36px;
    }

    .signature {
        position: static;
        transform: none;
        text-align: right;
        margin-top: 30px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .sidebar {
        width: 60px;
    }

    .nav-item {
        font-size: 12px;
    }

    .main-content {
        margin-left: 60px;
        padding: 15px;
    }

    .artist-bio {
        font-size: 12px;
    }

    .heart-symbol {
        font-size: 30px;
    }

    .signature {
        font-size: 14px;
    }
}