/*
Theme Name: Unlytical Coming Soon
Theme URI: https://unlytical.com
Author: Unlytical
Author URI: https://unlytical.com
Description: SOON 
Version: 1.0
Text Domain: unlytical-coming-soon
*/

:root {
    --color-primary-gold: #BFA575;
    --bg-primary: #0D0D0D;
    --text-light: #ffffff;
    --font-heading: 'Rakkas', serif;
    --font-body: 'Tajawal', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-light);
    overflow: hidden;
    /* Prevent scrolling */
}

/* Hero Section with Video */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(13, 13, 13, 0.8),
            rgba(13, 13, 13, 0.95));
}

/* Center Content */
.center-content {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    animation: fadeIn 2s ease-in-out;
}

.center-content h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--text-light);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.center-content h1 span {
    color: var(--color-primary-gold);
    display: inline-block;
    animation: pulse 2s infinite ease-in-out;
}

/* Glass effect container */
.glass-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(191, 165, 117, 0.2);
    padding: 3rem 4rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    }

    50% {
        transform: scale(1.05);
        text-shadow: 0 4px 30px rgba(191, 165, 117, 0.6);
    }

    100% {
        transform: scale(1);
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    }
}

@media (max-width: 768px) {
    .center-content h1 {
        font-size: 2.5rem;
    }

    .glass-box {
        padding: 2rem;
        margin: 0 1rem;
    }
}