/* Legacy Section Styles */
.legacy-section {
    position: relative;
    padding: 4rem 2rem;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.legacy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 100%
    );
    pointer-events: none;
    z-index: -1;
}

.legacy-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.legacy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0;
}

.legacy-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.legacy-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
}

.legacy-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    color: #d4af37;
}

.legacy-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #d4af37;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.legacy-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1.05rem;
    margin-bottom: 1rem;
    font-family: 'Lato', sans-serif;
}

.legacy-card .format-list {
    margin: 1rem 0;
}

.legacy-card .format-list p {
    margin: 0.5rem 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
}

.legacy-card .learn-more {
    margin-top: auto;
    padding-top: 1rem;
}

.legacy-card .button {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    background: transparent;
    color: #d4af37;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.legacy-card .button:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.legacy-card .button .arrow {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.legacy-card .button:hover .arrow {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .legacy-section {
        padding: 3rem 1rem;
    }
    
    .legacy-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .legacy-card {
        padding: 1.5rem;
    }
    
    .legacy-card h3 {
        font-size: 1.6rem;
        margin-bottom: 0.75rem;
    }
}

/* Global Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Main content padding for fixed header */
main {
    padding-top: 80px; /* Adds space for the fixed header */
}

/* Common section styles */
section {
    padding: 4rem 0;
    background-color: #000000;
    position: relative;
    z-index: 1;
}

section:nth-child(even) {
    background: rgba(0, 0, 0, 0.3);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding: 2rem 0;
}

.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #d4af37;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.section-line {
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(212, 175, 55, 0.5),
        rgba(212, 175, 55, 0.8),
        rgba(212, 175, 55, 0.5),
        transparent
    );
    margin: 0 auto;
}

/* Album Section */
.albums-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.album-card {
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.album-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
}

.album-cover {
    width: 100%;
    aspect-ratio: 1;
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album-info {
    padding: 1.5rem;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.98) 100%);
    border-top: 2px solid rgba(212, 175, 55, 0.3);
}

.album-info h3,
.album-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #e5c158;
    margin: 0 0 0.5rem 0;
    text-align: center;
    line-height: 1.2;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    padding: 0 0.5rem;
}

.album-info .year,
.album-year {
    color: #ffffff;
    font-size: 1.1rem;
    text-align: center;
    font-family: 'Lato', sans-serif;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.album-info .description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Responsive album grid */
@media (max-width: 1024px) {
    .albums-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 0 1.5rem;
    }
}

@media (max-width: 640px) {
    .albums-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 2rem;
        padding: 0 1rem;
    }
}

/* Evolution Timeline */
.evolution-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
    margin-top: 2rem;
}

.timeline-item {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-5px);
}

/* Press Section */
.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.press-item {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.press-item:hover {
    transform: translateY(-5px);
}

.press-item p {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.press-item cite {
    color: #d4af37;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    .evolution-timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .press-grid {
        grid-template-columns: 1fr;
    }

    .album-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    section {
        padding: 2.5rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }
}

/* First section on each page */
.bio-hero, .legacy-hero, .intro-section {
    padding-top: 120px; /* Extra padding for the first section */
    margin-top: 0; /* Remove margin for first section */
}

/* Duets Section */
.duets-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
    align-items: start;
}

.duets-content {
    padding-right: 2rem;
}

.duets-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.duets-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 1.5rem;
}

