/*
Theme Name: Oraia
Author: Oraia
Description: Theme ultra simple para sitio en construcción con fondo de pantalla y WhatsApp.
Version: 1.0
*/

/* Importar fuente Marcellus desde Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body, html {
    height: 100%;
    font-family: 'Marcellus', serif;
}

.construccion-bg {
    background-image: url('assets/bg-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.construccion-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); 
    z-index: 1;
}

.construccion-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
}

.construccion-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.construccion-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.whatsapp-btn {
    display: inline-block;
    background-color: #25d366;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.whatsapp-btn:hover {
    background-color: #1ebe5d;
}