/*
Theme Name: Maor Authority Theme
Theme URI: https://example.com
Author: Maor
Description: Landing page theme for Maor Authority
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: maor-authority
Domain Path: /languages
Requires at least: 5.0
Requires PHP: 7.4
*/

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-black: #000000;
    --color-gold: #d4af37;
    --color-red: #e63946;
    --font-family: 'Heebo', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background: var(--color-black);
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ==================== X-RAY SCANNER ==================== */
.xray-scanner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(230, 57, 70, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: overlay;
    animation: scannerPulse 3s ease-in-out infinite;
}

@keyframes scannerPulse {
    0%, 100% {
        background: radial-gradient(circle at center, transparent 0%, rgba(230, 57, 70, 0.05) 100%);
    }
    50% {
        background: radial-gradient(circle at center, transparent 0%, rgba(230, 57, 70, 0.15) 100%);
    }
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.door-light {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: doorLightGlow 4s ease-in-out infinite;
}

@keyframes doorLightGlow {
    0%, 100% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0.8;
        transform: translateX(-50%) translateY(30px);
    }
}

.smoke-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.02) 4px
    );
    animation: smokeFlow 20s linear infinite;
    opacity: 0.3;
}

@keyframes smokeFlow {
    0% { transform: translateX(0); }
    100% { transform: translateX(1000px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 50%, #b8941e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #d0d0d0;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-button {
    position: relative;
    padding: 20px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    border: 2px solid var(--color-red);
    background: transparent;
    color: #ffffff;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-family);
}

.cta-button:hover {
    background: rgba(230, 57, 70, 0.1);
    box-shadow: 0 0 30px rgba(230, 57, 70, 0.5);
    transform: scale(1.05);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid var(--color-gold);
    border-radius: 15px;
    position: relative;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}