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

:root {
    --primary-color: #212225;
    --secondary-color: #6b8e23;
    --accent-color: #157493;
    --text-color: #212225;
    --text-secondary: #53575b;
    --light-bg: #f5f5f5;
    --section-bg: #fafafa;
    --white: #ffffff;
    --border-color: #e0e2e2;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Georgia', 'Garamond', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
}

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

/* HEADER & NAVIGATION */
.header {
    background-color: #292929;
    color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border-bottom: 3px solid var(--secondary-color);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-icon {
    height: 55px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.logo-text span:first-child {
    font-size: 1.5rem;
    font-weight: normal;
    letter-spacing: 2px;
    font-family: 'Georgia', 'Garamond', serif;
    text-transform: uppercase;
    line-height: 1.3;
}

.logo-subtitle {
    font-size: 0.7rem;
    letter-spacing: 3px;
    opacity: 0.85;
    font-weight: normal;
    font-style: normal;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', 'Garamond', 'Times New Roman', serif;
    font-weight: normal;
    letter-spacing: 0.5px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* HERO SECTION */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('images/banner5.jpg');
    background-size: cover;
    background-position: center 70%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--white);
    padding: 100px 20px;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-profile-img {
    position: absolute;
    bottom: 100px;
    left: 30px;
    width: 360px;
    height: 360px;
    border-radius: 20px;
    object-fit: cover;
    border: 4px solid var(--secondary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.hero-social {
    position: absolute;
    bottom: 60px;
    left: 30px;
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    width: 360px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* BUTTONS */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: normal;
    font-family: 'Georgia', 'Garamond', serif;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #5a7a1f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107, 142, 35, 0.3);
}

/* ABOUT SECTION */
.about {
    padding: 80px 0;
    background-color: var(--white);
}

.about h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
    font-weight: normal;
}

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

.about-text h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.placeholder-image {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 80px 20px;
    text-align: center;
    font-size: 1.2rem;
    color: #999;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.podcast-cover {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* SERVICES SECTION */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #3a3a3a 0%, #2d2d2d 100%);
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--white);
}

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

.service-card {
    background: linear-gradient(135deg, #2d2d2d 0%, #1f1f1f 100%);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: 1px solid #6b8e23;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(107, 142, 35, 0.4);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #6b8e23;
}

.service-card p {
    color: #d0d0d0;
    line-height: 1.8;
}

/* EPISODES SECTION */
.episodes {
    padding: 80px 0;
    background-color: var(--section-bg);
}

.episodes h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}


.episodes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.video-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #000;
}

.channel-link {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.channel-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.channel-link:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: var(--secondary-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    opacity: 0.8;
    transition: var(--transition);
}

.channel-link:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.video-info p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.video-date {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 0.5rem !important;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* BOOK SECTION */
.book-section {
    padding: 80px 0;
    background-color: var(--white);
}

.book-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

.book-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--section-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.book-image {
    text-align: center;
}

.book-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.book-image a:hover img {
    transform: scale(1.05);
}

.book-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.book-author {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.book-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* TESTIMONIALS SECTION */
.testimonials {
    padding: 80px 0;
    background-color: var(--section-bg);
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

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

.testimonial-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.testimonial-text {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-style: italic;
}

.testimonial-author {
    color: var(--secondary-color);
    font-weight: 600;
}

/* DONATION SECTION */
.donation {
    padding: 80px 0;
    background-color: var(--white);
}

.donation h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--primary-color);
    font-weight: normal;
}

.donation-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.donation-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.donation-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    border: 2px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.donation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(107, 142, 35, 0.15);
    border-color: var(--secondary-color);
}

.donation-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.donation-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: normal;
}

.donation-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* CONTACT SECTION */
.contact {
    padding: 80px 0;
    background-color: var(--section-bg);
}

.contact h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-color);
    font-weight: normal;
}

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

