/* Konzeption Styles */

/* Poem Card */
.poem-card {
    background: #e6eed6; /* Soft Pastel Green */
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 48px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.4); /* Subtle border */
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.poem-text {
    font-family: 'Fredoka', sans-serif; /* Friendly font */
    font-size: 1.25rem;
    line-height: 1.5; /* Reduced line height */
    color: #3e5f12; /* Dark Green for contrast */
    font-style: italic;
    white-space: pre-line; /* Respect line breaks */
}

/* Accordion Customization - Glassy & Warm */
.kita-accordion .card {
    border: none;
    background: transparent;
    margin-bottom: 16px;
}

.kita-accordion .card-header {
    background: rgba(255, 255, 255, 0.1); /* Glassy Background */
    border-radius: 12px !important;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, background 0.2s ease;
}

.kita-accordion .card-header:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2); /* Slightly lighter on hover */
}

.kita-accordion .btn-link {
    color: #f1f8e9; /* Pastel Green Text */
    font-family: 'Fredoka', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    width: 100%;
    text-align: left;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kita-accordion .btn-link:hover {
    text-decoration: none;
    color: #ffffff; /* White on hover */
}

.kita-accordion .btn-link i {
    transition: transform 0.3s ease;
}

/* Fix: Only rotate the chevron */
.kita-accordion .btn-link[aria-expanded="true"] .fa-chevron-down {
    transform: rotate(180deg);
}

.kita-accordion .card-body {
    background: rgba(0, 0, 0, 0.2); /* Dark Glass Body */
    border-radius: 0 0 12px 12px;
    margin-top: -10px; /* Overlap slightly */
    padding: 24px;
    color: #ffffff; /* White text */
    font-size: 1.1rem;
    line-height: 1.6;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
}

/* Timeline Styles */
.timeline-container {
    position: relative;
    padding: 20px 0;
}

.timeline-item {
    position: relative;
    padding-left: 40px;
    margin-bottom: 32px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Vertical Line */
.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 11px;
    width: 2px;
    background: rgba(255, 255, 255, 0.3); /* Subtle Line */
}

/* Dots */
.timeline-marker {
    position: absolute;
    left: 0;
    top: 6px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ed8936; /* Orange Pop */
    border: 4px solid rgba(255, 255, 255, 0.2); /* Glass Border */
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 1;
}

.timeline-time {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    color: #ed8936; /* Orange Pop */
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.1); /* Glassy Content */
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    display: inline-block;
    color: #ffffff; /* White Text */
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Download Card */
.download-card {
    padding: 24px;
    text-align: center;
    color: white;
    margin-top: 48px;
}

.download-btn {
    display: inline-block;
    margin-top: 16px;
    padding: 12px 24px;
    background: #dd6b20; /* Darker orange for button background */
    color: white;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s ease;
}

.download-btn:hover {
    background: #c05621; /* Even darker on hover */
    color: white;
    text-decoration: none;
}