.duet-item {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.duet-item:hover {
    transform: translateY(-5px);
}

.duet-title {
    color: #d4af37;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.duet-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
}

.duets-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.duets-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.duets-image:hover img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .duets-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .duets-content {
        padding-right: 0;
    }

    .duets-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Portrait Section */
.portrait-section {
    padding: 4rem 2rem;
    background: #0a0a0a;
}

.portrait-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.portrait-image {
    position: relative;
}

.portrait-frame {
    position: relative;
    padding-top: 125%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.portrait-frame img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portrait-caption {
    text-align: center;
    color: #888;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.portrait-text {
    color: #fff;
}

.portrait-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.portrait-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 1.5rem;
}

.portrait-quote-container {
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
    margin-top: 2rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.portrait-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.4;
    color: var(--text-color);
    margin: 0;
    padding: 0;
}

.portrait-quote p {
    margin-bottom: 1rem;
}

.portrait-quote-container .quote-attribution {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-top: 1rem;
    text-align: right;
}

/* Responsive Design */
@media (max-width: 768px) {
    .duets-container {
        grid-template-columns: 1fr;
    }

    .duets-grid {
        grid-template-columns: 1fr;
    }

    .albums-grid {
        grid-template-columns: 1fr;
    }

    .portrait-container {
        grid-template-columns: 1fr;
    }
}

/* Legacy Section */
.legacy-section {
    padding: 4rem 0;
    margin: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.9));
    position: relative;
}

.quote-container {
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.quote-container {
    margin-top: 2rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-container blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.4;
    color: var(--text-color);
    margin: 0;
    padding: 0;
}

.quote-container .quote-attribution {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-top: 1rem;
    text-align: right;
}

.legacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .legacy-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .section-header {
        padding: 1rem;
    }
    
    .section-header h2 {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
        padding: 0 1rem;
    }
    
    #book {
        padding: 2rem 0;
    }
    
    #book .legacy-card {
        margin: 0 1rem;
    }
    
    .legacy-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .legacy-grid {
        padding: 0 0.5rem;
    }
    
    .section-header {
        padding: 0.5rem;
    }
    
    #book {
        padding: 1.5rem 0;
    }
    
    #book .legacy-card {
        margin: 0 0.5rem;
    }
    
    .legacy-card {
        padding: 1.25rem;
    }
    
    .section-header h2 {
        font-size: clamp(1.6rem, 4vw, 2rem);
        padding: 0 0.5rem;
    }
}

.legacy-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.legacy-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #e5c158;
    margin-bottom: 1rem;
}

.legacy-card p {
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.legacy-card .book-cover {
    width: 200px;
    height: 300px;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.legacy-card .book-cover img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.format-list {
    margin: 1rem 0;
    text-align: center;
}

.format-list p {
    margin: 0.5rem 0;
    color: #ffffff;
    font-size: 1rem;
}

@media (max-width: 1024px) {
    .legacy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .legacy-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .duets-container {
        grid-template-columns: 1fr;
    }

    .duets-grid {
        grid-template-columns: 1fr;
    }

    .albums-grid {
        grid-template-columns: 1fr;
    }

    .portrait-container {
        grid-template-columns: 1fr;
    }
}

/* Music Page Styles */
.music-content {
    padding-top: 60px;
}

.page-header {
    position: relative;
    height: 25vh;
    min-height: 200px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 100%
    );
    pointer-events: none;
    z-index: 0;
}

.header-content {
    max-width: 800px;
    padding: 0.25rem;
    z-index: 1;
    position: relative;
}

.header-content h1 {
    font-size: 2.5rem;
    margin: 0;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.header-subtitle {
    font-size: 1.1rem;
    color: #d4af37;
    font-family: 'Lato', sans-serif;
    margin: 0.2rem 0 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.header-quote {
    margin: 0.3rem 0 0;
    font-style: italic;
}

.header-quote p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.2;
}

.header-quote cite {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.85rem;
    color: #d4af37;
    line-height: 1.1;
}

.collaborations-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9));
    padding: 4rem 2rem;
}

.collaborations-content {
    max-width: 1200px;
    margin: 0 auto;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

.collaborations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.collaboration-item {
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.collaboration-item:hover {
    transform: translateY(-5px);
}

.collaboration-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.collaboration-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .duets-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .duets-content {
        padding: 1.5rem;
    }

    .collaborations-grid {
        grid-template-columns: 1fr;
    }

    .page-header {
        padding: 1rem;
    }
}

/* Philanthropy Section */
.philanthropy-card {
    display: flex;
    flex-direction: column;
}

.card-quote {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    border-left: 3px solid var(--accent-color);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    font-style: italic;
    position: relative;
}

.card-quote cite {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: normal;
    font-family: 'Lato', sans-serif;
    text-align: right;
}

.philanthropy-card .learn-more {
    margin-top: auto;
}

.music-card {
    display: flex;
    flex-direction: column;
}

.music-card .card-quote {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    border-left: 3px solid var(--accent-color);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    font-style: italic;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.music-card .card-quote cite {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: normal;
    font-family: 'Lato', sans-serif;
    text-align: right;
}

.music-card .learn-more {
    margin-top: auto;
}

/* Common Components */
.explore-button-container {
    text-align: center;
    margin-top: 3rem;
    padding: 1rem 0;
}

.explore-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--accent-color);
    padding: 1rem 2.5rem;
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.explore-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--accent-color);
    transition: width 0.3s ease;
    z-index: -1;
}

