:root {
    --saffron: oklch(70% 0.2 45); /* Vivid 2026 Saffron */
    --gold: oklch(80% 0.15 80);
    --bg-creme: #FCF8F1;
    --glass: rgba(255, 255, 255, 0.4);
    --ram-accent: #ff9933;
    --hanuman-accent: #ff4500;
    --shiv-accent: #4682B4; /* Steel Blue for Lord Shiva */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --blur: blur(20px);
}

body {
    background-color: var(--bg-creme);
    margin: 0;
    font-family: 'Inter', system-ui, sans-serif;
    position: relative;
    isolation: isolate; /* Create a new stacking context for the watermark */
}

/* Watermark Background */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('images/hanuman-silhouette-watermark.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50vmax;
    opacity: 0.04;
    z-index: -1; /* Places it behind all content within the body's stacking context */
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 100px 20px 60px 20px;
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(255, 107, 53, 0.5)),
        url('images/deities/ram-hero.webp') center/cover no-repeat;
    color: white;
    margin-bottom: 40px;
}

.hero-section p {
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0,0,0,0.9);
}

.kinetic-text {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    margin: 0;
    letter-spacing: -0.05em;
    text-shadow: 0 4px 15px rgba(0,0,0,0.8), 0 2px 5px rgba(0,0,0,0.5);
}

/* Logo and Custom Icons */
.hero-logo {
    height: 80px;
    width: auto;
    margin-bottom: 15px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.nav-icon {
    width: 20px;
    height: 20px;
    vertical-align: sub;
    margin-right: 6px;
}

/* Bento Navbar */
.bento-nav {
    position: fixed;
    top: 15px;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    margin: 0 auto;
    width: 90%;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.bento-nav a {
    padding: 10px 22px;
    text-decoration: none;
    color: oklch(30% 0.1 45); /* Made text darker for better contrast */
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    text-shadow: none; /* Removed white shadow for better sharpness */
}

.bento-nav a:hover {
    background: rgba(255, 153, 51, 0.1);
    transform: translateY(-2px);
}

.bento-nav a.active {
    background: var(--saffron);
    color: white;
    box-shadow: 0 5px 15px oklch(from var(--saffron) l c h / 0.4);
    pointer-events: none;
}

/* Language Toggle Button */
.lang-toggle {
    padding: 8px 16px;
    background: rgba(255, 153, 51, 0.15);
    border: 1px solid rgba(255, 153, 51, 0.3);
    border-radius: 50px;
    color: var(--saffron);
    font-weight: bold;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-toggle:hover {
    background: var(--saffron);
    color: white;
    transform: translateY(-2px);
}

/* Language Toggle Utility Classes */
.hi-text { display: none !important; }
body.lang-hi .en-text { display: none !important; }
body.lang-hi .hi-text { display: inline !important; }

/* Bento Grid Layout using Modern CSS Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

.tile {
    background: var(--glass);
    backdrop-filter: blur(15px); /* Glassmorphism */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px; /* Exaggerated round corners */
    padding: 30px;
    transition: transform 0.3s ease;
    position: relative; /* For positioning child elements like toggles */
    text-align: center;
}

.tile:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.tile-large {
    grid-column: span 2;
}

.tile-medium, .tile-small {
    grid-column: span 1;
}

.story-tile {
    background: linear-gradient(45deg, var(--saffron), var(--gold));
    color: white;
}

.blog-tile {
    background: linear-gradient(45deg, var(--ram-accent), var(--saffron));
    color: white;
}

.blog-tile:hover {
    box-shadow: 0 20px 40px rgba(255, 153, 51, 0.2);
}

/* --- Jaap Tile Styles --- */
.jaap-header h2 {
    color: oklch(55% 0.2 45); /* Darker Saffron */
    margin: 10px 0 5px;
}

#chant-text {
    font-style: italic;
    color: var(--saffron);
    font-weight: bold;
    border: 1px solid rgba(255, 153, 51, 0.3);
    background-color: rgba(255, 153, 51, 0.1);
    border-radius: 10px;
    text-align: center;
    width: 90%;
    font-size: 1.1rem;
    font-family: inherit;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.jaap-tile #chant-text:focus {
    outline: none;
    background-color: rgba(255, 153, 51, 0.15);
    border-color: var(--saffron);
}
.counter-display {
    font-size: 4rem;
    font-weight: bold;
    color: var(--saffron);
    margin: 20px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.05);
}

