/* Legacy Page Styles */

main {
    padding-top: var(--nav-height, 70px);
}

.legacy-hero {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.2);
}

.legacy-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.legacy-quote {
    max-width: 800px;
    margin: 2rem auto;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-style: italic;
    color: var(--accent-color);
    line-height: 1.4;
}

.legacy-quote cite {
    display: block;
    font-size: 1.2rem;
    margin-top: 1rem;
    color: var(--secondary-color);
}

.graceland-section,
.music-legacy-section,
.personal-section,
.future-section {
    padding: 4rem 2rem;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.legacy-photo {
    flex: 1;
    max-width: 500px;
}

.feature-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.legacy-text {
    flex: 1;
}

.legacy-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.legacy-info {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.button-container {
    margin-top: 2rem;
}

.feature-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--accent-color);
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border: 2px solid var(--accent-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.feature-button:hover {
    background: var(--accent-color);
    color: var(--background-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.music-legacy-section {
    background: rgba(0, 0, 0, 0.2);
}

.future-section {
    background: rgba(0, 0, 0, 0.2);
    text-align: center;
}

.future-section .legacy-quote {
    margin: 3rem auto;
}

/* Footer Styles */
.site-footer {
    background-color: var(--background-color);
    padding: 2rem 1rem;
    text-align: center;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer .disclaimer {
    color: var(--secondary-color);
    font-size: 0.9rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section-content {
        gap: 2rem;
    }

    .legacy-photo {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .section-content {
        flex-direction: column;
        gap: 2rem;
    }

    .legacy-photo {
        max-width: 100%;
    }

    .music-legacy-section .section-content {
        flex-direction: column-reverse;
    }

    .legacy-quote {
        font-size: 1.6rem;
        padding: 0 1rem;
    }

    .legacy-hero h1 {
        font-size: 2.8rem;
    }

    .legacy-text p {
        font-size: 1.1rem;
    }

    .graceland-section,
    .music-legacy-section,
    .personal-section,
    .future-section {
        padding: 3rem 1rem;
    }
}

@media (max-width: 480px) {
    .legacy-hero {
        padding: 3rem 1rem;
    }

    .legacy-hero h1 {
        font-size: 2.2rem;
    }

    .legacy-text p {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .feature-button {
        width: 100%;
        margin: 0.5rem 0;
    }

    .site-footer {
        padding: 1.5rem 1rem;
        margin-top: 3rem;
    }

    .site-footer .disclaimer {
        font-size: 0.85rem;
    }
}
