/* Power Pac Ministries - Stylesheet */
/* Modern, Clean Design */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700;800&display=swap');

:root {
    --primary-red: #8B3A3A;
    --accent-red: #A84444;
    --light-cream: #F5F0E8;
    --dark-text: #2C2C2C;
    --light-text: #666666;
    --white: #FFFFFF;
    --border-light: #E0D8CC;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--light-cream);
}

/* Navigation */
.navbar {
    background-color: var(--light-cream);
    padding: 1.2rem 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
}

.logo a {
    display: block;
    line-height: 0;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
}

.logo h1 {
    color: var(--primary-red);
    font-size: 1.4rem;
    font-weight: 400;
    font-family: 'Georgia', serif;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--dark-text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-red);
}

.nav-menu a:last-child {
    color: var(--primary-red);
    font-weight: 500;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Hero Section - Override for fullscreen */
.hero {
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 100%);
    color: var(--white);
    padding: 6rem 2rem;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    font-weight: 300;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--white);
    font-weight: 300;
    line-height: 1.8;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
    font-weight: 500;
}

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

.btn-primary:hover {
    background-color: var(--accent-red);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 58, 58, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

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

.btn-donate {
    background-color: var(--primary-red);
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
}

.btn-donate:hover {
    background-color: var(--accent-red);
    transform: scale(1.02);
}

/* Index Image Section */
.index-image-section {
    padding: 3rem 2rem;
    background-color: var(--light-cream);
}

.index-image-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.index-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mission Section */
.mission-section {
    padding: 5rem 2rem;
    background-color: var(--white);
}

.mission-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
    font-weight: 400;
}

.mission-intro {
    text-align: center;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--light-text);
    margin-bottom: 3rem;
    font-weight: 300;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: rgba(245, 240, 232, 0.5);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid var(--border-light);
}

.mission-content h3 {
    color: var(--dark-text);
    font-size: 1.6rem;
    margin: 2rem 0 1rem 0;
    font-weight: 500;
}

.mission-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--light-text);
}

.mission-list {
    list-style: none;
    padding-left: 0;
}

.mission-list li {
    font-size: 1.1rem;
    margin: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--dark-text);
}

.mission-list li strong {
    color: var(--primary-red);
    font-size: 1.4rem;
    font-weight: 600;
}

.mission-with {
    margin-top: 2rem;
    text-align: center;
}

.pac-list {
    list-style: none;
    padding: 0;
}

.pac-list li {
    font-size: 1.2rem;
    margin: 0.8rem 0;
    color: var(--dark-text);
}

.pac-list li strong {
    color: var(--primary-red);
    font-size: 1.5rem;
    font-weight: 600;
}

/* Info Section */
.info-section {
    padding: 5rem 2rem;
    background-color: var(--white);
}

.info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.info-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.info-image img {
    width: 100%;
    height: auto;
    display: block;
}

.info-text h2 {
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.3;
}

.info-text p {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.info-text .btn {
    margin-top: 1rem;
}

/* Donate Section */
.donate-section {
    padding: 5rem 2rem;
    background-color: var(--light-cream);
    color: var(--dark-text);
    text-align: center;
    border-top: 1px solid var(--border-light);
}

.donate-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
    font-weight: 400;
}

.donate-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--light-text);
    font-weight: 300;
}

/* CTA Section */
.cta-section {
    padding: 5rem 2rem;
    background-color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
    font-weight: 400;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--medium-brown) 0%, var(--dark-brown) 100%);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.page-hero p {
    font-size: 1.3rem;
    color: var(--light-gold);
}

/* About Content */
.about-content {
    padding: 4rem 2rem;
}

.about-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.about-intro h2 {
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.subtitle {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--light-text);
    font-weight: 300;
}

/* About Hero Image */
.about-hero-image {
    margin: 3rem auto 4rem;
    max-width: 900px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.about-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* About Secondary Image */
.about-secondary-image {
    margin: 4rem auto 0;
    max-width: 700px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.about-secondary-image img {
    width: 100%;
    height: auto;
    display: block;
}

.story-section {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    border: 2px solid var(--border-color);
}

.story-text h3 {
    color: var(--dark-brown);
    font-size: 1.8rem;
    margin: 2rem 0 1rem 0;
}

.story-text h3:first-child {
    margin-top: 0;
}

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

.story-highlight {
    background-color: var(--light-gold);
    padding: 2rem;
    border-left: 5px solid var(--primary-gold);
    margin-top: 2rem;
}

.story-highlight p {
    font-size: 1.2rem;
    color: var(--dark-brown);
    margin: 0;
}

/* Values Section */
.values-section {
    margin-top: 3rem;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 2rem;
}

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

.value-card {
    background-color: var(--light-gold);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.value-card h3 {
    color: var(--dark-brown);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* Videos Content */
.videos-content {
    padding: 4rem 2rem;
}

.videos-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.videos-intro h2 {
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
    font-weight: 400;
}

.videos-intro p {
    font-size: 1.1rem;
    color: var(--light-text);
    font-weight: 300;
}

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

.video-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-red) 100%);
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
}

.video-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.video-info {
    padding: 1.5rem;
}

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

.video-info p {
    color: var(--light-text);
    font-size: 0.95rem;
    font-weight: 300;
}

.video-subscribe {
    background-color: rgba(245, 240, 232, 0.5);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-light);
}

.video-subscribe h3 {
    color: var(--dark-text);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.video-subscribe p {
    font-size: 1.05rem;
    color: var(--light-text);
    font-weight: 300;
}

/* Footer */
footer {
    background-color: var(--light-cream);
    color: var(--light-text);
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid var(--border-light);
}

footer p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .mission-content {
        padding: 2rem;
    }

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

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

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

    .logo img {
        height: 50px;
    }

    .about-hero-image,
    .about-secondary-image {
        margin-left: 1rem;
        margin-right: 1rem;
    }
}

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

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

    .logo h1 {
        font-size: 1.3rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}