.contact-intro {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.contact-email-main {
    text-align: center;
    font-size: 1.5rem;
    margin: 3rem 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.contact-email-main i {
    color: var(--secondary-color);
    font-size: 1.8rem;
}

.contact-email-main a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: normal;
}

.contact-email-main a:hover {
    color: var(--secondary-color);
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--white);
    color: var(--text-color);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(107, 142, 35, 0.1);
}

.contact-note {
    font-size: 1rem;
    color: var(--text-secondary);
    text-align: center;
}

.contact-note a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-note a:hover {
    text-decoration: underline;
}

/* FOOTER */
.footer {
    background-color: #292929;
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bbb;
    text-decoration: none;
    transition: var(--transition);
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1.5rem;
    text-align: center;
    color: #aaa;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    body {
        text-align: center;
    }

    .container {
        padding: 0 15px;
    }

    .nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: var(--primary-color);
        padding: 1rem;
        gap: 1rem;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .hero {
        padding: 80px 20px 320px 20px;
        min-height: auto;
        background-attachment: scroll;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .hero-profile-img {
        bottom: 80px;
        left: 50%;
        transform: translateX(-50%);
        width: 280px;
        height: 280px;
    }

    .hero-social {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 280px;
        gap: 0.5rem;
    }

    .social-icon {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }

    .about,
    .episodes,
    .book-section,
    .testimonials,
    .donation,
    .contact {
        padding: 60px 0;
    }

    .about h2,
    .episodes h2,
    .book-section h2,
    .testimonials h2,
    .donation h2,
    .contact h2 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .episodes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .video-card {
        display: flex;
        flex-direction: row;
    }

    .video-thumbnail {
        flex-shrink: 0;
        width: 200px;
    }

    .channel-link {
        aspect-ratio: 16 / 9;
    }

    .video-info {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .video-info h3 {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .book-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }

    .donation-links {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 0 10px;
    }

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

@media (max-width: 480px) {
    body {
        text-align: center;
    }

    .container {
        padding: 0 10px;
    }

    .logo-icon {
        height: 40px;
    }

    .logo-text span:first-child {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .logo-subtitle {
        font-size: 0.6rem;
        letter-spacing: 2px;
    }

    .hero {
        padding: 60px 15px 280px 15px;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-profile-img {
        bottom: 70px;
        left: 50%;
        transform: translateX(-50%);
        width: 220px;
        height: 220px;
    }

    .hero-social {
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        width: 220px;
        gap: 0.3rem;
        flex-wrap: nowrap;
    }

    .social-icon {
        width: 26px;
        height: 26px;
        font-size: 0.75rem;
    }

    .about,
    .episodes,
    .book-section,
    .testimonials,
    .donation,
    .contact {
        padding: 40px 0;
    }

    .about h2,
    .episodes h2,
    .book-section h2,
    .testimonials h2,
    .donation h2,
    .contact h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .about-text h3 {
        font-size: 1.4rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .btn {
        padding: 10px 24px;
        font-size: 0.95rem;
    }

    .btn-small {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .video-card {
        display: flex;
        flex-direction: row;
    }

    .video-thumbnail {
        flex-shrink: 0;
        width: 140px;
    }

    .channel-link {
        aspect-ratio: 16 / 9;
    }

    .video-info {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 1rem;
    }

    .video-info h3 {
        font-size: 1rem;
        line-height: 1.3;
        margin-bottom: 0.3rem;
    }

    .video-date {
        font-size: 0.8rem;
    }

    .book-card {
        padding: 1rem;
    }

    .book-info h3 {
        font-size: 1.4rem;
    }

    .book-description {
        font-size: 0.95rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .donation-intro {
        font-size: 1rem;
    }

    .donation-card {
        padding: 2rem 1.5rem;
    }

    .donation-card i {
        font-size: 2.5rem;
    }

    .donation-card h3 {
        font-size: 1.3rem;
    }

    .contact-intro {
        font-size: 1rem;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 0.95rem;
        padding: 10px 12px;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-section h4 {
        font-size: 1.1rem;
    }
}
