
/* fellowship.css — page-specific styles for Parish Fellowship */

/* === CSS VARIABLES === */
        

        

        

        

        

        /* === HERO SECTION ===
           padding/margin-top removed — duplicated global.css's shared
           hero rule with hardcoded numbers unrelated to --header-offset,
           overriding the real fix there. global.css's shared
           .page-hero-base rule now governs spacing for this hero too. */
        .fellowship-hero {
            position: relative;
            background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(42, 39, 36, 0.95) 100%), url('https://stjoseph.site/wp-content/uploads/2025/11/1-AAA-Welcome-View-from-LHS-scal.jpg');
            background-size: cover;
            background-position: center;
            color: var(--white);
            text-align: center;
            overflow: hidden;
        }

        .fellowship-hero .hero-container {
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 2;
        }

        .fellowship-hero h1 {
            font-size: clamp(2.5rem, 4vw, 4.9rem); /* max raised 3.5rem -> 4.9rem, same min/vw as before */
            color: var(--white);
            margin-bottom: 20px;
            font-weight: 400;
        }

        .fellowship-hero 

        /* === LEFT SIDEBAR NAVIGATION === */
        

        

        

        .sidebar-nav-list 

        

        

        /* === MAIN CONTENT AREA === */
        

        .fellowship-section {
            padding: 0 0 80px;
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 40px;
        }

        .fellowship-section:last-of-type {
            border-bottom: none;
        }

        

        

        

        /* === WELCOME SECTION === */
        .welcome-card {
            background: var(--white);
            border-radius: 0;
            padding: 40px;
            box-shadow: var(--shadow-medium);
            border-top: 4px solid var(--accent);
            text-align: center;
        }

        .welcome-icon {
            width: 80px;
            height: 80px;
            border-radius: 0;
            background: var(--accent-light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }

        .welcome-icon i {
            font-size: 2.2rem;
            color: var(--accent);
        }

        /* === FACEBOOK GROUP EMBED (Scrolling Removed) === */
        .facebook-embed-container {
            background: var(--white);
            border-radius: 0;
            padding: 30px;
            box-shadow: var(--shadow-medium);
            margin: 40px 0;
        }

        .facebook-iframe {
            width: 100%;
            /* Removed fixed height and overflow hidden to allow original embed height */
            height: 1000px; 
            border: 1px solid var(--border-color);
            border-radius: 0;
        }

        .facebook-iframe iframe {
            overflow: hidden;
        }

        /* === INFO & STEPS === */
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .info-card {
            background: var(--white);
            border-radius: 0;
            padding: 30px;
            box-shadow: var(--shadow-soft);
            border-left: 4px solid var(--accent);
        }

        .join-steps {
            background: var(--white);
            border-radius: 0;
            padding: 40px;
            box-shadow: var(--shadow-medium);
        }

        .step-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 1px solid var(--border-color);
        }

        .step-number {
            width: 50px;
            height: 50px;
            border-radius: 0;
            background: var(--accent);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            flex-shrink: 0;
        }

        

        

        /* === RESPONSIVE === */
        @media (max-width: 1100px) {
            .info-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .fellowship-hero h1 {
                font-size: 2.2rem;
            }
            .fellowship-section {
                padding: 0 0 50px;
            }
            .welcome-card,
            .join-steps {
                padding: 28px 20px;
            }
            .facebook-iframe {
                height: 600px;
            }
        }

        @media (max-width: 576px) {
            .fellowship-hero {
                padding: 130px 0 36px;
            }
            .info-grid {
                grid-template-columns: 1fr;
            }
            .step-item {
                flex-direction: column;
                gap: 12px;
            }
        }
    

    /* Fix: Remove unwanted checkmarks from sidebar navigation links */
    .sidebar-nav-list li::before {
      content: none !important;
    }
