/*
Theme Name: Define Your Risk - Coming Soon
Theme URI: https://defineyourrisk.com
Author: Define Your Risk Team
Author URI: https://defineyourrisk.com
Description: A clean, professional coming soon page for Define Your Risk - Options Trading Academy
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: define-your-risk
Tags: one-column, custom-colors, custom-logo, featured-images, full-width-template
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Light Version (Default) */
.coming-soon-container.light {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.coming-soon-container.light .tagline {
    color: #333;
}

.coming-soon-container.light .description {
    color: #666;
}

.coming-soon-container.light .footer-text {
    color: #999;
}

/* Dark Version */
.coming-soon-container.dark {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.coming-soon-container.dark .tagline {
    color: #ffffff;
}

.coming-soon-container.dark .description {
    color: #cccccc;
}

.coming-soon-container.dark .footer-text {
    color: #666666;
}

/* Logo Container */
.logo-container {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInDown 1s ease-out;
}

.logo-container img {
    max-width: 500px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Content Section */
.content-section {
    text-align: center;
    max-width: 800px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.tagline {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.coming-soon-badge {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

/* Footer */
.footer {
    position: absolute;
    bottom: 2rem;
    text-align: center;
    animation: fadeIn 1s ease-out 0.6s both;
}

.footer-text {
    font-size: 0.875rem;
}

.footer-text .trademark {
    font-size: 0.75rem;
    vertical-align: super;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-container img {
        max-width: 350px;
    }
    
    .tagline {
        font-size: 1.75rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .coming-soon-badge {
        font-size: 1rem;
        padding: 0.625rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .coming-soon-container {
        padding: 1rem;
    }
    
    .logo-container img {
        max-width: 250px;
    }
    
    .tagline {
        font-size: 1.5rem;
    }
    
    .description {
        font-size: 0.9rem;
    }
}
