:root {
    --gold: #c5a059;
    --dark: #0f141a;
    --light: #f4f4f4;
    --gray: #2c3e50;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Georgia', serif; background: var(--dark); color: var(--light); line-height: 1.6; }

.container { max-width: 1100px; margin: auto; padding: 0 20px; }

/* Hero Sektion mit großem Bild */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1493934558415-9d19f0b2b4d2?q=80&w=2000') no-repeat center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    text-align: center;
}

.overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); }

nav { position: absolute; top: 40px; width: 100%; display: flex; justify-content: space-between; padding: 0 5%; z-index: 10; letter-spacing: 2px; }

.content { position: relative; z-index: 2; padding: 0 10%; }
h1 { font-size: 3.5rem; margin-bottom: 20px; font-weight: normal; }
p { font-size: 1.4rem; color: #ccc; margin-bottom: 30px; }

.btn {
    padding: 15px 35px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    transition: 0.3s;
}
.btn:hover { background: var(--gold); color: #000; }

/* Features Grid */
.features-grid { padding: 100px 0; background: #fff; color: #333; text-align: center; }
.features-grid h2 { margin-bottom: 50px; font-size: 2.5rem; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.item h3 { color: var(--gold); margin-bottom: 15px; }

/* Bridge Sektion */
.bridge { 
    padding: 100px 0; 
    background: url('https://images.unsplash.com/photo-1454165833767-027508496b60?q=80&w=2000') no-repeat center/cover;
    position: relative;
}
.text-block { background: rgba(15, 20, 26, 0.9); padding: 50px; max-width: 600px; border-left: 4px solid var(--gold); }

/* Footer */
footer { padding: 40px; text-align: center; font-size: 0.8rem; color: #666; border-top: 1px solid #222; }

@media (max-width: 768px) { h1 { font-size: 2rem; } }