.explore-button:hover {
    color: var(--text-color);
}

.explore-button:hover::before {
    width: 100%;
}

.button-arrow {
    transition: transform 0.3s ease;
}

.explore-button:hover .button-arrow {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .explore-button-container {
        margin-top: 2rem;
    }

    .explore-button {
        padding: 0.8rem 1.6rem;
        font-size: 1rem;
    }
}

/* Login Page Styles */
.login-content {
    min-height: 100vh;
    padding: 80px 1rem;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)),
                url('https://mli7awtvsoqr.i.optimole.com/w:auto/h:auto/q:mauto/f:best/https://rememberinglisa.com/wp-content/uploads/2023/07/Lisa_Marie_Presley_performing.jpg') center/cover fixed;
}

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

.login-box {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2.5rem;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.login-header p {
    font-size: 1rem;
    opacity: 0.8;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.form-group input {
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(0, 0, 0, 0.5);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.remember-me input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--accent-color);
}

.forgot-password {
    color: var(--accent-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.forgot-password:hover {
    opacity: 0.8;
}

.login-button {
    background: var(--accent-color);
    color: #000;
    border: none;
    padding: 1rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.login-button:hover {
    background: #fff;
    transform: translateY(-2px);
}

.login-footer {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
}

.login-footer a {
    color: var(--accent-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.login-footer a:hover {
    opacity: 0.8;
}

@media (max-width: 480px) {
    .login-box {
        padding: 2rem 1.5rem;
    }

    .login-header h1 {
        font-size: 2rem;
    }
}

/* Book Section */
#book {
    position: relative;
    padding: 2rem 0;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.9),
        rgba(0, 0, 0, 0.7)
    );
}

#book::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/texture-overlay.png');
    opacity: 0.1;
    pointer-events: none;
}

#book .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

#book .section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

#book .section-line {
    width: 120px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        #d4af37,
        transparent
    );
    margin: 0 auto;
}

#book .legacy-content {
    max-width: 1100px;
    margin: 0 auto;
}

#book .legacy-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

#book .legacy-card {
    background: rgba(20, 20, 20, 0.7);
    border: none;
    border-radius: 6px;
    padding: 2rem;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#book .legacy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

#book .card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #d4af37;
    opacity: 0.9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 4rem;
}

#book .legacy-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #d4af37;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

#book .legacy-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-family: 'Lato', sans-serif;
}

#book .format-list {
    margin: 1rem 0;
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    padding-left: 1rem;
}

#book .format-list p {
    margin: 0.5rem 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

#book .format-list p::before {
    content: '•';
    color: #d4af37;
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

#book .learn-more {
    margin-top: auto;
    padding-top: 1rem;
}

#book .button {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    background: transparent;
    color: #d4af37;
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#book .button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

#book .button:hover {
    border-color: #d4af37;
}

#book .button:hover::before {
    transform: translateX(0);
}

#book .button .arrow {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

#book .button:hover .arrow {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    #book {
        padding: 2rem 0;
    }
    
    #book .section-header {
        margin-bottom: 2rem;
    }
    
    #book .section-header h2 {
        font-size: 2.5rem;
    }
    
    #book .legacy-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    #book .legacy-card {
        padding: 1.5rem;
    }
}

.book-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.book-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.book-info-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.book-image {
    position: relative;
    text-align: center;
}

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

.book-image img:hover {
    transform: translateY(-5px);
}

