:root {
    --bg-black: #0a0a0a;
    --gold-primary: #D4AF37;
    --gold-light: #F9E27D;
    --laser-red: #ff0000;
    --text-gray: #a0a0a0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
    background-color: var(--bg-black); 
    color: white; 
    font-family: 'Inter', sans-serif; 
    overflow-x: hidden; 
    cursor: crosshair; 
}

/* --- Navigation --- */
nav {
    position: fixed;
    top: 0; width: 100%; padding: 1.5rem 5%;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(10, 10, 10, 0.85); backdrop-filter: blur(20px);
    z-index: 2000; border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}
.logo { 
    font-family: 'Space Mono', monospace; 
    font-weight: 700; 
    color: var(--gold-primary); 
    text-decoration: none; 
    letter-spacing: 4px; 
    z-index: 2100;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.nav-links { display: flex; gap: 2rem; }
.nav-links a { 
    color: white; 
    text-decoration: none; 
    font-size: 0.7rem; 
    text-transform: uppercase; 
    letter-spacing: 3px; 
    transition: 0.3s; 
    font-weight: 600; 
    opacity: 0.8;
}
.nav-links a:hover { color: var(--gold-primary); opacity: 1; }

.burger { 
    display: none; 
    flex-direction: column; 
    justify-content: space-between;
    width: 30px; height: 18px;
    cursor: pointer; z-index: 2100;
}
.burger span { 
    display: block; width: 100%; height: 2px; 
    background: var(--gold-primary); 
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6); 
}
.burger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.burger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav {
    position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
    background: var(--bg-black); display: flex; flex-direction: column;
    justify-content: center; align-items: center; gap: 3rem;
    transition: 0.6s cubic-bezier(0.77, 0, 0.175, 1); z-index: 1500; opacity: 0;
}
.mobile-nav.open { right: 0; opacity: 1; }
.mobile-nav a { font-family: 'Syncopate'; font-size: 1.5rem; color: white; text-decoration: none; text-transform: uppercase; letter-spacing: 6px; }

.laser-pointer { position: fixed; width: 1px; height: 100vh; background: var(--laser-red); opacity: 0.2; top: 0; pointer-events: none; z-index: 3000; transition: left 0.1s ease-out; }

/* --- HERO --- */
.hero {
    height: 100vh;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center; padding: 0 5%; position: relative;
    background: url('images/image1.png') no-repeat center center/cover;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
}
.hero-content { 
    z-index: 2; 
    width: 100%;
    max-width: 1200px;
}

