/* Reset and Base Styles */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
}

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

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

@media (max-width: 768px) {
    .container {
        padding: 0 0.8rem;
    }
    
    body {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
}

:root {
    --background-color: #000000;
    --text-color: #ffffff;
    --accent-color: #d4af37;
    --primary-color: #ffffff;
    --secondary-color: #888888;
    --header-height: 75vh;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Header Styles */
.page-header {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin-top: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.header-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: calc(100% - 2rem);
    margin: 0 auto;
    padding: 3rem 2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 12px;
    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);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.header-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 5rem);
    line-height: 1.1;
    font-weight: 300;
    letter-spacing: 0.15em;
    margin: 0;
    text-transform: uppercase;
    color: var(--text-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.years {
    display: block;
    font-size: 0.35em;
    margin-top: 1rem;
    color: var(--text-color);
    letter-spacing: 0.25em;
    opacity: 0.85;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.header-quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.4;
    max-width: 600px;
    margin: 0;
    color: var(--text-color);
    opacity: 0.9;
    position: relative;
    padding: 0 1.5rem;
}

.header-quote::before,
.header-quote::after {
    content: '"';
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5em;
    line-height: 0;
    position: absolute;
    color: var(--accent-color);
}

.header-quote::before {
    left: 0;
    top: 0.5em;
}

.header-quote::after {
    right: 0;
    bottom: 0;
}

@media (max-width: 768px) {
    .header-content {
        width: calc(100% - 2rem);
        padding: 2rem 1.5rem;
        gap: 1rem;
    }

    .header-content h1 {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
        letter-spacing: 0.12em;
    }

    .years {
        font-size: 0.4em;
        margin-top: 0.8rem;
        letter-spacing: 0.2em;
    }

    .header-quote {
        font-size: 1.1rem;
        padding: 0 1.2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: auto;
    }

    .page-header {
        margin-top: 50px;
        padding: 3rem 0;
        min-height: calc(100vh - 50px);
    }

    .header-content {
        width: calc(100% - 2rem);
        padding: 2rem 1.5rem;
        gap: 1rem;
    }

    .header-quote {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        margin-top: 40px;
        padding: 2rem 0;
        min-height: calc(100vh - 40px);
    }

    .header-content {
        width: calc(100% - 1rem);
        padding: 1.5rem 1rem;
        gap: 0.75rem;
    }

    .header-quote {
        font-size: 1rem;
        padding: 0 0.75rem;
    }
}

@media (max-width: 480px) and (orientation: portrait) {
    .header-content {
        width: calc(100% - 1rem);
        padding: 1rem;
        gap: 0.5rem;
        background: rgba(0, 0, 0, 0.8);
    }

    .header-content h1 {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
        line-height: 1.2;
        letter-spacing: 0.1em;
    }

    .years {
        font-size: 0.4em;
        margin-top: 0.5rem;
        letter-spacing: 0.2em;
    }

    .header-quote {
        font-size: 1rem;
        line-height: 1.3;
        padding: 0 0.75rem;
    }

    .header-quote::before,
    .header-quote::after {
        font-size: 1.2em;
    }
}

/* Main Content Styles */
.home-content {
    position: relative;
    z-index: 1;
    background-color: var(--background-color);
}

.intro-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: var(--background-color);
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    padding: 1rem 2rem;
    transition: all 0.3s ease;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-line {
    width: 100px;
    height: 2px;
    background-color: #ffffff;
    margin: 0 auto;
}

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

.disclaimer {
    opacity: 0.6;
    font-size: 0.9rem;
    max-width: 600px;
    margin: 0 auto;
    letter-spacing: 0.5px;
    line-height: 1.8;
}

/* Beta Badge */
.beta-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .portrait-container {
        flex-direction: column;
        gap: 2rem;
    }

    .portrait-text {
        max-width: 100%;
    }

    .section-title {
        margin-bottom: 2rem;
    }

    .albums-grid {
        gap: 2rem;
    }

    .legacy-content {
        padding: 2rem;
    }

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

    .book-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .book-info {
        text-align: center;
    }
}

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

    .header-content {
        width: calc(100% - 2rem);
        padding: 2rem 1.5rem;
        margin: 4rem auto;
    }

    .header-content h1 {
        font-size: clamp(2rem, 6vw, 3rem);
        letter-spacing: 0.05em;
    }

    .header-quote {
        font-size: 1.1rem;
    }

    .intro-section {
        padding: 4rem 1.5rem;
    }
}