.book-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.book-description {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.9;
}

.book-description p + p {
    margin-top: 1.5rem;
}

.book-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.book-badges {
    margin: 1rem 0;
}

.oprah-badge {
    display: inline-block;
    background: var(--accent-color);
    color: black;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.format-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.book-formats h4, .audiobook-narrators h4 {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0.8rem;
}

.book-formats ul, .audiobook-narrators ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.book-formats li, .audiobook-narrators li {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: var(--text-color);
    margin: 0.5rem 0;
    opacity: 0.9;
}

.book-info {
    margin: 2rem 0;
}

.book-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.publisher, .release-date {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    color: var(--accent-color);
    margin: 0.5rem 0;
}

.book-formats, .audiobook-narrators {
    margin: 1.5rem 0;
}

.book-formats h4, .audiobook-narrators h4 {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0.8rem;
}

.book-formats ul, .audiobook-narrators ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.book-formats li, .audiobook-narrators li {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: var(--text-color);
    margin: 0.5rem 0;
    opacity: 0.9;
}

.book-cta {
    text-align: center;
    margin-top: 1rem;
}

.order-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--accent-color);
    padding: 1rem 2.5rem;
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.order-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--accent-color);
    transition: width 0.3s ease;
    z-index: -1;
}

.order-button:hover {
    color: var(--text-color);
}

.order-button:hover::before {
    width: 100%;
}

.button-arrow {
    transition: transform 0.3s ease;
}

