/*
Theme Name: Velion Productions Munich
Theme URI: http://example.com/velion-productions
Author: Creative Studio
Description: A futuristic, fully customizable WordPress theme for Velion Productions in Munich.
Version: 1.3
License: GNU General Public License v2 or later
Text Domain: velion-productions
*/

:root {
    --bg-base: #07090f;
    --bg-surface: #111522;
    --accent-cyan: #00f3ff;
    --accent-purple: #9d00ff;
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;
    --glass-bg: rgba(17, 21, 34, 0.65);
    --glass-border: rgba(0, 243, 255, 0.25);
}

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

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--bg-base);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .logo {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

a { color: var(--accent-cyan); text-decoration: none; }
a:hover { color: var(--accent-purple); }

/* Header & Navigation */
.site-header { position: relative; width: 100%; z-index: 100; }

.navbar {
    position: absolute; top: 0; width: 100%; padding: 2.5rem 5%;
    display: flex; justify-content: space-between; align-items: center;
    background: linear-gradient(to bottom, rgba(7, 9, 15, 0.95), rgba(7, 9, 15, 0));
}

.logo a {
    font-size: 1.8rem; font-weight: 900; color: var(--text-main);
    text-transform: uppercase; text-shadow: 0 0 15px var(--accent-cyan);
    letter-spacing: 4px;
}
.logo span { color: var(--accent-cyan); }

.nav-links { list-style: none; display: flex; gap: 2.5rem; }
.nav-links a { font-family: 'Orbitron', sans-serif; font-weight: 600; font-size: 1rem; color: var(--text-main); text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s ease; }
.nav-links a:hover { color: var(--accent-cyan); text-shadow: 0 0 12px var(--accent-cyan); }

/* Enhanced Hero Section */
.hero {
    height: 100vh; display: flex; align-items: center; justify-content: center;
    text-align: center; background-size: cover; background-position: center; position: relative;
    background-attachment: fixed; /* Parallax effect */
}

/* Deepened gradient overlay and scanline texture for a premium tech feel */
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(7, 9, 15, 0.4) 0%, rgba(7, 9, 15, 0.95) 100%),
                linear-gradient(rgba(0,0,0,0) 50%, rgba(0, 0, 0, 0.25) 50%);
    background-size: 100% 100%, 100% 4px;
    z-index: 1;
}

.hero-content { position: relative; z-index: 2; max-width: 1000px; padding: 0 20px; }

.hero h1 {
    font-size: 5rem; margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; 
    text-transform: uppercase; font-weight: 900;
    text-shadow: 0 0 40px rgba(0, 243, 255, 0.3);
    line-height: 1.1;
}

.hero p { 
    font-size: 1.6rem; color: var(--text-main); margin-bottom: 3.5rem; 
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    font-weight: 500; letter-spacing: 1px;
}

.btn-glow {
    display: inline-block; padding: 1.2rem 3rem; font-family: 'Orbitron', sans-serif;
    font-weight: 900; font-size: 1.1rem; color: var(--bg-base); background: var(--accent-cyan);
    text-transform: uppercase; border-radius: 2px; 
    box-shadow: 0 0 20px var(--accent-cyan), inset 0 0 10px rgba(255,255,255,0.5);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    letter-spacing: 2px;
}
.btn-glow:hover { 
    background: #fff; box-shadow: 0 0 35px var(--accent-cyan); 
    transform: translateY(-4px) scale(1.02); color: var(--bg-base); 
}

/* Standard Page Layout */
.page-container {
    max-width: 1200px; margin: 150px auto 4rem; padding: 0 5%;
}
.page-container img { max-width: 100%; height: auto; border-radius: 8px; margin: 1rem 0; }

/* Services Section */
.services-section { padding: 8rem 5%; max-width: 1400px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 5rem; }
.section-header h2 {
    font-size: 3rem; color: var(--text-main); display: inline-block; position: relative;
}
.section-header h2::after {
    content: ''; position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%);
    width: 80px; height: 4px; background: var(--accent-purple); box-shadow: 0 0 15px var(--accent-purple);
}

.services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 3rem;
}
.service-card {
    background: var(--glass-bg); backdrop-filter: blur(12px); border: 1px solid var(--glass-border);
    padding: 3rem 2.5rem; border-radius: 4px; transition: all 0.4s ease; position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0;
    background: var(--accent-cyan); transition: height 0.4s ease;
    box-shadow: 0 0 10px var(--accent-cyan);
}
.service-card:hover { transform: translateY(-8px); border-color: rgba(0, 243, 255, 0.5); box-shadow: 0 15px 40px rgba(0, 243, 255, 0.15); }
.service-card:hover::before { height: 100%; }
.icon-wrapper { font-size: 3rem; color: var(--accent-purple); margin-bottom: 1.5rem; display: inline-block; text-shadow: 0 0 20px rgba(157, 0, 255, 0.6); }
.service-card h3 { font-size: 1.8rem; color: var(--text-main); margin-bottom: 1rem; }
.service-card p { color: var(--text-muted); font-size: 1.15rem; }

/* Dynamic Editor Content Support */
.editor-content { margin-top: 4rem; }
.aligncenter { display: block; margin: 0 auto; }
.alignleft { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }

/* Footer */
.site-footer {
    background: var(--bg-surface); border-top: 1px solid var(--glass-border);
    text-align: center; padding: 4rem 5%; margin-top: 4rem; clear: both;
}
.site-footer p { color: var(--text-muted); font-family: 'Orbitron', sans-serif; font-size: 1rem; letter-spacing: 2px; }

/* =========================================
   Contact Page & Form Styles
   ========================================= */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

/* Form Elements */
.velion-form .form-group {
    margin-bottom: 1.5rem;
}

.velion-form label {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.velion-form input,
.velion-form textarea {
    width: 100%;
    background: rgba(7, 9, 15, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    padding: 1rem;
    color: var(--text-main);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

/* Glowing Focus State */
.velion-form input:focus,
.velion-form textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
    background: rgba(17, 21, 34, 0.8);
}

/* Response Messages */
.form-response {
    padding: 1rem;
    margin-bottom: 2rem;
    border-radius: 4px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    text-align: center;
    letter-spacing: 1px;
}

.form-response.success {
    background: rgba(0, 255, 128, 0.1);
    border: 1px solid #00ff80;
    color: #00ff80;
    box-shadow: 0 0 10px rgba(0, 255, 128, 0.2);
}

.form-response.error {
    background: rgba(255, 0, 85, 0.1);
    border: 1px solid #ff0055;
    color: #ff0055;
    box-shadow: 0 0 10px rgba(255, 0, 85, 0.2);
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .hero h1 { font-size: 3.5rem; }
    .hero p { font-size: 1.3rem; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.8rem; }
    .navbar { flex-direction: column; gap: 1rem; position: relative; background: var(--bg-base); padding: 1.5rem 5%; }
    .page-container { margin-top: 4rem; }
    .nav-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }
}