.hero h1 {
    font-family: 'Syncopate', sans-serif;
    white-space: nowrap; 
    font-size: clamp(0.5rem, 2.8vw, 2.2rem); 
    font-weight: 400; 
    letter-spacing: clamp(5px, 2.5vw, 15px);
    color: var(--gold-light); text-transform: uppercase;
    margin-bottom: 1rem; opacity: 0.8;
    animation: fadeInDown 1.5s ease-out;
}
.hero .brand-title {
    font-family: 'Space Mono', monospace;
    font-size: clamp(2.2rem, 12vw, 7.5rem);
    font-weight: 700; line-height: 1.1;
    background: linear-gradient(to bottom, #fff 30%, var(--gold-primary) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    margin-bottom: 2.5rem; letter-spacing: -2px;
    animation: scaleIn 1.2s ease-out;
    white-space: nowrap;
    text-transform: uppercase;
}
.hero p {
    font-size: clamp(0.6rem, 2vw, 1rem);
    letter-spacing: clamp(2px, 1vw, 5px);
    color: #fff; margin-bottom: 4rem; max-width: 90%;
    margin-left: auto; margin-right: auto; line-height: 2;
    font-weight: 300; opacity: 0.8;
}

.btn-gold {
    padding: 1.2rem 2.5rem; border: 1px solid var(--gold-primary);
    background: rgba(212, 175, 55, 0.03); color: var(--gold-primary);
    font-family: 'Syncopate'; font-size: 0.7rem; letter-spacing: 4px;
    text-decoration: none; transition: all 0.5s ease; backdrop-filter: blur(5px);
    display: inline-block;
    white-space: nowrap;
}
.btn-gold:hover {
    background: var(--gold-primary); color: #000;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.4); transform: translateY(-5px);
}

/* --- Sections & Content --- */
.section-header { padding: 120px 8% 40px; }
.section-header span { color: var(--laser-red); font-family: monospace; font-size: 0.8rem; letter-spacing: 5px; }
.section-header h2 { font-family: 'Syncopate'; font-size: clamp(1.5rem, 5vw, 2.5rem); color: var(--gold-primary); margin-top: 15px; letter-spacing: 2px; }

.content-block { padding: 40px 8% 120px; display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.content-text h3 { font-family: 'Syncopate'; font-size: 1.1rem; color: #fff; margin-bottom: 20px; letter-spacing: 2px; }
.content-text p { color: var(--text-gray); line-height: 1.8; font-size: 1.05rem; margin-bottom: 20px; font-weight: 300; }
.content-text ul { list-style: none; color: var(--gold-light); font-size: 0.9rem; letter-spacing: 1px; margin-top: 20px; }
.content-text li { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.content-text li::before { content: '>'; color: var(--laser-red); font-weight: bold; }

.img-container { position: relative; width: 100%; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.05); }
.img-container img { width: 100%; display: block; transition: 0.8s cubic-bezier(0.2, 1, 0.3, 1); }
.scan-line { position: absolute; top: -100%; left: 0; width: 100%; height: 2px; background: var(--laser-red); box-shadow: 0 0 20px var(--laser-red); z-index: 10; display: none; }

.img-container:hover .scan-line,
.gallery-item:hover .scan-line { display: block; animation: scanAnim 3s linear infinite; }
.img-container:hover img { transform: scale(1.05); }

@keyframes scanAnim { 0% { top: 0%; } 100% { top: 100%; } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 0.8; transform: translateY(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }

/* --- GALLERY --- */
#galerie { padding-bottom: 80px; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    padding: 0 8%;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    cursor: pointer;
    aspect-ratio: 1 / 1;
    background: #050505;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1), filter 0.5s;
    filter: grayscale(0.6) brightness(0.7);
}
.gallery-item:hover img {
    transform: scale(1.08);
    filter: grayscale(0) brightness(1);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
    color: var(--gold-primary); font-family: 'Syncopate';
    font-size: 2.5rem; font-weight: 300;
}

/* --- GALLERY LIGHTBOX --- */
.lightbox-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(5, 5, 5, 0.95); backdrop-filter: blur(15px);
    display: flex; justify-content: center; align-items: center;
    z-index: 5000; opacity: 0; visibility: hidden;
    transition: 0.4s ease;
}
.lightbox-overlay.active { opacity: 1; visibility: visible; }

.lightbox-img-container { position: relative; max-width: 80%; max-height: 90vh; }
.lightbox-overlay img {
    max-width: 100%; max-height: 90vh; border: 1px solid var(--gold-primary);
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    transform: scale(0.95); transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}
.lightbox-overlay.active img { transform: scale(1); }

.lightbox-close {
    position: absolute; top: -40px; right: 0;
    color: var(--text-gray); font-size: 2.5rem; cursor: pointer;
    transition: 0.3s; line-height: 1; background: none; border: none;
}
.lightbox-close:hover { color: var(--laser-red); }

.lightbox-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: none; border: none; color: rgba(255, 255, 255, 0.5);
    font-size: 4rem; cursor: pointer; padding: 20px; transition: 0.3s;
    z-index: 5010; font-family: monospace;
}
.lightbox-nav:hover { color: var(--gold-primary); }
.lightbox-nav.prev { left: 2%; }
.lightbox-nav.next { right: 2%; }

/* --- CONTACT DASHBOARD --- */
.contact-section { padding: 120px 8%; background: #050505; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: stretch; }
.contact-image-box { position: relative; overflow: hidden; border-left: 2px solid var(--gold-primary); }
.studio-image { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) brightness(0.7); transition: 1.2s; }
.contact-image-box:hover .studio-image { filter: grayscale(0.2) brightness(1); transform: scale(1.05); }

.form-container { background: #0a0a0a; padding: 60px; border: 1px solid rgba(212, 175, 55, 0.1); display: flex; flex-direction: column; justify-content: center; }
.form-container h2 { font-family: 'Syncopate'; color: var(--gold-primary); margin-bottom: 20px; letter-spacing: 5px; font-size: 1.8rem; }

.contact-details { display: flex; flex-direction: column; gap: 2rem; margin-top: 1rem; }
.contact-item { display: flex; flex-direction: column; gap: 8px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 1.5rem; }
.contact-item:last-child { border-bottom: none; padding-bottom: 0; }

.contact-label { font-size: 0.75rem; color: var(--laser-red); font-family: monospace; letter-spacing: 3px; text-transform: uppercase; }
.contact-value { font-size: 1.2rem; color: white; text-decoration: none; font-weight: 300; transition: color 0.3s; }

.contact-value.highlight { color: var(--gold-primary); font-family: 'Syncopate'; font-size: 1rem; letter-spacing: 2px; }
.contact-value.highlight:hover { color: var(--gold-light); text-shadow: 0 0 15px rgba(212, 175, 55, 0.3); }

.social-links { display: flex; gap: 2rem; margin-top: 5px; }
.contact-value.link { font-family: 'Syncopate'; font-size: 0.85rem; color: var(--text-gray); letter-spacing: 1px; }
.contact-value.link:hover { color: white; }

/* --- FOOTER & MODAL --- */
footer { padding: 50px 8%; border-top: 1px solid #111; display: flex; justify-content: space-between; font-size: 0.7rem; color: var(--text-gray); letter-spacing: 2px; }
.footer-link { color: inherit; text-decoration: none; transition: 0.3s; cursor: pointer; }
.footer-link:hover { color: var(--gold-primary); }

.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(10, 10, 10, 0.85); backdrop-filter: blur(10px);
    display: flex; justify-content: center; align-items: center;
    z-index: 4000; opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0.4s ease;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content {
    background: #0f0f0f; border: 1px solid var(--gold-primary);
    padding: 50px; max-width: 700px; width: 90%; max-height: 85vh;
    overflow-y: auto; position: relative; transform: translateY(30px); transition: transform 0.4s ease;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.modal-overlay.active .modal-content { transform: translateY(0); }
.modal-close {
    position: absolute; top: 20px; right: 25px; background: none; border: none;
    color: var(--text-gray); font-size: 2rem; cursor: pointer; transition: 0.3s;
    font-family: 'Inter', sans-serif; line-height: 1;
}
.modal-close:hover { color: var(--laser-red); transform: scale(1.1); }
.modal-content h2 { font-family: 'Syncopate'; color: var(--gold-primary); margin-bottom: 30px; font-size: 1.5rem; letter-spacing: 3px; }
.impressum-text p { color: var(--text-gray); font-size: 0.95rem; line-height: 1.8; margin-bottom: 20px; }
.impressum-text strong { color: white; display: block; margin-bottom: 5px; font-weight: 600; }

@media (max-width: 900px) {
    .nav-links { display: none; }
    .burger { display: flex; }
    .content-block, .contact-section { grid-template-columns: 1fr; gap: 40px; }
    .contact-image-box { height: 350px; order: -1; }
    .hero h1 { letter-spacing: 8px; }
    footer { flex-direction: column; gap: 20px; align-items: center; text-align: center; }
    .modal-content { padding: 30px; }
    .gallery-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; }
    .lightbox-close { top: -30px; }
    
    .lightbox-nav { font-size: 2.5rem; padding: 10px; }
    .lightbox-nav.prev { left: 0; }
    .lightbox-nav.next { right: 0; }
    .lightbox-img-container { max-width: 95%; }
    .social-links { flex-direction: column; gap: 10px; }
}