.order-button:hover .button-arrow {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .book-container {
        padding: 1rem;
    }

    .book-content {
        padding: 2rem;
        gap: 2rem;
    }

    .book-info {
        grid-template-columns: 1fr;
    }

    .publisher-info h3 {
        font-size: 1.8rem;
    }

    .book-description {
        font-size: 1rem;
    }

    .publisher, .release-date {
        font-size: 1rem;
    }

    .book-formats h4, .audiobook-narrators h4 {
        font-size: 1rem;
    }

    .book-formats li, .audiobook-narrators li {
        font-size: 0.9rem;
    }

    .order-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

.publisher-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.publisher-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.memoir-author-photo {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.book-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.book-badges {
    margin: 0.5rem 0;
}

.oprah-badge {
    display: inline-block;
    background: var(--accent-color);
    color: black;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.publisher, .release-date {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    color: var(--accent-color);
    margin: 0;
}

.format-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.book-formats, .audiobook-narrators {
    text-align: center;
}

.book-formats h4, .audiobook-narrators h4 {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.book-formats ul, .audiobook-narrators ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.book-formats li, .audiobook-narrators li {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: var(--text-color);
    margin: 0.5rem 0;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .publisher-info h3 {
        font-size: 1.8rem;
    }

    .memoir-author-photo {
        max-width: 100%;
    }

    .format-info {
        grid-template-columns: 1fr;
    }

    .book-formats, .audiobook-narrators {
        text-align: center;
    }

    .book-formats h4, .audiobook-narrators h4 {
        font-size: 1rem;
    }

    .book-formats li, .audiobook-narrators li {
        font-size: 0.9rem;
    }

    .publisher, .release-date {
        font-size: 1rem;
    }

    .oprah-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Pre-Order Section */
.retailers {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.retailer-link {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.retailer-link:hover {
    background-color: var(--accent-color);
    color: var(--bg-color);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .retailers {
        flex-direction: column;
        align-items: stretch;
    }

    .retailer-link {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .albums-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .album-card {
        padding: 1rem;
    }

    .album-title {
        font-size: 1.3rem;
    }
}

.explore-button-container {
    text-align: center;
    margin-top: 3rem;
    padding: 1rem 0;
}

.explore-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--accent-color);
    padding: 1rem 2rem;
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.explore-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--accent-color);
    transition: width 0.3s ease;
    z-index: -1;
}

.explore-button:hover {
    color: var(--text-color);
}

.explore-button:hover::before {
    width: 100%;
}

.button-arrow {
    font-family: sans-serif;
    transition: transform 0.3s ease;
}

.explore-button:hover .button-arrow {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .explore-button-container {
        margin-top: 2rem;
    }

    .explore-button {
        padding: 0.8rem 1.6rem;
        font-size: 1rem;
    }
}

.photo-break {
    padding: 0;
    margin: 2rem 0;
    background: transparent;
}

.full-width-photo {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.full-width-photo img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .photo-break {
        margin: 1.5rem 0;
        padding: 0 1rem;
    }

    .full-width-photo {
        border-radius: 8px;
    }
}

.memoir-photo {
    margin-top: 2rem;
    position: relative;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.memoir-photo img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.photo-caption {
    margin-top: 1rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
    font-style: italic;
}

@media (max-width: 768px) {
    .memoir-photo {
        margin-top: 1.5rem;
    }
    
    .photo-caption {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .book-container {
        padding: 1rem;
    }

    .book-content {
        padding: 2rem;
        gap: 2rem;
    }

    .book-info {
        grid-template-columns: 1fr;
    }

    .publisher-info h3 {
        font-size: 1.8rem;
    }

    .book-description {
        font-size: 1rem;
    }

    .publisher, .release-date {
        font-size: 1rem;
    }

    .book-formats h4, .audiobook-narrators h4 {
        font-size: 1rem;
    }

    .book-formats li, .audiobook-narrators li {
        font-size: 0.9rem;
    }

    .order-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

.family-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(212, 175, 55, 0.03) 50%, rgba(0, 0, 0, 0) 100%);
}

.family-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 4rem auto;
}

.family-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.family-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.25);
}

.family-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.family-info {
    padding: 2rem;
}

.family-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.family-relation {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.family-description {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .family-section {
        padding: 4rem 1rem;
    }

    .family-grid {
        gap: 2rem;
    }

    .family-image {
        height: 250px;
    }

    .family-info {
        padding: 1.5rem;
    }

    .family-name {
        font-size: 1.6rem;
    }
}

/* Legacy Page Styles */
.legacy-hero {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #000;
}

.hero-quote {
    max-width: 800px;
    margin: 2rem auto;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #d4af37;
    line-height: 1.6;
    font-style: italic;
}

.quote-attribution {
    display: block;
    margin-top: 1rem;
    font-size: 1.1rem;
    color: #fff;
}

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

.legacy-image {
    flex: 1;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.legacy-text {
    flex: 1;
}

.legacy-text p {
    color: #fff;
    font-family: 'Lato', sans-serif;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legacy-text a {
    color: #d4af37;
    text-decoration: none;
    border-bottom: 1px solid #d4af37;
    transition: all 0.3s ease;
}

.legacy-text a:hover {
    color: #fff;
    border-bottom-color: #fff;
}

.legacy-graceland, .legacy-music, .legacy-personal, .legacy-future {
    padding: 4rem 0;
    background-color: #000;
}

.legacy-button {
    display: inline-block;
    padding: 12px 24px;
    margin-top: 1rem;
    background-color: #000;
    color: #d4af37;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    transition: all 0.3s ease;
    border: 2px solid #d4af37;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.legacy-button:hover {
    background-color: #d4af37;
    color: #000;
}

@media (max-width: 768px) {
    .legacy-content {
        flex-direction: column;
        text-align: center;
    }

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

    .hero-quote {
        font-size: 1.2rem;
        padding: 0 1rem;
    }

    .legacy-button {
        display: block;
        text-align: center;
        margin: 2rem auto 0;
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    .legacy-button {
        display: block;
        text-align: center;
        margin: 2rem auto 0;
        max-width: 200px;
    }
}

/* About Page Styles */
.bio-hero {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #000;
}

.bio-intro {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.bio-hero-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.bio-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #d4af37;
    font-style: italic;
    line-height: 1.6;
    margin: 2rem 0;
}

.bio-section, .personal-life {
    padding: 4rem 2rem;
    background-color: #000;
}

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

.bio-text {
    flex: 1;
}

.bio-text p {
    color: #fff;
    font-family: 'Lato', sans-serif;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.bio-image {
    flex: 1;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.bio-milestones {
    padding: 4rem 2rem;
    background-color: #000;
}

.milestone-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.milestone {
    background-color: rgba(212, 175, 55, 0.1);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #d4af37;
}

.milestone-year {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.milestone p {
    color: #fff;
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .bio-content {
        flex-direction: column;
        text-align: center;
    }

    .bio-image {
        max-width: 100%;
        margin: 2rem 0;
    }

    .bio-quote {
        font-size: 1.4rem;
        padding: 0 1rem;
    }

    .milestone-grid {
        grid-template-columns: 1fr;
    }
}

/* Critical Reception Section */
.critical-reception {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.reception-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.review-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    height: 100%;
}

.review-card h3 {
    color: #d4af37;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-quote {
    font-style: italic;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.review-quote cite {
    display: block;
    margin-top: 0.5rem;
    color: #d4af37;
    font-size: 0.9rem;
}

.review-detail {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.evolution-section {
    padding: 4rem 0;
}

.evolution-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.evolution-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(212, 175, 55, 0) 0%,
        rgba(212, 175, 55, 0.5) 15%,
        rgba(212, 175, 55, 0.5) 85%,
        rgba(212, 175, 55, 0) 100%
    );
    z-index: 0;
}

.timeline-item {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
    z-index: 1;
}

.timeline-item:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.5);
}

.timeline-content {
    padding: 2rem;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #d4af37;
    border-radius: 50%;
    border: 4px solid #000;
    z-index: 2;
}

.timeline-content .year {
    color: #d4af37;
    font-weight: bold;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: block;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
}

.timeline-content p {
    margin: 0;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    font-size: 1.05rem;
}

.press-section {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.press-item {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.press-item p {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.press-item cite {
    color: #d4af37;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .evolution-timeline {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .evolution-timeline::before {
        left: 50%;
        top: 0;
        bottom: 0;
        width: 2px;
        height: 100%;
        transform: translateX(-50%);
        background: linear-gradient(180deg, 
            rgba(212, 175, 55, 0) 0%,
            rgba(212, 175, 55, 0.5) 15%,
            rgba(212, 175, 55, 0.5) 85%,
            rgba(212, 175, 55, 0) 100%
        );
    }
}

.book-cover {
    margin: 1.5rem auto 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    max-width: 240px;
}

.book-cover:hover {
    transform: translateY(-5px);
}

.book-cover img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.legacy-card .card-icon {
    width: 300px !important;
    height: 450px !important;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.legacy-card .card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.legacy-card .book-cover {
    width: 300px;
    height: 450px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.legacy-card .book-cover img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.section-line {
    width: 60px;
    height: 2px;
    background: #d4af37;
    margin: 0 auto;
}

.simple-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
}

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

.book-excerpt {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.book-excerpt h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.book-excerpt p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-family: 'Lato', sans-serif;
}

@media (max-width: 768px) {
    .simple-grid {
        grid-template-columns: 1fr;
    }

    .book-image img {
        margin-bottom: 1.5rem;
    }
}

#book {
    padding: 2rem 0;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.9),
        rgba(0, 0, 0, 0.7)
    );
}

.legacy-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.9));
}

.section + .legacy-section {
    padding-top: 0;
}

.section-break {
    position: relative;
    height: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.section-break::before {
    content: '✧';
    color: #d4af37;
    font-size: 1.5rem;
    opacity: 0.8;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.section-break::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(212, 175, 55, 0.3),
        transparent
    );
}

.section + .section-break {
    margin-top: 1rem;
}

.section-break + section {
    margin-top: 1rem;
}

#legacy {
    padding-top: 2rem;
}

.tribute-section {
    position: relative;
    padding: 4rem 2rem;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.95));
}

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

.tribute-content p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.tribute-content p:first-child::first-letter,
.intro-text::first-letter {
    all: unset;
}

.intro-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 1.5rem;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.98));
}

.intro-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.intro-subtext {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

/* Live Performances Section */
.live-performances {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.performance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.performance-image {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.performance-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.performance-text {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Lato', sans-serif;
    line-height: 1.7;
}

.performance-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .performance-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
    }

    .performance-text p {
        font-size: 1rem;
    }
}
