/*
Theme Name: Arabic Digital Marketing Coming Soon
Theme URI: https://example.com
Author: Antigravity
Author URI: https://example.com
Description: A professional, modern, one-page Coming Soon theme for a Digital Marketing Agency.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ar-marketing-soon
*/

:root {
    --primary-color: #6C63FF;
    /* Vibrant Purple */
    --secondary-color: #2A2A72;
    /* Deep Blue */
    --accent-color: #009FFD;
    /* Bright Blue */
    --text-color: #ffffff;
    --bg-color: #0f0c29;
    /* Very dark purple/blue */
    --bg-gradient: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    --font-main: 'Cairo', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background: var(--bg-gradient);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    direction: rtl;
    overflow-x: hidden;
}

.container {
    max-width: 800px;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

/* Background Shapes & Icons */
.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.4;
    animation: floatShape 10s infinite alternate;
}

.shape-1 {
    top: -10%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: var(--primary-color);
}

.shape-2 {
    bottom: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: var(--secondary-color);
    animation-delay: -5s;
}

@keyframes floatShape {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, 30px);
    }
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.icon-float {
    position: absolute;
    color: rgba(255, 255, 255, 0.05);
    font-size: 3rem;
    animation: floatIcon 15s infinite linear;
}

.icon-1 {
    top: 15%;
    left: 10%;
    animation-duration: 20s;
    font-size: 4rem;
}

.icon-2 {
    top: 70%;
    left: 15%;
    animation-duration: 25s;
    animation-delay: -5s;
}

.icon-3 {
    top: 40%;
    right: 10%;
    animation-duration: 22s;
    font-size: 5rem;
}

.icon-4 {
    top: 80%;
    right: 20%;
    animation-duration: 18s;
    animation-delay: -10s;
}

.icon-5 {
    top: 10%;
    right: 30%;
    animation-duration: 28s;
    font-size: 2.5rem;
}

@keyframes floatIcon {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.05;
    }

    50% {
        opacity: 0.1;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0.05;
    }
}

/* Logo Area */
.logo {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

/* Main Content */
h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 800;
}

p.subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.teaser {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 3rem;
    font-weight: 700;
    background: rgba(0, 159, 253, 0.1);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(0, 159, 253, 0.2);
}

/* Countdown Timer */
.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.time-unit {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    min-width: 120px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.time-unit:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.time-unit span {
    display: block;
}

.number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
}

.label {
    font-size: 1rem;
    text-transform: uppercase;
    margin-top: 0.5rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
        width: 100%;
    }

    h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    p.subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .teaser {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .countdown {
        gap: 0.8rem;
        margin-bottom: 2rem;
    }

    .time-unit {
        min-width: 70px;
        padding: 0.8rem;
        flex: 1 1 40%;
        /* 2 items per row on small screens */
    }

    .number {
        font-size: 1.8rem;
    }

    .label {
        font-size: 0.8rem;
    }

    .logo {
        font-size: 2rem;
    }
}