:root {
    --primary: #1a2a3a; /* Tiefes Dunkelblau */
    --accent: #d4af37;  /* Sanftes Gold */
    --text: #333;
    --bg: #fdfaf7;     /* Warmes Off-White */
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

h1, h2 {
    font-family: 'Playfair Display', serif;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
}

.dot { color: var(--accent); }

.slogan {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 300;
}

.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(26,42,58,0.6), rgba(26,42,58,0.6)), url('hero-image.jpg') center/cover;
    color: white;
    padding: 0 20px;
}

.hero h1 { font-size: 3rem; margin-bottom: 20px; }

.cta-button {
    background: var(--accent);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 80px 5%;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.feature-card:hover { transform: translateY(-10px); }

/* Mobile Optimierung */
@media (max-width: 768px) {
    .nav-links { display: none; } /* Hier später ein Burger-Menü */
    .hero h1 { font-size: 2rem; }
}
.read-more-link {
    display: inline-block;
    margin-top: 15px;
    color: #d4af37; /* Gold-Ton */
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.read-more-link:hover {
    text-decoration: underline;
    transform: translateX(5px);
}

.feature-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}