/*
Theme Name: Promedia Digital Coming Soon
Theme URI: https://saludconganoderma.com
Author: Ángel Grimaldo
Author URI: https://angelgrimaldo.com/
Description: Custom theme for Salud Con Ganoderma.
Version: 1.0.0
Text Domain: saludconganoderma
*/

:root {
    --color-dxn-red: #EB1C24;
    --color-dxn-green: #03A353;
    --color-dxn-blue: #2E3192;
    --color-white: #FFFFFF;
    --color-text: #333333;
    --color-bg: var(--color-white);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Coming Soon Wrapper */
.coming-soon-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

/* Decorative Background Elements */
.coming-soon-wrapper::before,
.coming-soon-wrapper::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.15;
    animation: float 10s infinite ease-in-out alternate;
}

.coming-soon-wrapper::before {
    width: 400px;
    height: 400px;
    background: var(--color-dxn-red);
    top: -100px;
    left: -100px;
}

.coming-soon-wrapper::after {
    width: 300px;
    height: 300px;
    background: var(--color-dxn-blue);
    bottom: -50px;
    right: -50px;
    animation-delay: -5s;
}

.coming-soon-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.7);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.brand-logo {
    display: block;
    max-width: 100px;
    width: 100%;
    height: auto;
    margin: 0 auto 1.5rem auto;
}

.brand-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(3, 163, 83, 0.1); /* Light green bg */
    color: var(--color-dxn-green);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.coming-soon-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-dxn-blue);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.coming-soon-title span {
    color: var(--color-dxn-red);
}

.coming-soon-desc {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
}

.progress-container {
    width: 100%;
    height: 6px;
    background-color: #eee;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.progress-bar {
    height: 100%;
    width: 60%;
    background: linear-gradient(90deg, var(--color-dxn-blue), var(--color-dxn-green));
    border-radius: 10px;
    animation: progressLoad 2s ease-out forwards;
}

@keyframes float {
    0% { transform: translateY(0px) scale(1); }
    100% { transform: translateY(30px) scale(1.1); }
}

@keyframes progressLoad {
    0% { width: 0; }
    100% { width: 75%; }
}

@media (max-width: 768px) {
    .brand-logo {
        max-width: 80px;
    }
    .coming-soon-title {
        font-size: 2.5rem;
    }
    .coming-soon-content {
        padding: 2rem;
    }
}
