/* HCJK Collection Poetry Website Styles */

:root {
    --primary-blue: #1a365d;
    --secondary-blue: #2c5282;
    --accent-gold: #d69e2e;
    --light-cream: #faf7f2;
    --text-dark: #2d3748;
    --text-light: #718096;
    --white: #ffffff;
    --gradient-dark: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    --gradient-light: linear-gradient(135deg, #faf7f2 0%, #ffffff 100%);
}

/* Base Typography Improvements */
body {
    font-family: 'Georgia', serif;
    line-height: 1.8;
    color: var(--text-dark);
}

.poetry-content h1, 
.poetry-content h2, 
.poetry-content h3 {
    font-family: 'Georgia', serif;
    font-weight: normal;
    letter-spacing: 0.05em;
}

/* Hero Section */
.poetry-hero {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 120px 20px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.poetry-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.5;
}

.hero-title {
    font-size: 3rem;
    font-weight: normal;
    margin-bottom: 0.5rem;
    position: relative;
}

.hero-subtitle {
    font-size: 2.2rem;
    color: var(--accent-gold);
    font-weight: normal;
    margin-bottom: 2rem;
    position: relative;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    opacity: 0.95;
    position: relative;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 3px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Georgia', serif;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--white);
}

.btn-primary:hover {
    background: #b7791f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 158, 46, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

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

/* Featured Poem Section */
.featured-poem {
    padding: 80px 20px;
    background: var(--light-cream);
}

.poem-card.featured {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px 50px;
    border-radius: 3px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.poem-title {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    text-align: center;
    font-style: italic;
}

.poem-text {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.poem-text p {
    margin-bottom: 0.5rem;
}

.poem-author {
    text-align: center;
    font-style: italic;
    color: var(--text-light);
    font-size: 1rem;
}

/* Book Preview Section */
.book-preview {
    padding: 80px 20px;
    background: var(--white);
}

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

.section-title {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: normal;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: italic;
}

.book-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.book-description h3,
.book-themes h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-weight: normal;
}

.book-description p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.emphasized {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--primary-blue);
    text-align: center;
    display: block;
    margin: 2rem 0;
}

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

.themes-list li {
    padding: 1rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-icon {
    font-size: 1.5rem;
}

/* Author Section */
.author-section {
    padding: 80px 20px;
    background: var(--light-cream);
}

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

.author-text h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-weight: normal;
}

.author-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.author-text blockquote {
    font-style: italic;
    color: var(--primary-blue);
    font-size: 1.2rem;
    border-left: 3px solid var(--accent-gold);
    padding-left: 1.5rem;
    margin: 2rem 0;
}

.author-image {
    text-align: center;
}

.author-photo {
    width: 100%;
    max-width: 400px;
    border-radius: 3px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Poetry Categories */
.poetry-categories {
    padding: 80px 20px;
    background: var(--white);
}

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

.category-card {
    background: var(--light-cream);
    padding: 2.5rem;
    border-radius: 3px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-gold);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.category-card h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: normal;
}

.category-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Resources Section */
.resources-section {
    padding: 80px 20px;
    background: var(--gradient-dark);
    color: var(--white);
}

.resources-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.resources-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: normal;
}

.crisis-hotline {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 3px;
    margin: 2rem 0;
    border-left: 4px solid var(--accent-gold);
}

.crisis-hotline h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.crisis-hotline p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.message-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 3px;
    text-align: center;
}

.message-box .emphasized {
    font-size: 1.3rem;
    line-height: 1.8;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 20px;
    background: var(--light-cream);
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: normal;
}

.newsletter-content p {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 3px;
    font-size: 1rem;
    font-family: 'Georgia', serif;
}

.newsletter-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Crisis Banner */
.crisis-banner {
    background: #c53030;
    color: var(--white);
    padding: 2rem 20px;
    text-align: center;
}

.crisis-message h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.crisis-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--white);
    margin: 1rem 0;
}

/* Resources Grid */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem 0;
}

.resource-card {
    background: var(--light-cream);
    padding: 2rem;
    border-radius: 3px;
    border-left: 4px solid var(--accent-gold);
}

.resource-card.urgent {
    border-left-color: #c53030;
    background: #fff5f5;
}

.resource-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.resource-card h3 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: normal;
}

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

.resource-card li {
    padding: 0.5rem 0;
    line-height: 1.6;
}

.resource-card strong {
    color: var(--text-dark);
}

.important-message {
    background: var(--light-cream);
    padding: 3rem;
    border-radius: 3px;
    text-align: center;
    margin-top: 3rem;
}

.important-message h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.important-message p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Book Page Styles */
.book-hero {
    padding: 100px 20px;
    background: var(--light-cream);
}

.book-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.book-cover-placeholder {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 3px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    aspect-ratio: 2/3;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.book-cover-placeholder h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: normal;
}

.author-name {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-top: 1rem;
}

.book-title {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-weight: normal;
}

.book-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-style: italic;
}

.book-author {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.purchase-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Poetry Pages */
.poetry-header {
    padding: 80px 20px;
    background: var(--gradient-dark);
    color: var(--white);
    text-align: center;
}

.poetry-header h1 {
    font-size: 3rem;
    font-weight: normal;
    margin-bottom: 1rem;
}

.featured-poem-full {
    padding: 80px 20px;
    background: var(--light-cream);
}

.poem-display {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px 50px;
    border-radius: 3px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.poems-list {
    max-width: 800px;
    margin: 0 auto;
}

.poem-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 3px;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--accent-gold);
}

.poem-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: normal;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .book-preview-content,
    .author-content,
    .resources-content,
    .book-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .author-image {
        order: -1;
    }
    
    .poem-card.featured,
    .poem-display {
        padding: 40px 30px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
}