/* Ensure content sections don't have conflicting styles */
section {
    position: relative;
    z-index: 1;
}

/* Header styles */
/* Removed */

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary-color);
}

h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 300;
}

nav {
    background-color: white;
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    gap: 2rem;
}

nav a {
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: var(--light-gray);
}

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

.section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.content {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

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

.album {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.album-cover {
    width: 200px;
    height: 200px;
    margin-bottom: 1rem;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.album:hover .album-cover img {
    transform: scale(1.05);
}

.album h3 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.2rem;
}

.album p {
    font-size: 0.9rem;
    color: var(--text-color);
    margin: 0;
    line-height: 1.4;
}

.album-details-btn {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.album-details-btn:hover {
    background-color: #634591;
    transform: translateY(-2px);
}

.quote-block {
    position: relative;
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: var(--accent-color);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.quote-block::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 6rem;
    font-family: 'Cormorant Garamond', serif;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
}

.quote-block blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    line-height: 1.4;
    color: #ffffff;
    margin: 0;
    padding: 0;
    border: none;
    text-align: center;
}

.quote-block cite {
    display: block;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    font-size: 1.1rem;
    text-align: right;
}

.quote-block cite::before {
    content: '— ';
}

.legacy-section .quote-block {
    background: rgba(0, 0, 0, 0.95);
    margin-top: 3rem;
}

.legacy-section .quote-block::before {
    color: rgba(255, 255, 255, 0.1);
}

.legacy-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    font-size: 1.2rem;
    color: var(--accent-color);
}

.tribute-form {
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.tribute-form input,
.tribute-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Lato', sans-serif;
}

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

button {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #6b849b;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow-y: auto;
}

.modal-content {
    position: relative;
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    width: 90%;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--accent-color);
}

.album-details {
    margin-top: 1rem;
}

.album-details h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.track-list {
    list-style: none;
    padding: 0;
}

.track-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.track-list li:last-child {
    border-bottom: none;
}

.track-list, .bonus-tracks ol {
    list-style-position: inside;
    padding-left: 0;
}

.track-list li, .bonus-tracks li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.track-list li:last-child, .bonus-tracks li:last-child {
    border-bottom: none;
}

.track-list li::marker, .bonus-tracks li::marker {
    color: #666;
    font-weight: 400;
}

footer {
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 3rem;
    background-color: rgba(0, 0, 0, 0.95);
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
    margin: 0.5rem 0;
    color: #ffffff;
}

.footer-disclaimer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0.5rem auto;
}

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

