/* --- GRUNDLAGEN --- */
:root {
    --bg-dark: #121214;
    --bg-card: #1e1e24;
    --gold: #d4af37;
    --gold-dark: #b8860b;
    --text-main: #e0e0e0;
    --text-muted: #888;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .logo span {
    font-family: 'Fondamento', cursive;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

a {
    text-decoration: none;
}

/* --- NAVIGATION --- */
.navbar {
    background-color: #1a1a20;
    border-bottom: 2px solid #000;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
}

.logo img {
    height: 40px;
}

/* --- BUTTONS --- */
.btn-primary, .btn-nav {
    background-color: #8b5a2b;
    color: #fff;
    border: 2px solid #000;
    padding: 10px 20px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.2), 0 4px 0 #000;
    transition: all 0.1s ease;
    font-family: 'Fondamento', cursive;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    padding: 15px 30px;
    font-size: 1.2rem;
}

.btn-primary:active, .btn-nav:active {
    transform: translateY(4px);
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.1), 0 0 0 #000;
}

.btn-secondary {
    color: var(--gold);
    font-weight: bold;
    padding: 15px 20px;
    display: inline-block;
    transition: color 0.3s;
}

.btn-secondary:hover {
    color: #fff;
}

/* --- HERO SECTION --- */
.hero {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 50px;
    min-height: 70vh;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.mockup-frame {
    background: var(--bg-card);
    border: 4px solid #000;
    border-radius: 20px;
    width: 300px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.8), 0 20px 50px rgba(0,0,0,0.6);
    position: relative;
    overflow: hidden;
}

.mockup-frame p {
    position: absolute;
    color: #555;
    text-align: center;
    padding: 20px;
}

.mockup-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}

/* --- FEATURES --- */
.features {
    background-color: #161619;
    padding: 80px 20px;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
}

.divider {
    width: 100px;
    height: 3px;
    background-color: var(--gold-dark);
    margin: 10px auto 0 auto;
}

.feature-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--bg-card);
    border: 2px solid #000;
    padding: 30px;
    text-align: center;
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.05), 0 8px 20px rgba(0,0,0,0.5);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-dark);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.5));
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-muted);
}

/* --- FOOTER CTA --- */
.cta-footer {
    text-align: center;
    padding: 80px 20px;
    background: radial-gradient(circle at center, #2a2a35 0%, var(--bg-dark) 70%);
}

.cta-footer h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-footer p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.footer-bottom {
    margin-top: 60px;
    color: #444;
    font-size: 0.9rem;
}

/* --- RESPONSIVE DESIGN (Für Handys) --- */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        justify-content: center;
    }
    
    .mockup-frame {
        width: 260px;
        height: 520px;
    }
}