/*
=============================================
 ESTILOS PRINCIPALES - GATEWAY OF HEAVEN
 assets/css/main.css
=============================================
*/

/* --- 1. Sección Hero (Inicio) --- */
.hero-section {
    position: relative;
    height: 70vh; /* Altura del banner (ajusta al gusto) */
    min-height: 450px;
    /* ! RECUERDA REEMPLAZAR ESTA IMAGEN DE EJEMPLO ! */
   background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/bg-hero.jpg'); 
    background-size: cover;
    background-position: center center;
    background-attachment: fixed; 
}

/* Botones "Pro" para el Hero */
.btn-pro-primary {
    /* (Puedes usar --secondary-color de header-footer.css si lo deseas) */
    background-color: #3498db !important; 
    border-color: #3498db !important;
    color: #fff !important;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-pro-primary:hover {
    background-color: #2980b9 !important; /* Un poco más oscuro */
    border-color: #2980b9 !important;
    transform: translateY(-2px);
}

.btn-pro-secondary {
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-pro-secondary:hover {
    background-color: #fff !important;
    color: #2c3e50 !important;
    transform: translateY(-2px);
}


/* --- 2. Sección de Sermón (Inicio) --- */
.sermon-section img {
    transition: transform 0.3s ease;
}
.sermon-section img:hover {
    transform: scale(1.03);
}


/* --- 3. Sección de Ministerios (Tarjetas Inicio) --- */
.pro-card {
    transition: all 0.3s ease;
    border-radius: 12px !important;
}
.pro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}
.card-icon {
    color: var(--primary-color, #2c3e50); /* Usa el color primario */
}


/*
=============================================
 ESTILOS PARA LA PÁGINA DE CONTACTO (CONTACT)
=============================================
*/

.hero-contact-section {
    position: relative;
    height: 40vh; /* Más corto que el hero de inicio */
    min-height: 250px;
    /* ! RECUERDA REEMPLAZAR ESTA IMAGEN DE EJEMPLO ! */
    background: #36b7eb;
    background: linear-gradient(90deg, rgba(54, 183, 235, 1) 0%, rgba(87, 132, 199, 1) 60%, rgba(83, 98, 237, 1) 100%);
    background-size: cover;
    background-position: center 30%;
}

.contact-info-box {
    background-color: #f8f9fa; /* Un fondo suave (bg-light) */
}

.contact-info-list {
    font-size: 1.1rem;
}

.contact-info-list i {
    color: var(--primary-color, #2c3e50); /* Usa tu color primario */
    font-size: 1.2rem;
}

.map-section {
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
    line-height: 0; /* Previene espacio extra debajo del iframe */
}