.stats {
    margin-bottom: 20px;
    color: #666;
    font-size: 14px;
}

.tap-area {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(145deg, var(--saffron), var(--gold));
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 8px 15px oklch(from var(--saffron) l c h / 0.3);
    transition: transform 0.1s;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.tap-area:active { transform: scale(0.95); }

.controls { display: flex; justify-content: space-around; }
.btn { padding: 8px 20px; border-radius: 5px; border: none; cursor: pointer; font-weight: bold; }
.reset { background: #ffcccc; color: #cc0000; }
.save { background: #ccffcc; color: #006600; }

.tap-area .ripple, .mantra-btn .ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    background-color: rgba(255, 255, 255, 0.4);
    pointer-events: none; /* Prevents blocking rapid repeated taps */
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Featured Audio Tile */
.featured-audio-tile {
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.1), rgba(255, 107, 53, 0.1));
    border: 2px solid var(--saffron);
}

.featured-audio-tile h2 {
    color: var(--saffron);
    margin-top: 0;
}

.featured-audio-tile p {
    color: #666;
    margin: 10px 0 15px 0;
}

.view-all-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 24px;
    background: var(--saffron);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: bold;
    transition: 0.3s ease;
}

.view-all-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(255, 153, 51, 0.3);
}

.page-container {
    padding: 5vw;
    animation: fadeIn 0.8s ease-in;
}

/* 2026 Split Hero Layout */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    min-height: 70vh;
}

/* Glassmorphism Cards */
.niti-card, .tile {
    background: var(--glass-bg);
    backdrop-filter: var(--blur);
    border-radius: 32px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.niti-card:hover {
    transform: scale(1.03);
    border-color: var(--ram-accent);
}

/* Dynamic Theming */
.ram-theme h1 { color: var(--ram-accent); }
.hanuman-theme h1 { color: var(--hanuman-accent); }
.shiv-theme h1 { color: var(--shiv-accent); }

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hanuman Page Styles */
.hanuman-theme .hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    min-height: 60vh;
    padding: 40px 0;
}

.hanuman-theme .hero-split h1 {
    font-size: 3.5rem;
    margin: 0 0 10px 0;
    color: var(--hanuman-accent);
}

.hanuman-theme .subtitle {
    font-size: 1.5rem;
    color: #666;
    margin: 10px 0;
}

.hanuman-theme .description {
    font-size: 1.1rem;
    color: #777;
    line-height: 1.6;
    margin-top: 15px;
}

.image-mask {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(255, 69, 0, 0.2);
}

.image-mask img {
    width: 100%;
    height: auto;
    display: block;
}

/* Stats Widget */
.stats-widget {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
}

.stat-card {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.1), rgba(255, 153, 51, 0.1));
    border: 2px solid var(--hanuman-accent);
    border-radius: 20px;
    padding: 30px;
    position: relative; /* For positioning child elements like toggles */
    text-align: center;
    transition: 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 69, 0, 0.15);
}

.stat-card h3 {
    margin: 0 0 10px 0;
    color: var(--hanuman-accent);
}

.big-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--hanuman-accent);
    margin: 0;
}

/* Chalisa Grid */
.chalisa-grid {
    margin: 50px 0;
}

.chalisa-grid h2 {
    text-align: center;
    color: var(--hanuman-accent);
    margin-bottom: 30px;
    font-size: 2rem;
}

.verse-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.verse-tile {
    background: var(--glass);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 69, 0, 0.2);
    border-radius: 20px;
    padding: 25px;
    transition: 0.3s ease;
}