.album-hero {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.album-cover-large {
    flex: 0 0 400px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    border-radius: 4px;
    overflow: hidden;
}

.album-cover-large img {
    width: 100%;
    height: auto;
    display: block;
}

.album-info {
    flex: 1;
}

.album-info h1 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.album-metadata {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.album-section {
    margin: 3rem 0;
    padding: 0 20px;
}

.album-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.track-list {
    list-style: none;
    padding: 0;
}

.track-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.track-list li:last-child {
    border-bottom: none;
}

.track-title {
    font-weight: 400;
}

.track-duration {
    color: var(--accent-color);
    font-family: 'Lato', sans-serif;
}

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

.single {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
}

.single h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.reviews {
    display: grid;
    gap: 2rem;
}

.artist-quote {
    font-size: 1.2rem;
    font-style: italic;
    margin: 2rem 0;
    padding: 2rem;
    background-color: var(--quote-bg);
    border-left: 4px solid var(--accent-color);
    border-radius: 0 8px 8px 0;
}

.album-info-extended {
    max-width: 100%;
    padding: 0;
}

.album-info-extended p {
    margin-bottom: 20px;
}

.streaming-buttons {
    margin: 20px 0;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.bonus-tracks {
    margin-top: 30px;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
}

.bonus-tracks h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.2em;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 20px 0;
}

.video-item {
    background: #fff;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.video-thumbnail {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 4px;
}

.video-thumbnail::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-thumbnail::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent rgba(255, 255, 255, 0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-thumbnail:hover::before,
.video-thumbnail:hover::after {
    opacity: 1;
}

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

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.video-title {
    margin-top: 12px;
    font-size: 1.1em;
    color: var(--primary-color);
    text-align: center;
}

.video-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: #7851a9;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.video-link:hover {
    background-color: #634291;
}

.streaming-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.streaming-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.streaming-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.streaming-btn img {
    width: 24px;
    height: 24px;
    margin-right: 0.8rem;
}

.apple-music-btn {
    background-color: #fb2d4d;
    color: white;
}

.apple-music-btn:hover {
    background-color: #e62945;
}

.spotify-btn {
    background-color: #1DB954;
    color: white;
}

.spotify-btn:hover {
    background-color: #1aa34a;
}

.promo-image {
    float: right;
    margin: 5px 0 20px 30px;
    width: 300px;
}

.promo-photo {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.promo-photo:hover {
    transform: scale(1.02);
}

.tracklist-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.album-image {
    width: 300px;
    flex-shrink: 0;
    order: 2;
}

.album-photo {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.album-photo:hover {
    transform: scale(1.02);
}

.tracklist {
    flex-grow: 1;
    order: 1;
}

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

.duet-item {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.duet-item h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.duet-item img {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.duet-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

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

.charity-item {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.charity-item h3 {
    color: var(--accent-color);
    margin-top: 0;
    margin-bottom: 1rem;
}

.relief-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.relief-list li {
    background: var(--light-gray);
    padding: 1rem 1.5rem;
    margin: 0.5rem 0;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.relief-list li:hover {
    transform: translateX(10px);
}

.advocacy-content ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.advocacy-content li {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
    transition: transform 0.3s ease;
}

.advocacy-content li:hover {
    transform: scale(1.05);
}

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

a:hover {
    color: var(--primary-color);
}

/* Disaster Relief Section Styles */
.disaster-relief {
    margin: 4rem 0;
}

.relief-video {
    margin: 3rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.relief-efforts {
    margin-top: 3rem;
}

.relief-list {
    list-style: none;
    padding: 0;
}

.relief-list li {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.relief-list li p {
    margin: 0.5rem 0 0 0;
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.5;
}

.video-grid {
    margin: 2rem 0;
}

.video-item {
    text-align: center;
}

.video-thumbnail {
    display: block;
    margin: 1rem auto;
    position: relative;
    max-width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.video-thumbnail:hover {
    transform: translateY(-2px);
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.video-description {
    text-align: left;
    margin: 1rem 0;
    line-height: 1.6;
    color: var(--text-color);
}

/* Suicide Awareness Section Styles */
.suicide-awareness {
    margin: 4rem 0;
}

.awareness-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.resource-item {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.resource-item h3 {
    color: var(--accent-color);
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.resource-item ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.resource-item li {
    margin: 0.8rem 0;
    line-height: 1.4;
}

.resource-item strong {
    color: var(--accent-color);
}

.warning-signs li, .help-steps li {
    padding-left: 1.5rem;
    position: relative;
}

.warning-signs li::before, .help-steps li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.additional-resources li {
    margin: 1rem 0;
}

.additional-resources a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.additional-resources a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Major Initiatives Section */
.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.initiative-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.initiative-card h3 {
    color: var(--accent-color);
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.initiative-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.initiative-card li {
    margin: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.4;
}

.initiative-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.presley-place {
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.presley-place h3 {
    text-align: center;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.learn-more {
    margin-top: 2rem;
    text-align: center;
}

.button {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.button:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.button .arrow {
    margin-left: 0.5rem;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

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

/* Grief Essay Section */
.grief-essay {
    max-width: 800px;
    margin: 3rem auto;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 12px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.essay-date {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    margin: 1rem 0 2rem;
}

.featured-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--accent-color);
    border-left: 4px solid var(--accent-color);
    padding: 1rem 0 1rem 2rem;
    margin: 2rem 0;
    background: rgba(120, 81, 169, 0.05);
}

.essay-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 2rem 0;
    color: var(--text-color);
}

.key-insights {
    margin: 3rem 0;
}

.key-insights h4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.key-insights ul {
    list-style: none;
    padding: 0;
}

.key-insights li {
    margin: 1rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.key-insights li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.essay-link {
    text-align: center;
    margin: 3rem 0;
}

.support-resources {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.support-resources h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.support-resources ul {
    list-style: none;
    padding: 0;
}

.support-resources li {
    margin: 1.5rem 0;
    line-height: 1.5;
}

.support-resources strong {
    color: var(--accent-color);
}

.essay-photo {
    margin: 2rem 0;
    text-align: center;
}

.essay-photo img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.photo-caption {
    margin-top: 1rem;
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.9rem;
}

.loss-awareness {
    margin-top: 4rem;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 3rem;
}

.loss-awareness-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.loss-awareness-link:hover {
    transform: translateY(-4px);
}

.loss-awareness img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.awareness-caption {
    margin-top: 1rem;
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    .section {
        padding: 2rem 1rem;
    }

    .album-hero {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .album-cover-large {
        flex: 0 0 300px;
        width: 100%;
        max-width: 300px;
    }

    .album-info {
        text-align: center;
    }

    .album-page {
        padding: 1rem;
    }

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

    .promo-image {
        float: none;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 20px;
    }

    .tracklist-container {
        flex-direction: column;
    }

    .album-image {
        width: 100%;
        max-width: 300px;
        margin: 0 auto 20px;
        order: 1;
    }

    .tracklist {
        order: 2;
    }

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

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

    .advocacy-content ul {
        grid-template-columns: 1fr;
    }

    .quote-block {
        margin: 2rem 1rem;
        padding: 1.5rem;
    }

    .quote-block blockquote {
        font-size: 1.25rem;
    }

    .quote-block cite {
        font-size: 1rem;
    }

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

    .resource-item {
        padding: 1.5rem;
    }

    .relief-video {
        margin: 2rem 0;
    }

    .relief-list li {
        padding: 1rem;
    }

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

    .initiative-card {
        padding: 1.5rem;
    }

    .presley-place {
        margin-bottom: 2rem;
    }

    .button {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    .grief-essay {
        padding: 1.5rem;
        margin: 2rem auto;
    }

    .featured-quote {
        font-size: 1.2rem;
        padding: 0.8rem 0 0.8rem 1.5rem;
    }

    .essay-intro {
        font-size: 1rem;
    }

    .essay-photo {
        margin: 1.5rem 0;
    }

    .loss-awareness {
        margin-top: 3rem;
        padding-top: 2rem;
    }
}

/* Home Page Specific Styles */
.home-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.legacy-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.legacy-card:hover {
    transform: translateY(-4px);
}

.legacy-card .card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

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

/* Albums Grid */
.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.album-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.album-card:hover {
    transform: translateY(-4px);
}

.album-card img {
    width: 100%;
    height: auto;
    display: block;
}

.album-info {
    padding: 1.5rem;
    text-align: center;
}

.album-info h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.album-year {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
}

/* Quotes Section */
.quotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.quote-card {
    background: var(--quote-bg);
    padding: 2rem;
    position: relative;
    border-radius: 8px;
}

.quote-card blockquote {
    margin: 0;
    position: relative;
}

.quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    position: absolute;
    left: -0.5rem;
    top: -2rem;
    color: var(--accent-color);
    opacity: 0.2;
}

.quote-card p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-style: italic;
}

.quote-card cite {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    color: var(--accent-color);
    font-style: normal;
    display: block;
    text-align: right;
}

@media (max-width: 768px) {
    .quote-card p {
        font-size: 1.2rem;
    }
    
    .quote-mark {
        font-size: 3rem;
        top: -1.5rem;
    }
}

/* Buttons */
.button {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: #7851a9;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .legacy-grid,
    .albums-grid,
    .quotes-grid {
        grid-template-columns: 1fr;
    }

    .quote-card {
        padding: 1.5rem;
    }

    .quote-mark {
        font-size: 3rem;
    }
}

/* Album Page Styles */
.album-hero {
    background: white;
    padding: 4rem 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.album-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(300px, 400px) 1fr;
    gap: 4rem;
    align-items: start;
}

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

.album-info {
    padding: 1rem 0;
}

.album-info h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.album-year {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.album-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.streaming-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-stream {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-stream:hover {
    background: var(--accent-color);
    color: white;
}

.btn-stream img {
    width: 24px;
    height: 24px;
}

/* Track List Styles */
.track-list {
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.track-list h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.tracks {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.track {
    display: grid;
    grid-template-columns: 50px 1fr 80px;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.track:last-child {
    border-bottom: none;
}

.track:hover {
    background-color: var(--light-gray);
}

.track-number {
    color: var(--accent-color);
    font-weight: 600;
}

.track-duration {
    color: var(--secondary-color);
    text-align: right;
}

/* Album Content Grid */
.album-content {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

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

.content-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.content-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.quote-card {
    background: var(--quote-bg);
}

.quote-card blockquote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    position: relative;
    padding: 1rem 0;
}

.quote-card blockquote::before {
    content: '"';
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--accent-color);
    opacity: 0.2;
    position: absolute;
    top: -1rem;
    left: -1rem;
}

.quote-card footer {
    margin-top: 1rem;
    color: var(--secondary-color);
    font-style: normal;
}

/* Featured Video Section */
.featured-video {
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.featured-video h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.video-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

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

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(120, 81, 169, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: var(--accent-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
    color: white;
    font-size: 2rem;
}

.video-caption {
    padding: 1rem;
    text-align: center;
    color: var(--secondary-color);
}

/* Album Navigation */
.album-navigation {
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.nav-prev, .nav-next {
    flex: 1;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.nav-prev {
    text-align: left;
}

.nav-next {
    text-align: right;
}

.nav-label {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.album-name {
    font-weight: 600;
    color: var(--accent-color);
}

.nav-prev:hover, .nav-next:hover {
    transform: translateY(-4px);
}

.nav-next.disabled {
    opacity: 0.5;
    cursor: default;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .album-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .album-cover {
        max-width: 300px;
        margin: 0 auto;
    }

    .album-info {
        text-align: center;
    }

    .streaming-links {
        justify-content: center;
    }

    .track {
        grid-template-columns: 40px 1fr 70px;
        padding: 0.75rem 1rem;
    }

    .album-navigation {
        flex-direction: column;
    }

    .nav-prev, .nav-next {
        text-align: center;
    }
}

/* Deluxe Edition Section */
.deluxe-edition {
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.deluxe-edition h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.deluxe-content {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.deluxe-info {
    padding: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: linear-gradient(to right, rgba(120, 81, 169, 0.05), rgba(120, 81, 169, 0.1));
}

.deluxe-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.deluxe-info .streaming-links {
    justify-content: flex-start;
}

.bonus-tracks {
    padding: 2rem;
}

.bonus-tracks h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.bonus-tracks .tracks {
    background: transparent;
    box-shadow: none;
}

.bonus-tracks .track:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .deluxe-info .streaming-links {
        justify-content: center;
    }
    
    .deluxe-info, .bonus-tracks {
        padding: 1.5rem;
    }
}

/* EPK Section */
.epk-section {
    max-width: 1000px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.epk-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.epk-content {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.video-container {
    position: relative;
    width: 100%;
    background: #000;
}

.video-container iframe {
    display: block;
    margin: 0 auto;
}

.epk-description {
    padding: 2rem;
    background: linear-gradient(to right, rgba(120, 81, 169, 0.05), rgba(120, 81, 169, 0.1));
}

.epk-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .video-container iframe {
        height: 300px;
    }
    
    .epk-description {
        padding: 1.5rem;
    }
}

/* Book Page Styles */
.book-hero {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.book-hero-content {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.book-cover {
    width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.book-cover:hover {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .book-cover {
        width: 250px;
        margin: 0 auto;
    }
    
    .book-cover:hover {
        transform: translateY(-4px) rotate(-1deg);
    }
}

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

.book-details {
    margin-bottom: 2rem;
}

.book-authors {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.book-release {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 600;
}

.purchase-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-purchase {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-purchase:hover {
    background: var(--accent-color);
    color: white;
}

.btn-purchase img {
    width: 24px;
    height: 24px;
}

.book-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.book-details-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.book-details-list strong {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.reviews-section {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.reviews-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}

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

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.book-excerpt h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    padding: 1rem 0;
    position: relative;
}

blockquote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 6rem;
    font-family: 'Cormorant Garamond', serif;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
}

blockquote cite {
    display: block;
    font-family: 'Lato', sans-serif;
    font-style: normal;
    font-size: 1rem;
    color: var(--accent-color);
    margin-top: 1rem;
}

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

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    blockquote {
        font-size: 1.1rem;
    }
    
    .book-excerpt {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
}

@media (max-width: 768px) {
    .book-hero-content {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }

    .book-cover {
        width: 250px;
    }

    .purchase-links {
        justify-content: center;
    }

    .book-authors {
        font-size: 1.5rem;
    }
}

.btn-purchase.btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
    font-size: 1.2rem;
    padding: 1rem 2rem;
}

.btn-purchase.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.book-photo {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.memoir-image {
    margin: 0;
    padding: 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

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

.memoir-image:hover img {
    transform: scale(1.02);
}

.memoir-image figcaption {
    padding: 1.5rem;
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-style: italic;
    color: var(--text-color);
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .book-photo {
        margin: 3rem auto;
        padding: 0 1rem;
    }
    
    .memoir-image figcaption {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    position: relative;
    padding-right: 1.5rem !important;
}

.dropdown-trigger::after {
    content: '▾';
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-trigger::after {
    transform: translateY(-50%) rotate(180deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 250px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
    font-size: 0.95rem;
    white-space: nowrap;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Mobile Navigation Adjustments */
@media (max-width: 768px) {
    .dropdown-content {
        position: static;
        box-shadow: none;
        border-radius: 0;
        background: rgba(0, 0, 0, 0.05);
        min-width: 100%;
        margin: 0.5rem 0;
    }

    .dropdown-content a {
        padding: 1rem 2rem;
    }
}

.beta-badge {
    background-color: #7851a9;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-family: 'Lato', sans-serif;
    display: inline-block;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
}

#content {
    display: none;
}

/* Login Page Styles */
.login-page {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
}

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    text-align: center;
}

.login-box {
    background: transparent;
    padding: 40px 20px;
    color: #ffffff;
}

.login-header h1 {
    font-size: 2.8rem;
    margin: 0;
    font-weight: 400;
    letter-spacing: 2px;
}

.login-subtitle {
    font-size: 1.2rem;
    margin: 10px 0 40px;
    letter-spacing: 1px;
    opacity: 0.9;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    color: #ffffff;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    transition: all 0.3s ease;
    text-align: center;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.8);
}

button {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 12px 40px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.beta-notice {
    font-size: 0.9rem;
    opacity: 0.6;
    letter-spacing: 1px;
    margin: 0;
    text-transform: uppercase;
}

body.login-page {
    background-color: #000000 !important;
    color: #ffffff;
    font-family: 'Cormorant Garamond', serif;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    text-align: center;
}

.login-box {
    background: transparent;
    padding: 40px 20px;
    color: #ffffff;
}

.login-header h1 {
    font-size: 2.8rem;
    margin: 0;
    font-weight: 400;
    letter-spacing: 2px;
    color: #ffffff;
}

.login-subtitle {
    font-size: 1.2rem;
    margin: 10px 0 40px;
    letter-spacing: 1px;
    opacity: 0.9;
    color: #ffffff;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    color: #ffffff;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.8);
}

.login-box button {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 12px 40px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    width: 100%;
    box-sizing: border-box;
}

.login-box button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.beta-notice {
    font-size: 0.9rem;
    opacity: 0.6;
    letter-spacing: 1px;
    margin: 0;
    text-transform: uppercase;
    color: #ffffff;
}

/* Add responsive header styles */
h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.3;
}

h3 {
    font-size: 2rem;
    line-height: 1.3;
}

.section-header h2 {
    font-size: 2.5rem;
    line-height: 1.3;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.7rem;
    }

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

    .legacy-card h3 {
        font-size: 1.5rem;
    }

    .book-authors {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.5rem;
    }

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

    .legacy-card h3 {
        font-size: 1.3rem;
    }

    .book-authors {
        font-size: 1.3rem;
    }
}
