/*
Theme Name: IPUH Irving
Theme URI: https://ipuhirving.org
Author: IPUH Irving
Author URI: https://ipuhirving.org
Description: Tema personalizado para la Iglesia Pentecostal Unida Hispana de Irving, INC
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ipuh-irving
*/

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Exo:ital,wght@0,100..900;1,100..900&display=swap');

/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo', sans-serif;
    line-height: 1.6;
    background-color: #0a1a3a; /* Fondo azul oscuro */
    background-image: url('assets/images/fondo.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Contenedor principal */
.container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #ececec;
    border-radius: 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    text-align: center;
}

/* Logo */
.logo-container {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    background-color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 5px solid #dddddd;
    padding: 0;
    position: relative;
}

.logo {
    width: 90%;
    height: 90%;
    object-fit: contain;
    object-position: center;
    display: block;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

/* Textos */
.welcome {
    color: #0a1a3a;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.subtitle {
    color: #666;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.subtitle:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 2px;
    background-color: #dddddd;
}

.address, .services-title, .service-times {
    margin-bottom: 1.5rem;
    color: #333;
}

.services-title {
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 2rem;
}

/* Teléfono */
.phone-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.phone-number {
    background-color: #c62828;
    background-image: url('assets/images/fondo-rojo.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 0.6rem 2rem; /* Reduced height by ~10% */
    border-radius: 0;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-right: 10px;
    position: relative;
    overflow: hidden;
    min-height: 50px; /* Adjust as needed */
}

.phone-number:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--phone-bg-image, none);
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
}

.phone-number span {
    position: relative;
    z-index: 1;
}

.vertical-line {
    width: 5px;
    height: 60px;
    background-color: #0a1a3a;
    display: inline-block;
}

/* Redes sociales */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 2rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        margin: 1rem;
        padding: 1rem;
    }
    
    .welcome {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .phone-number {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
    }
}
