:root {
    --color-navy: #4056a1;
    --color-gold: #d79922;
    --color-cream: #efe2ba;
    --color-red: #f13c20;
    --color-purple: #845ec2;
    --color-light-purple: #c5cbe3;
    --color-dark: #2b2d42;
    --color-light: #ffffff;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--color-light);
    color: var(--color-dark);
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.color-bar {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: 120px;
    display: flex;
    flex-direction: column;
    z-index: 100;
}

.color-bar-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: monospace;
    font-size: 0.8rem;
    transition: width 0.3s ease;
}

.color-bar-item:hover {
    width: 140px;
}

.color-bar-item:nth-child(1) {
    background-color: var(--color-gold);
}

.color-bar-item:nth-child(2) {
    background-color: var(--color-cream);
    color: var(--color-dark);
}

.color-bar-item:nth-child(3) {
    background-color: var(--color-red);
}

.color-bar-item:nth-child(4) {
    background-color: var(--color-navy);
}

.color-bar-item:nth-child(5) {
    background-color: var(--color-light-purple);
    color: var(--color-dark);
}

header {
    padding: 2rem 0;
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 120px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    position: absolute;
    top: 0;
    left: 0;
    padding: 1rem;
    background-color: var(--color-navy);
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transform: rotate(-90deg);
    transform-origin: 60px 60px;
}

.main-nav {
    margin-left: 150px;
}

.nav-list {
    display: flex;
    list-style: none;
    justify-content: flex-start;
    gap: 3rem;
}

.nav-link {
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-dark);
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-red);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.main-content {
    margin-top: 120px;
    margin-right: 120px;
    padding: 2rem 0;
}

.hero {
    position: relative;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.art-piece {
    position: absolute;
    width: 80%;
    max-width: 800px;
    height: auto;
    z-index: 10;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    color: var(--color-red);
    font-size: 2rem;
}

.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--color-red);
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.album-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.album-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.album-cover {
    width: 100%;
    height: 250px;
    background-color: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.album-info {
    padding: 1.5rem;
}

.album-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.album-year {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 1rem;
}

.album-description {
    margin-bottom: 1.5rem;
}

.album-cta {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: var(--color-dark);
    color: white;
    text-decoration: none;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.album-cta:hover {
    background-color: var(--color-red);
}

.musical-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.musical-content {
    line-height: 1.8;
}

.musical-content p {
    margin-bottom: 1.5rem;
}

.musical-image {
    height: 400px;
    background-color: var(--color-light-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    font-weight: 700;
    border-radius: 10px;
    overflow: hidden;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background-color: var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    font-weight: 600;
}

.member-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--color-red);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-navy);
}

textarea.form-control {
    height: 150px;
    resize: vertical;
}

.btn {
    padding: 0.75rem 2rem;
    background-color: var(--color-navy);
    color: white;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: var(--color-red);
}

footer {
    background-color: var(--color-dark);
    color: white;
    padding: 3rem 0;
    margin-right: 120px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
}

.footer-column {
    flex: 1;
}

.footer-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: white;
    opacity: 0.7;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: var(--color-red);
}

.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

.back-home {
    display: block;
    margin: 2rem auto;
    text-align: center;
    padding: 0.75rem 1.5rem;
    background-color: var(--color-navy);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    width: 200px;
    transition: background-color 0.3s ease;
}

.back-home:hover {
    background-color: var(--color-red);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-20px) translateX(-50%);
    }

    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

.art-content {
    position: relative;
    z-index: 10;
    width: 80%;
    max-width: 500px;
    margin: 0 auto;
}

.abstract-art {
    width: 100%;
    height: 400px;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.art-shape {
    position: absolute;
}

.art-shape-1 {
    width: 150px;
    height: 150px;
    background-color: var(--color-red);
    transform: rotate(45deg);
    top: 20%;
    left: 10%;
}

.art-shape-2 {
    width: 100px;
    height: 200px;
    border-radius: 50%;
    background-color: var(--color-navy);
    top: 30%;
    right: 15%;
}

.art-shape-3 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--color-gold);
    bottom: 20%;
    left: 25%;
}

.art-shape-4 {
    width: 120px;
    height: 60px;
    background-color: var(--color-cream);
    transform: rotate(-15deg);
    bottom: 25%;
    right: 25%;
}

.art-shape-5 {
    width: 40px;
    height: 100px;
    background-color: var(--color-purple);
    transform: rotate(30deg);
    top: 15%;
    right: 35%;
}

@media (max-width: 992px) {
    .musical-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .color-bar {
        display: none;
    }

    header {
        right: 0;
    }

    .logo {
        position: relative;
        width: auto;
        height: auto;
        transform: none;
        padding: 0.5rem 1rem;
        margin-bottom: 1rem;
    }

    .main-nav {
        margin-left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }

    .main-content {
        margin-right: 0;
    }

    footer {
        margin-right: 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}