/* Press Pause Community Page Styles */

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

:root {
    --primary-red: #8B1E14;
    --accent-gold: #F2A900;
    --accent-green: #0E3B2E;
    --light-cream: #F5E6D3;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --border-color: #e5e5e5;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant', 'Lora', 'Libre Baskerville', serif;
    line-height: 1.6;
    color: var(--text-dark);
}

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

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-red);
    text-decoration: none;
}

.logo i {
    color: var(--accent-gold);
}

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

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-gold);
}

/* CTA Buttons */
.cta-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: 'Segoe UI', sans-serif;
}

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

.cta-btn.primary:hover {
    background: #6B1710;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 30, 20, 0.3);
}

.cta-btn.secondary {
    background: var(--accent-gold);
    color: var(--primary-red);
    font-weight: 700;
}

.cta-btn.secondary:hover {
    background: #E09900;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 169, 0, 0.3);
}

.cta-btn.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-red) 0%, #6B1710 100%);
    color: var(--light-cream);
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,200 600,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-repeat: repeat-x;
    animation: wave 15s linear infinite;
}

@keyframes wave {
    0% { background-position: 0 0; }
    100% { background-position: 1200px 0; }
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-gold);
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--light-cream);
    font-style: italic;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: white;
}

.about-text h2 {
    font-size: 2.8rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

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

.about-text h3 {
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Community Section */
.community-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F5E6D3 0%, #fafaf8 100%);
}

.community-section h2 {
    font-size: 2.8rem;
    color: var(--primary-red);
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.community-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--accent-gold);
    transition: all 0.3s ease;
}

.community-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(139, 30, 20, 0.1);
}

.community-item i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.community-item p {
    font-size: 1.05rem;
    color: var(--text-dark);
}

.community-goal {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    border-left: 5px solid var(--accent-gold);
    text-align: center;
}

.community-goal h3 {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.community-goal p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Experience Section */
.experience-section {
    padding: 5rem 0;
    background: white;
}

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

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

.experience-card {
    background: linear-gradient(135deg, #F5E6D3 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid var(--accent-gold);
    transition: all 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(139, 30, 20, 0.15);
}

.experience-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.experience-card h3 {
    font-size: 1.8rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.experience-card ul {
    list-style: none;
}

.experience-card li {
    padding: 0.75rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
    padding-left: 1.5rem;
    position: relative;
}

.experience-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

/* Partners Section */
.partners-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F5E6D3 0%, #fafaf8 100%);
}

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

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 10px 25px rgba(242, 169, 0, 0.15);
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: var(--primary-red);
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Opportunities Section */
.opportunities-section {
    padding: 5rem 0;
    background: white;
}

.opportunities-section h2 {
    font-size: 2.8rem;
    color: var(--primary-red);
    text-align: center;
    margin-bottom: 0.5rem;
}

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

.opportunity-item {
    background: linear-gradient(135deg, #F5E6D3 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--accent-gold);
    text-align: center;
    transition: all 0.3s ease;
}

.opportunity-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(139, 30, 20, 0.1);
}

.opportunity-item i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.opportunity-item h3 {
    font-size: 1.2rem;
    color: var(--primary-red);
    margin-bottom: 0.75rem;
}

.opportunity-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Impact Section */
.impact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F5E6D3 0%, #fafaf8 100%);
}

.impact-section h2 {
    font-size: 2.8rem;
    color: var(--primary-red);
    text-align: center;
    margin-bottom: 0.5rem;
}

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

.impact-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid var(--accent-gold);
    text-align: center;
}

.impact-item i {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.impact-item p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* Join Section */
.join-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, #6B1710 100%);
    color: var(--light-cream);
    text-align: center;
}

.join-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.join-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.join-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.join-form input {
    flex: 1;
    min-width: 250px;
    padding: 0.75rem 1rem;
    border: 1px solid var(--light-cream);
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
}

.join-form input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(242, 169, 0, 0.2);
}

/* Footer */
.footer {
    background: var(--primary-red);
    color: var(--light-cream);
    padding: 3rem 0 1rem;
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.footer-col p {
    color: rgba(245, 230, 211, 0.85);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

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

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

.footer-col a {
    color: rgba(245, 230, 211, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(245, 230, 211, 0.15);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-gold);
    color: var(--primary-red);
}

.footer-bottom {
    border-top: 1px solid rgba(245, 230, 211, 0.2);
    padding-top: 1rem;
    text-align: center;
    color: rgba(245, 230, 211, 0.8);
}

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

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

    .about-text h2,
    .community-section h2,
    .experience-section h2,
    .partners-section h2,
    .opportunities-section h2,
    .impact-section h2 {
        font-size: 2rem;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .join-form {
        flex-direction: column;
    }

    .join-form input,
    .join-form button {
        width: 100%;
    }
}

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

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

    .about-text h2,
    .community-section h2,
    .experience-section h2,
    .partners-section h2,
    .opportunities-section h2,
    .impact-section h2 {
        font-size: 1.5rem;
    }

    .about-text h3,
    .experience-card h3 {
        font-size: 1.3rem;
    }

    .join-form {
        flex-direction: column;
    }

    .join-form input,
    .join-form button {
        width: 100%;
    }
}