.verse-tile:hover {
    transform: translateY(-8px);
    border-color: var(--hanuman-accent);
    box-shadow: 0 15px 30px rgba(255, 69, 0, 0.1);
}

.verse-tile .sanskrit {
    font-size: 1.3rem;
    color: var(--hanuman-accent);
    font-weight: bold;
    line-height: 1.6;
    margin: 0 0 10px 0;
}

.verse-tile .translation {
    font-size: 1rem;
    color: #333;
    font-style: italic;
    margin: 10px 0;
}

.verse-tile .meaning {
    font-size: 0.9rem;
    color: #777;
    margin-top: 10px;
    border-left: 3px solid var(--hanuman-accent);
    padding-left: 10px;
}

.chalisa-controls {
    text-align: center;
    margin-bottom: 25px;
}

.lang-btn {
    padding: 8px 20px;
    border: 2px solid var(--hanuman-accent);
    background: transparent;
    color: var(--hanuman-accent);
    border-radius: 20px;
    cursor: pointer;
    margin: 0 5px;
    font-weight: bold;
    transition: 0.3s ease;
}

.lang-btn.active, .lang-btn:hover {
    background: var(--hanuman-accent);
    color: white;
}

.read-more-btn {
    display: block;
    margin: 20px auto;
    padding: 15px 40px;
    background: var(--hanuman-accent);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}

.read-more-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 69, 0, 0.3);
}

/* Benefits Section */
.benefits-section {
    margin: 60px 0;
}

.benefits-section h2 {
    text-align: center;
    color: var(--hanuman-accent);
    margin-bottom: 40px;
    font-size: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.benefit-card {
    background: var(--glass);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 69, 0, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--hanuman-accent);
    box-shadow: 0 20px 40px rgba(255, 69, 0, 0.15);
}

.benefit-card .icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.benefit-card h3 {
    color: var(--hanuman-accent);
    margin: 15px 0;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Mantras Section */
.mantras-section {
    margin: 60px 0;
}

.mantras-section h2 {
    text-align: center;
    color: var(--hanuman-accent);
    margin-bottom: 40px;
    font-size: 2rem;
}

.mantra-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.mantra-card {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.05), rgba(255, 153, 51, 0.05));
    border: 2px solid var(--hanuman-accent);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: 0.3s ease;
}

.mantra-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 69, 0, 0.2);
}

.mantra-card h3 {
    color: var(--hanuman-accent);
    margin: 0 0 10px 0;
}

.mantra-text {
    font-size: 1.5rem;
    color: var(--hanuman-accent);
    font-weight: bold;
    margin: 15px 0;
    font-family: Georgia, serif;
}

.mantra-btn {
    background: var(--hanuman-accent);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.2s ease;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
}

.mantra-btn:hover {
    transform: scale(1.1);
}

.mantra-btn:active {
    transform: scale(0.95);
}

/* Stories Section */
.stories-section {
    margin: 60px 0;
}

.stories-section h2 {
    text-align: center;
    color: var(--hanuman-accent);
    margin-bottom: 40px;
    font-size: 2rem;
}

.story-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.story-cards .niti-card {
    background: var(--glass);
    border-color: var(--hanuman-accent);
    border: 1px solid rgba(255, 69, 0, 0.3);
}

.story-cards .niti-card h3 {
    color: var(--hanuman-accent);
}

.story-cards .niti-card a {
    color: var(--hanuman-accent);
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
}

.story-cards .niti-card a:hover {
    text-decoration: underline;
}

/* Practices Section */
.practices-section {
    margin: 60px 0;
}

.practices-section h2 {
    text-align: center;
    color: var(--hanuman-accent);
    margin-bottom: 40px;
    font-size: 2rem;
}

.practice-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.practice-item {
    background: var(--glass);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 69, 0, 0.2);
    border-radius: 16px;
    padding: 25px;
    transition: 0.3s ease;
}

.practice-item:hover {
    transform: translateY(-5px);
    border-color: var(--hanuman-accent);
}

.practice-item h4 {
    color: var(--hanuman-accent);
    margin: 0 0 10px 0;
    font-size: 1.1rem;
}

