:root {
    --primary-color: #1a5544;
    --secondary-color: #2d8a6a;
    --accent-color: #4ac99a;
    --light-green: #7de3ba;
    --dark-bg: #0d2e25;
    --text-light: #ffffff;
    --text-dark: #333333;
    --shadow: rgba(0, 0, 0, 0.2);
    --gradient-1: linear-gradient(135deg, #1a5544 0%, #2d8a6a 100%);
    --gradient-2: linear-gradient(135deg, #2d8a6a 0%, #4ac99a 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: var(--gradient-1);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.site-title {
    color: var(--text-light);
    font-size: 1.8rem;
    font-weight: 700;
}

.main-nav {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
    background: var(--gradient-2);
    padding: 4rem 0;
    text-align: center;
    color: var(--text-light);
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px var(--shadow);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* Radio Player */
.radio-player {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px var(--shadow);
}

.player-visual {
    margin-bottom: 2rem;
}

.equalizer {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
}

.equalizer .bar {
    width: 12px;
    background: var(--gradient-2);
    border-radius: 5px;
    height: 20px;
    transition: height 0.3s ease;
}

.equalizer.playing .bar {
    animation: equalize 1s ease-in-out infinite;
}

.equalizer.playing .bar:nth-child(1) {
    animation-delay: 0s;
}

.equalizer.playing .bar:nth-child(2) {
    animation-delay: 0.2s;
}

.equalizer.playing .bar:nth-child(3) {
    animation-delay: 0.4s;
}

.equalizer.playing .bar:nth-child(4) {
    animation-delay: 0.6s;
}

.equalizer.playing .bar:nth-child(5) {
    animation-delay: 0.8s;
}

@keyframes equalize {
    0%, 100% {
        height: 20px;
    }
    50% {
        height: 70px;
    }
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-1);
    border: none;
    color: var(--text-light);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow);
    flex-shrink: 0;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button:active {
    transform: scale(0.95);
}

.player-info {
    flex: 1;
}

.player-status {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.volume-control i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.volume-slider {
    flex: 1;
    height: 6px;
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
    background: #ddd;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--secondary-color);
    cursor: pointer;
}

.volume-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--secondary-color);
    cursor: pointer;
    border: none;
}

/* Quick Links */
.quick-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.link-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px var(--shadow);
}

.link-button.podcast {
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
}

.link-button.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.link-button.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #229ED9 100%);
}

.link-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px var(--shadow);
}

/* Schedule Box */
.schedule-box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 2rem;
    max-width: 500px;
    margin: 0 auto;
    color: var(--text-dark);
}

.schedule-box h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.schedule-box h3 i {
    margin-right: 0.5rem;
}

.schedule-times {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.time-badge {
    background: var(--gradient-1);
    color: var(--text-light);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Section Styles */
.section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* History Section */
.history-section {
    background: #ffffff;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.text-content p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.highlight-box {
    background: var(--gradient-2);
    color: var(--text-light);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.founder-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
}

.image-caption {
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
    color: var(--secondary-color);
    font-weight: 600;
}

/* About Section */
.about-section {
    background: #f9f9f9;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.info-box {
    background: var(--gradient-2);
    color: var(--text-light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    max-width: 700px;
    margin: 2rem auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-box i {
    font-size: 2.5rem;
}

/* Podcast Section */
.podcast-section {
    background: #ffffff;
    padding: 4rem 0 6rem;
}

.section-subtitle {
    text-align: center;
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

/* Podcast Player Container */
.podcast-player-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    animation: slideUp 0.3s ease-out;
    box-shadow: 0 -5px 30px var(--shadow);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.podcast-player {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    color: var(--text-light);
}

.close-player {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.close-player:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.podcast-player-info {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: center;
}

.podcast-cover {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 5px 15px var(--shadow);
}

.podcast-details h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.podcast-details p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.podcast-audio-controls {
    margin-bottom: 1.5rem;
}

.podcast-audio-controls audio {
    width: 100%;
    height: 50px;
    border-radius: 10px;
}

.podcast-description {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    max-height: 150px;
    overflow-y: auto;
}

.podcast-description p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Podcast Filters */
.podcast-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 2rem;
    border: 2px solid var(--secondary-color);
    background: transparent;
    color: var(--secondary-color);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-1);
    color: var(--text-light);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow);
}

/* Podcast Grid */
.podcast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.podcast-card {
    background: #f9f9f9;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.podcast-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
    border-color: var(--accent-color);
}

.podcast-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: var(--gradient-2);
}

.podcast-card-content {
    padding: 1.5rem;
}

.podcast-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.podcast-card-date {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.podcast-card-description {
    color: var(--text-dark);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
}

.podcast-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.podcast-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.play-podcast-btn {
    background: var(--gradient-1);
    color: var(--text-light);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.play-podcast-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px var(--shadow);
}

/* Podcast Loading & Error States */
.podcast-loading,
.podcast-error {
    text-align: center;
    padding: 4rem 2rem;
}

.podcast-loading i,
.podcast-error i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.podcast-loading p,
.podcast-error p {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.podcast-error {
    color: #d32f2f;
}

.podcast-error i {
    color: #d32f2f;
}

/* Podcast Pagination */
.podcast-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pagination-btn {
    padding: 0.6rem 1.2rem;
    border: 2px solid var(--secondary-color);
    background: white;
    color: var(--secondary-color);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.pagination-btn:hover,
.pagination-btn.active {
    background: var(--gradient-1);
    color: var(--text-light);
    border-color: transparent;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Goals Section */
.goals-section {
    background: #ffffff;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.goal-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.goal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
    border-color: var(--accent-color);
}

.goal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 2rem;
}

.goal-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.goal-card p {
    line-height: 1.6;
}

/* Support Section */
.support-section {
    background: var(--gradient-1);
    color: var(--text-light);
    text-align: center;
}

.support-section .section-title {
    color: var(--text-light);
}

.support-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.thank-you-box {
    background: rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.thank-you-box h3 {
    font-size: 2rem;
}

/* Contact Section */
.contact-section {
    background: #ffffff;
}

.contact-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-content > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: var(--accent-color);
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.contact-item a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    text-align: center;
}

.footer-logo-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .player-controls {
        flex-direction: column;
        gap: 1rem;
    }

    .play-button {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }

    .quick-links {
        flex-direction: column;
        align-items: stretch;
    }

    .link-button {
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .goals-grid {
        grid-template-columns: 1fr;
    }

    .main-nav {
        justify-content: center;
    }

    .logo-container {
        justify-content: center;
        text-align: center;
    }

    .site-title {
        font-size: 1.3rem;
    }

    /* Podcast Responsive */
    .podcast-grid {
        grid-template-columns: 1fr;
    }

    .podcast-player-info {
        flex-direction: column;
        text-align: center;
    }

    .podcast-player {
        padding: 1.5rem;
    }

    .podcast-details h3 {
        font-size: 1.4rem;
    }

    .podcast-filters {
        flex-direction: column;
    }

    .filter-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .schedule-times {
        flex-direction: column;
    }

    .radio-player {
        padding: 1rem;
    }

    .section {
        padding: 2rem 0;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeIn 0.6s ease-out;
}
