/* GRUNDLAGEN */
:root {
    --gold: #d4af37;
    --gold-light: #f9e29b;
    --white: #ffffff;
    --black: #0a0a0a;
}

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

body {
    background: var(--white);
    font-family: 'Montserrat', sans-serif;
    color: var(--black);
    overflow-x: hidden;
}

/* NAVIGATION */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 60px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.logo { font-weight: 700; letter-spacing: 5px; font-size: 1.2rem; }
.logo span { color: var(--gold); }

.fancy-btn {
    text-decoration: none;
    color: var(--black);
    border: 1px solid var(--gold);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    transition: 0.4s;
}

.fancy-btn:hover {
    background: var(--gold);
    color: white;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* HERO SECTION */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at center, #fff 0%, #f0f0f0 100%);
}

.script-font {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(3rem, 10vw, 6rem);
    color: var(--gold);
}

.modern-font {
    letter-spacing: clamp(10px, 2vw, 20px);
    font-weight: 200;
    font-size: clamp(1rem, 3vw, 2rem);
    margin-top: -15px;
}

.gold-text { font-weight: 700; color: var(--gold); }

/* KAMERA GADGET */
.camera-trigger {
    margin-top: 60px;
    cursor: pointer;
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.camera-trigger:hover { transform: scale(1.1) rotate(-2deg); }

.camera-body {
    width: 200px;
    height: 130px;
    background: #111;
    border: 2px solid var(--gold);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 30px 50px rgba(0,0,0,0.2);
}

.lens-outer {
    width: 80px; height: 80px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: #000;
}

.lens-inner {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle, #333, #000);
    margin: 17px auto;
}

.camera-flash {
    width: 30px; height: 15px;
    background: #333;
    position: absolute; top: 15px; right: 20px;
    border-radius: 3px;
}

.instruction {
    margin-top: 20px;
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 700;
}

/* GALERIE OVERLAY */
.gallery-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.98);
    z-index: 1000;
    display: flex;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

.gallery-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.close-btn {
    position: absolute;
    top: 40px; right: 40px;
    background: none; border: 1px solid var(--gold);
    color: var(--gold); padding: 10px 25px;
    cursor: pointer; border-radius: 50px;
    z-index: 1001;
}

.scroll-wrapper {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 0 10vw;
}

.scroll-wrapper::-webkit-scrollbar { display: none; }

.film-strip {
    display: flex;
    gap: 80px;
}

.photo-card {
    flex: 0 0 auto;
    width: 70vw;
    max-width: 800px;
    background: white;
    padding: 15px 15px 60px 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transform: rotate(-1deg);
}

.photo-card img { width: 100%; height: 450px; object-fit: cover; }

.photo-caption {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    text-align: center;
    color: #333;
    margin-top: 15px;
}

/* KONTAKT SEKTION */
.contact-section {
    padding: 150px 20px;
    background: #fdfdfd;
    text-align: center;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-row {
    display: flex;
    gap: 20px;
}

input, textarea {
    width: 100%;
    padding: 18px;
    border: none;
    border-bottom: 1px solid #ddd;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    transition: 0.3s;
}

input:focus, textarea:focus { border-color: var(--gold); }

.submit-gold {
    background: var(--gold);
    color: white;
    border: none;
    padding: 20px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 3px;
    cursor: pointer;
    transition: 0.4s;
}

.submit-gold:hover {
    background: var(--black);
    transform: translateY(-5px);
}

footer {
    padding: 40px;
    font-size: 10px;
    letter-spacing: 2px;
    text-align: center;
    color: #999;
}

/* MOBILE ANPASSUNG */
@media (max-width: 768px) {
    .input-row { flex-direction: column; }
    .nav-right { display: none; }
    .photo-card { width: 85vw; }
    nav { padding: 20px; }
}
