/*
Theme Name: QuantumTech Coming Soon
Theme URI: https://quantumtech.com
Author: QuantumTech
Description: A custom Coming Soon theme for QuantumTech Repair.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

:root {
    --primary-color: #FFC107;
    /* Vibrant Yellow */
    --secondary-color: #FFD54F;
    /* Lighter Yellow */
    --bg-color: #050505;
    /* Deep Black */
    --card-bg: #121212;
    /* Dark Gray */
    --text-color: #ffffff;
    --text-muted: #b0b0b0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-image:
        radial-gradient(circle at 50% 50%, rgba(255, 193, 7, 0.05) 0%, transparent 50%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    position: relative;
    z-index: 1;
}

/* Tech Background Effect */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 193, 7, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 193, 7, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    pointer-events: none;
}

.logo-container {
    margin-bottom: 1.5rem;
    animation: float 6s ease-in-out infinite;
}

.logo {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(255, 193, 7, 0.3));
}

h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.coming-soon-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
    border-radius: 50px;
    margin-bottom: 2rem;
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.2);
    position: relative;
    overflow: hidden;
}

.coming-soon-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.4), transparent);
    animation: shine 3s infinite;
}

.description {
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: #e0e0e0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 193, 7, 0.1);
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--bg-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item i {
    color: var(--primary-color);
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

/* Responsive */
@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    .logo {
        width: 120px;
    }
}