/* Custom styles to apply the chosen fonts and background */
body {
    font-family: 'Merriweather', serif;
    background-color: #fdfaf6; /* A soft, off-white background */
}

h1, h2, h3, h4, h5, h6, nav a, .poem-title-button {
    font-family: 'Lato', sans-serif;
}

/* Accordion Styles for poems.html */
.poem-accordion .poem-title-button {
    background-color: #ffffff;
    color: #374151;
    cursor: pointer;
    padding: 1rem 1.5rem;
    width: 100%;
    text-align: left;
    border: 1px solid #e5e7eb;
    outline: none;
    transition: background-color 0.3s ease;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.25rem; /* 20px */
    font-weight: 700;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.poem-accordion .poem-title-button:hover,
.poem-accordion .poem-title-button.active {
    background-color: #f9fafb;
    border-color: #d1d5db;
}

.poem-accordion .arrow {
    transform: rotate(0deg);
    transition: transform 0.4s ease;
}

.poem-accordion .poem-title-button.active .arrow {
    transform: rotate(180deg);
}


.poem-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    background-color: #ffffff;
    border-radius: 0 0 8px 8px;
    border: 1px solid #e5e7eb;
    border-top: none;
}

/* No custom modal styles needed here anymore, Tailwind handles it. */