.practice-item p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--hanuman-accent), #ff6b35);
    color: white;
    padding: 50px;
    border-radius: 24px;
    text-align: center;
    margin: 60px 0;
}

.cta-section h2 {
    margin: 0 0 15px 0;
    font-size: 2rem;
}

.cta-section p {
    margin: 0 0 25px 0;
    font-size: 1.1rem;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--hanuman-accent);
    padding: 15px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
    font-size: 1.1rem;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .bento-nav {
        padding: 8px;
        gap: 5px;
        margin-top: 0; 
    }
    .bento-nav a {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .hanuman-theme .hero-split {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hanuman-theme .hero-split h1 {
        font-size: 2.5rem;
    }

    .stats-widget {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 30px;
    }

    .verse-tiles, .benefits-grid, .mantra-tiles, .story-cards, .practice-container {
        grid-template-columns: 1fr;
    }
}

/* Loading Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 153, 51, 0.3);
    border-radius: 50%;
    border-top-color: var(--saffron);
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Sound Toggle Button */
.sound-toggle-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.1);
    color: #555;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2; /* Ensure it's above other content */
}

.sound-toggle-btn:hover {
    background: rgba(0,0,0,0.1);
}

.sound-toggle-btn.off {
    background: rgba(204, 0, 0, 0.1);
    color: #cc0000;
}

/* Goal Met Badge */
.goal-met-badge {
    background-color: #4CAF50; /* Green background */
    color: white;
    padding: 3px 6px;
    border-radius: 5px;
}

/* Settings Toggle Button */
.settings-toggle-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 153, 51, 0.15);
    border: 1px solid rgba(255, 153, 51, 0.3);
    border-radius: 50%;
    color: var(--saffron);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.settings-toggle-btn:hover {
    background: var(--saffron);
    color: white;
    transform: rotate(45deg);
}

/* Settings Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--bg-creme);
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 10px;
}

.modal-header h3 {
    margin: 0;
    color: var(--saffron);
    font-size: 1.5rem;
}

.close-btn {
    background: transparent;
    border: none;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color: #555;
    transition: color 0.2s;
}

.close-btn:hover {
    color: var(--saffron);
}

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-weight: bold;
    color: #333;
    font-size: 1.1rem;
}

.setting-item:last-child {
    border-bottom: none;
}

/* Switch Styles */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: var(--saffron);
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--saffron);
}

input:checked + .slider:before {
  -webkit-transform: translateX(22px);
  -ms-transform: translateX(22px);
  transform: translateX(22px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* --- Site Footer --- */
.site-footer {
    background: #f1ede9; /* A slightly darker creme */
    padding: 40px 20px;
    margin-top: 60px;
    border-top: 2px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    color: #555;
    font-family: 'Inter', system-ui, sans-serif;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.social-links {
    margin-bottom: 25px;
}

.social-links a {
    display: inline-flex; /* Use flex to center icon */
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin: 0 10px;
    color: white;
    font-size: 1.4rem;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.social-links .facebook { background-color: #1877F2; }
.social-links .youtube { background-color: #FF0000; }
.social-links .whatsapp { background-color: #25D366; }

.footer-info p {
    margin: 8px 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-credit {
    font-weight: bold;
    color: #333;
}

.footer-credit a {
    color: var(--saffron);
    text-decoration: none;
}

.footer-credit a:hover {
    text-decoration: underline;
}

/* --- About Page --- */
.about-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.about-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-header h1 {
    color: var(--saffron);
    font-size: 2.5rem;
}

.about-section {
    background: var(--glass);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 153, 51, 0.2);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    transition: 0.3s ease;
}

.about-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 153, 51, 0.1);
}

.about-section h2 {
    color: var(--saffron);
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(255, 153, 51, 0.2);
    padding-bottom: 10px;
}

.about-section p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-section a {
    color: var(--hanuman-accent);
    font-weight: bold;
    text-decoration: none;
}

.about-section a:hover {
    text-decoration: underline;
}
