/* Professional Coming Soon Page Styles - Compact Version */

/* Variables */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #7c3aed;
    --dark: #0f172a;
    --darker: #020617;
    --light: #f8fafc;
    --light-muted: #94a3b8;
    --font-main: 'Rajdhani', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Orbitron', sans-serif;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--light);
}

body {
    background-color: var(--darker);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

/* Main container */
.coming-soon-wrapper {
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--darker) 0%, #101935 100%);
}

/* Background overlay with gradient */
.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(124, 58, 237, 0.1) 0%, rgba(37, 99, 235, 0.05) 50%, rgba(2, 6, 23, 0) 100%);
    pointer-events: none;
}

/* Reduced floating elements for subtle background */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.floating-element {
    position: absolute;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    opacity: 0.03;
    filter: blur(4px);
    animation: float 30s infinite linear;
}

.floating-element:nth-child(1) {
    width: 150px;
    height: 150px;
    top: 20%;
    left: 10%;
    animation-duration: 35s;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 100px;
    height: 100px;
    top: 60%;
    left: 80%;
    animation-duration: 40s;
    animation-delay: 1s;
}

.floating-element:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 30%;
    left: 70%;
    animation-duration: 32s;
    animation-delay: 2s;
}

.floating-element:nth-child(4) {
    width: 120px;
    height: 120px;
    top: 75%;
    left: 30%;
    animation-duration: 38s;
    animation-delay: 3s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(20px, 15px) rotate(180deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* Main content container - Smaller and more compact */
.content-container {
    max-width: 600px;
    width: 90%;
    padding: 30px;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    box-shadow: 0 15px 30px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 1;
}

/* Logo */
.logo-container {
    margin-bottom: 1.5rem;
}

.logo {
    max-width: 150px;
    height: auto;
    /* No animation for logo */
}

/* Typography */
.title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--light);
    position: relative;
    display: inline-block;
}

.title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 2px;
}

.description {
    font-size: 1.1rem;
    max-width: 500px;
    margin: 1.5rem auto;
    color: var(--light-muted);
}

/* Email signup form */
.signup-container {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 20px;
    margin: 1.5rem 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.signup-container h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.notify-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto 0.75rem;
    position: relative;
}

.notify-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px 0 0 8px;
    color: var(--light);
    font-family: var(--font-main);
    font-size: 1rem;
}

.notify-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.submit-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 8px 8px 0;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background: var(--primary-dark);
}

.form-message {
    height: 20px;
    margin-top: 10px;
    font-size: 0.9rem;
}

.form-message.success {
    color: #10b981;
}

.form-message.error {
    color: #ef4444;
}

/* Social links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 1.5rem 0;
    text-decoration: none;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--light);
    border-radius: 50%;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    color: white;
}

/* Contact info */
.contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 1rem 0;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.contact-item {
    display: flex;
    align-items: center;
    color: var(--light-muted);
}

.contact-item i {
    margin-right: 8px;
    color: var(--primary);
}

/* Footer */
.footer {
    margin-top: 1.5rem;
    color: var(--light-muted);
    font-size: 0.85rem;
}

a{
    text-decoration: none;
}

/* Responsive styles */
@media (max-width: 768px) {
    .content-container {
        padding: 25px 20px;
        max-width: 500px;
    }
    
    .title {
        font-size: 2.2rem;
    }
    
    .logo {
        max-width: 120px;
    }
}

@media (max-width: 576px) {
    .content-container {
        padding: 20px 15px;
        width: 95%;
    }
    
    .title {
        font-size: 1.8rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .notify-form {
        flex-direction: column;
    }
    
    .notify-form input {
        border-radius: 8px;
        margin-bottom: 10px;
    }
    
    .submit-btn {
        border-radius: 8px;
        padding: 10px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 10px;
    }
}
