/* Poem Page Styling */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

.poem-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 20px;
    font-family: 'Cormorant Garamond', serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff9f0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.poem {
    padding: 30px;
    background-color: white;
    border-radius: 5px;
}

.poem-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.poem-header h1 {
    font-size: 2.4rem;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.poem-meta {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
}

.poem-content {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.poem-content p {
    margin-bottom: 25px;
}

.poem-quote {
    margin: 30px 0;
    padding: 20px 30px;
    border-left: 4px solid #9b59b6;
    background-color: #f9f0ff;
    font-style: italic;
    font-size: 1.15rem;
}

.poem-quote p {
    margin: 0;
}

.highlight-box {
    background-color: #f0f8ff;
    padding: 20px;
    margin: 25px 0;
    border-radius: 5px;
    border-left: 4px solid #3498db;
}

.note-box {
    background-color: #fffaed;
    padding: 20px;
    margin: 25px 0;
    border-radius: 5px;
    border: 1px dashed #e0c9a6;
}

.poem-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

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

.nav-link {
    display: inline-flex;
    align-items: center;
    color: #7b68ee;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #5548a8;
    text-decoration: underline;
}

.prev-link i {
    margin-right: 8px;
}

.next-link i {
    margin-left: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .poem-container {
        margin: 30px 15px;
        padding: 15px;
    }
    
    .poem {
        padding: 20px;
    }
    
    .poem-header h1 {
        font-size: 2rem;
    }
    
    .poem-content {
        font-size: 1.1rem;
    }
}

/* Print styles */
@media print {
    .navbar, .footer {
        display: none;
    }
    
    .poem-container {
        margin: 0;
        padding: 0;
        box-shadow: none;
        background: white;
    }
    
    .poem {
        padding: 0;
    }
    
    .poem-navigation {
        display: none;
    }
} 