/*
Theme Name: Oasis Minimal
Theme URI: https://igleoasis.org
Author: Iglesia Oasis de Amor
Description: Tema minimalista elegante estilo Hillsong
Version: 2.0
*/

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #222;
}

/* HERO SECTION */

.hero {
    height: 100vh;
    background: url('https://scontent.fmga3-1.fna.fbcdn.net/v/t39.30808-6/638419313_1329508952549003_5311894167721364660_n.jpg?_nc_cat=104&ccb=1-7&_nc_sid=13d280&_nc_ohc=tJcY1I9CEIAQ7kNvwGkHvCX&_nc_oc=Adn2EO64SJ2P7JVCiAvqUfkw6jvjk6HFcvC-Zm-IxCvcPPbzLuN7DTNdOUZYZv1Yei4vQWoHhKiVWl-hhsZKzqS-&_nc_zt=23&_nc_ht=scontent.fmga3-1.fna&_nc_gid=0Ga6YglXFeYsK_HvyoiNXA&_nc_ss=8&oh=00_AftoUzffJAXwGXLEgjimydEg5jhbA20-59b9rFcLE9EiLA&oe=69A9B61B') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.hero h1 {
    font-size: 4rem;
    letter-spacing: 3px;
    font-weight: 300;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
    max-width: 750px;
    margin: 0 auto 30px auto;
}

/* BUTTONS */

.btn {
    display: inline-block;
    padding: 14px 32px;
    margin: 10px;
    background: #c9a227;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s ease;
}

.btn:hover {
    background: #a8841f;
}

/* SECTIONS */

.section {
    padding: 100px 20px;
    text-align: center;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.light {
    background: #f5f5f5;
}

.dark {
    background: #111;
    color: white;
}