.portfolio-section {
    padding: 80px 0;
    background-color: white;
}

.portfolio-header {
    max-width: 800px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.portfolio-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.portfolio-header p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.portfolio-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-5px);
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    color: white;
}

.portfolio-overlay h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.portfolio-overlay p {
    font-size: 1.1rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .portfolio-header h1 {
        font-size: 2rem;
    }

    .portfolio-header p {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .portfolio-grid {
        gap: 20px;
    }

    .portfolio-overlay h2 {
        font-size: 1.5rem;
    }

    .portfolio-overlay p {
        font-size: 1rem;
    }
}
.cta-section {
    margin-top: 5rem;
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('/web-ready-images/events/Who-says-baptisms-are-boring.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    border-radius: 8px;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background-color: #f9c349;
    border: none;
    color: #000;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(249, 195, 73, 0.4);
    background-color: #f7b733;
}

@media (max-width: 768px) {
    .cta-section {
        margin-top: 3rem;
        padding: 3rem 1rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1.1rem;
    }
}
