/**
 * Bhagavad Gita Page Styles
 * Elegant, spiritual design for the Shloka of the Day card
 */

.gita-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 10px;
}

.gita-header {
    text-align: center;
    margin-bottom: 30px;
}

.gita-title {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 6px;
}

.gita-subtitle {
    font-size: 16px;
    color: #92400e;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Shloka Card */
.shloka-card {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 50%, #fde68a 100%);
    border-radius: 18px;
    padding: 32px 28px;
    box-shadow: 0 4px 24px rgba(146, 64, 14, 0.1);
    border: 1px solid rgba(217, 119, 6, 0.15);
    position: relative;
    overflow: hidden;
}

.shloka-card::before {
    content: '🕉️';
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 120px;
    opacity: 0.05;
    pointer-events: none;
}

.shloka-reference {
    text-align: center;
    font-size: 13px;
    color: #92400e;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.shloka-sanskrit {
    text-align: center;
    font-size: 22px;
    line-height: 1.8;
    color: #78350f;
    font-weight: 600;
    margin-bottom: 16px;
    font-family: 'Noto Sans Devanagari', 'Mangal', serif;
}

.shloka-transliteration {
    text-align: center;
    font-size: 14px;
    line-height: 1.7;
    color: #a16207;
    font-style: italic;
    margin-bottom: 20px;
}

.shloka-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, transparent, #d97706, transparent);
    margin: 0 auto 20px;
}

.shloka-meaning-label {
    text-align: center;
    font-size: 12px;
    color: #92400e;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.shloka-meaning {
    text-align: center;
    font-size: 16px;
    line-height: 1.75;
    color: #451a03;
}

/* Footer Note */
.gita-footer-note {
    text-align: center;
    margin-top: 24px;
    padding: 0 20px;
}

.gita-footer-note p {
    font-size: 13px;
    color: #9ca3af;
    font-style: italic;
}

/* Responsive */
@media (max-width: 600px) {
    .gita-title {
        font-size: 22px;
    }

    .shloka-card {
        padding: 24px 18px;
        border-radius: 14px;
    }

    .shloka-sanskrit {
        font-size: 18px;
    }

    .shloka-meaning {
        font-size: 15px;
    }
}