/* ============================================
   FONT FACE - LOEW NEXT ARABIC
   ============================================ */

@font-face {
    font-family: 'Loew Next Arabic';
    src: url('../fonts/Loew Next Arabic Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

/* ============================================
   GLOBAL STYLES
   ============================================ */

:root {
    --primary-color: #6366f1;
    --secondary-color: #ec4899;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-white: #ffffff;
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Loew Next Arabic', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    color: var(--text-dark);
    background: url('../images/Nexora-Lab-BG.jpg') center/cover no-repeat fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.6;
}

/* ============================================
   COMING SOON CONTAINER
   ============================================ */

.coming-soon-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: transparent;
}

.coming-soon-content {
    text-align: center;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border: none;
}

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

/* ============================================
   LOGO SECTION
   ============================================ */

.logo-section {
    margin-bottom: 2rem;
    background: transparent;
}

.logo-image {
    max-width: 350px;
    width: 100%;
    height: auto;
    object-fit: contain;
    animation: float 3s ease-in-out infinite;
    background: transparent;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ============================================
   COMING SOON TITLE
   ============================================ */

.coming-soon-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    animation: fadeIn 0.6s ease-out 0.2s both;
}

.coming-soon-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    animation: fadeIn 0.6s ease-out 0.4s both;
}

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

/* ============================================
   FEATURES SECTION
   ============================================ */

.coming-soon-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2.5rem 0;
    animation: fadeIn 0.6s ease-out 0.6s both;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.feature-icon {
    font-size: 2.5rem;
    display: block;
}

.feature-text {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ============================================
   EMAIL FORM
   ============================================ */

.email-form {
    display: flex;
    gap: 0.5rem;
    margin: 2rem 0;
    animation: fadeIn 0.6s ease-out 0.8s both;
}

.email-input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.email-input::placeholder {
    color: #d1d5db;
}

.subscribe-button {
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.subscribe-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.subscribe-button:active {
    transform: translateY(0);
}

/* ============================================
   SOCIAL LINKS
   ============================================ */

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    animation: fadeIn 0.6s ease-out 1s both;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 50%;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

/* ============================================
   BACK LINK
   ============================================ */

.back-link {
    margin-top: 2rem;
    animation: fadeIn 0.6s ease-out 1.2s both;
}

.back-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.back-link a:hover {
    color: var(--secondary-color);
    transform: translateX(-5px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .coming-soon-content {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .coming-soon-title {
        font-size: 2.5rem;
    }

    .coming-soon-subtitle {
        font-size: 1.1rem;
    }

    .coming-soon-features {
        flex-direction: column;
        gap: 1.5rem;
    }

    .email-form {
        flex-direction: column;
        gap: 0.75rem;
    }

    .email-input,
    .subscribe-button {
        width: 100%;
    }

    .logo-image {
        max-width: 120px;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .coming-soon-container {
        padding: 1rem;
    }

    .coming-soon-content {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }

    .coming-soon-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .coming-soon-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .coming-soon-features {
        gap: 1rem;
        margin: 1.5rem 0;
    }

    .feature-icon {
        font-size: 1.75rem;
    }

    .feature-text {
        font-size: 0.85rem;
    }

    .logo-image {
        max-width: 250px;
    }

    .email-form {
        margin: 1.5rem 0;
    }

    .social-links {
        margin: 1.5rem 0;
    }

    .back-link {
        margin-top: 1.5rem;
        font-size: 0.9rem;
    }
}

/* ============================================
   DARK MODE SUPPORT
   ============================================ */

@media (prefers-color-scheme: dark) {
    .coming-soon-content {
        color: #f9fafb;
    }

    :root {
        --text-dark: #f9fafb;
        --text-light: #d1d5db;
    }

    .coming-soon-subtitle {
        color: var(--text-light);
    }

    .email-input {
        background-color: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.1);
        color: #f9fafb;
    }

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

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
