* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.rfc-banner-container {
    width: 100%;
    height: 100vh;
    min-height: 600px;
    position: relative;
    background: linear-gradient(135deg, #d4669f 0%, #e8a85c 50%, #f4c86e 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rfc-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(255,255,255,0.08) 0%, transparent 50%);
}

.rfc-geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.rfc-shape-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.rfc-shape-circle:nth-child(1) {
    width: 200px;
    height: 200px;
    top: 10%;
    left: -50px;
    animation: rfc-float 8s ease-in-out infinite;
}

.rfc-shape-circle:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    right: -30px;
    animation: rfc-float 6s ease-in-out infinite reverse;
}

.rfc-shape-circle:nth-child(3) {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 20%;
    animation: rfc-float 10s ease-in-out infinite;
}

.rfc-content-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
}

.rfc-pastor-image-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rfc-pastor-image-container {
    width: 350px;
    height: 450px;
    position: relative;
    background: linear-gradient(145deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.rfc-pastor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.rfc-text-section {
    flex: 1;
    text-align: left;
    color: white;
    padding-left: 3rem;
}

.rfc-welcome-text {
    font-family: 'Georgia', serif;
    font-size: 2.2rem;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 0.5rem;
    opacity: 0.95;
    letter-spacing: 2px;
}

.rfc-church-name {
    font-family: 'Arial Black', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 3px;
}

.rfc-church-location {
    font-family: 'Arial', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;
    opacity: 0.9;
    margin-top: 1rem;
}

.rfc-logo-container {
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.rfc-logo-text {
    font-family: 'Arial Black', sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    color: #d4669f;
    text-align: center;
    line-height: 1;
}

@keyframes rfc-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .rfc-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem 1rem;
    }

    .rfc-pastor-image-section {
        order: 1;
    }

    .rfc-text-section {
        order: 2;
        padding-left: 0;
    }

    .rfc-pastor-image-container {
        width: 500px;
        height: 650px;
    }

    .rfc-welcome-text {
        font-size: 1.8rem;
    }

    .rfc-church-name {
        font-size: 3.5rem;
    }

    .rfc-church-location {
        font-size: 1.4rem;
        letter-spacing: 6px;
    }
}

@media (max-width: 768px) {
    .rfc-banner-container {
        min-height: 800px;
    }

    .rfc-pastor-image-container {
        width: 250px;
        height: 320px;
    }

    .rfc-welcome-text {
        font-size: 1.5rem;
    }

    .rfc-church-name {
        font-size: 2.8rem;
        letter-spacing: 2px;
    }

    .rfc-church-location {
        font-size: 1.2rem;
        letter-spacing: 4px;
    }

    .rfc-logo-container {
        width: 60px;
        height: 60px;
        top: 1rem;
        left: 1rem;
    }

    .rfc-logo-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .rfc-content-wrapper {
        padding: 1rem;
    }

    .rfc-pastor-image-container {
        width: 350px;
        height: 450px;
    }

    .rfc-welcome-text {
        font-size: 1.3rem;
    }

    .rfc-church-name {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .rfc-church-location {
        font-size: 1rem;
        letter-spacing: 3px;
    }

    .rfc-shape-circle:nth-child(1) {
        width: 150px;
        height: 150px;
    }

    .rfc-shape-circle:nth-child(2) {
        width: 120px;
        height: 120px;
    }

    .rfc-shape-circle:nth-child(3) {
        width: 80px;
        height: 80px;
    }
}

@media (orientation: landscape) and (max-height: 600px) {
    .rfc-banner-container {
        height: auto;
        min-height: 100vh;
        padding: 2rem 0;
    }

    .rfc-content-wrapper {
        flex-direction: row;
        align-items: center;
    }

    .rfc-text-section {
        padding-left: 2rem;
    }

    .rfc-pastor-image-container {
        width: 550px;
        height: 650px;
    }

    .rfc-church-name {
        font-size: 3rem;
    }
}



.hero-section {
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ffd700);
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.church-title {
    font-size: 4rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0;
}

.church-subtitle {
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-top: 10px;
}

.bishop-section {
    background: linear-gradient(to bottom, #8290d2, #8ba6d1);
    color: white;
}

.bishop-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    color: #333;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.bishop-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #ffd700;
}

.devotional-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.devotional-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.events-section {
    background: linear-gradient(135deg, #dc3545, #6f42c1);
    color: white;
    padding: 80px 0;
}

.event-card {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.countdown-timer {
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    margin: 20px 0;
}

.timer-digit {
    font-size: 2rem;
    font-weight: bold;
}

.give-section {
    background: #343a40;
    color: white;
    padding: 60px 0;
}

.service-icons {
    background: white;
    padding: 60px 0;
}

.service-icon {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.service-icon:hover {
    transform: translateY(-10px);
}

.btn-custom {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
}

.btn-custom:hover {
    background: linear-gradient(45deg, #e55a2b, #e6841a);
    color: white;
}

.watch-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #dc3545;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .church-title {
        font-size: 2.5rem;
    }
    .church-subtitle {
        font-size: 1.2rem;
    }
}
