/*
Theme Name: ArchetypalAI Coming Soon
Description: A beautiful coming soon page theme for ArchetypalAI with gradient background and modern design
Author: ArchetypalAI
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7.2
Requires PHP: 7.4
License: GPL v2 or later
Text Domain: archetypalai-coming-soon
*/

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Main container */
.coming-soon-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #174738, #2c7c60, #58cba4);
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
}

/* Background geometric shapes */
.bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.bg-shape-1 {
    top: 5rem;
    left: 5rem;
    width: 8rem;
    height: 8rem;
    background: rgba(255, 255, 255, 0.1);
}

.bg-shape-2 {
    bottom: 8rem;
    right: 8rem;
    width: 6rem;
    height: 6rem;
    background: rgba(255, 255, 255, 0.05);
    animation-delay: 1s;
}

.bg-shape-3 {
    top: 50%;
    left: 2.5rem;
    width: 4rem;
    height: 4rem;
    background: rgba(6, 182, 212, 0.2);
    animation: bounce 2s infinite;
    animation-delay: 0.5s;
}

.bg-shape-4 {
    bottom: 5rem;
    left: 33%;
    width: 5rem;
    height: 5rem;
    background: rgba(59, 130, 246, 0.15);
    animation-delay: 0.7s;
}

/* Main content */
.main-content {
    text-align: center;
    z-index: 10;
    position: relative;
    max-width: 64rem;
    margin: 0 auto;
    width: 100%;
}

/* Logo container */
.logo-container {
    margin-bottom: 3rem;
    transition: transform 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.05);
}

.logo {
    max-width: 100%;
    height: auto;
    max-height: 8rem;
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.25));
    margin: 0 auto;
    display: block;
}

/* Coming Soon text */
.coming-soon-title {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Subtitle */
.subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Email signup form */
.email-signup {
    max-width: 28rem;
    margin: 0 auto 2rem auto;
}

.form-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.email-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.email-input:focus {
    ring: 2px solid rgba(255, 255, 255, 0.5);
    border-color: transparent;
}

.notify-btn {
    padding: 1rem 2rem;
    background: white;
    color: #374151;
    font-weight: 700;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
}

.notify-btn:hover {
    background: #f3f4f6;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

/* Social links */
.social-links {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.social-link {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.linkedin-icon {
    width: 1.5rem;
    height: 1.5rem;
    fill: currentColor;
}

/* Bottom decoration */
.bottom-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
    pointer-events: none;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-1.25rem);
    }
}

/* Responsive design */
@media (min-width: 640px) {
    .form-container {
        flex-direction: row;
    }
    
    .coming-soon-title {
        font-size: 3rem;
    }
    
    .logo {
        max-height: 10rem;
    }
}

@media (min-width: 1024px) {
    .coming-soon-title {
        font-size: 3rem;
    }
    
    .logo {
        max-height: 12rem;
    }
    
    .subtitle {
        font-size: 1.5rem;
    }
}
