/* Estilos generales */
body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
}

/*
h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
}*/

h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
}

/* Redes Sociales */
.social-links {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #2c3e50;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-link:hover {
    background-color: #34495e;
    transform: translateY(-2px);
    color: white;
}

/* Hero Section con imagen de fondo */
.hero-section {
    position: relative;
    background-image: url('../img/fondo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 50px 0;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0.3)
    );
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-section .lead {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    font-weight: 600;
}

/* Nuevo: texto de la parroquia bajo "El Buen Pastor" */
.parroquia {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    opacity: 0.9;
}

.logo-placeholder {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Botón personalizado */
.btn-prayer {
    background-color: #8B4513;
    border-color: #8B4513;
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-prayer:hover {
    background-color: #654321;
    border-color: #654321;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: white;
}

/* Secciones */
.section {
    padding: 80px 0;
}

/* Iconos circulares - actualizados para Font Awesome */
.icon-circle {
    width: 80px;
    height: 80px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    border: 2px solid #e9ecef;
    color: #708DC7; /* Color oscuro para los íconos */
}

.icon-circle i {
    font-size: 1.8rem; /* Ajuste fino para íconos */
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer p {
    margin-bottom: 0.5rem;
}

.bible-verse {
    font-style: italic;
    color: #bdc3c7;
    margin-top: 1rem;
    font-size: 1.1rem;
}

.logo-image {
    max-width: 20%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.playfair-display {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.open-sans {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

.open-sans-semibold {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}

/* Estilos para el formulario de registro */
#registrationForm .form-label {
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #2c3e50;
}

#registrationForm .form-control {
    border-radius: 8px;
    padding: 0.6rem 1rem;
}

#registrationForm .form-text {
    font-size: 0.85rem;
    color: #6c757d;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }

    .parroquia {
        font-size: 1rem;
    }
    
    .social-links {
        top: 10px;
        right: 10px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .logo-image {
        max-width: 50%;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    /* Ajuste de columnas en formulario móvil */
    #registrationForm .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    
    
}


/* Ícono de SMS: solo en móviles */
.sms-link {
    display: none;
}

@media (max-width: 768px) {
    .sms-link {
        display: flex;
    }
}

