/* --- VARS & RESET --- */
:root {
    --bg-dark: #0B1321;
    --bg-light: #F9F8F6;
    --text-main: #1C1C1C;
    --text-white: #FFFFFF;
    --gold: #C6A87C;
    --gold-hover: #E0C89F;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-light);
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* --- TYPOGRAPHY --- */
h1, h2, h3 { font-family: var(--font-heading); font-weight: 400; }
h1 { font-size: 3.5rem; letter-spacing: 2px; text-transform: uppercase; }
h2 { font-size: 2.5rem; color: var(--bg-dark); margin-bottom: 1rem; }
h3 { font-size: 1.5rem; color: var(--gold); margin-bottom: 0.5rem; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- NAVIGATION --- */
header {
    background-color: var(--bg-dark);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.nav-links a {
    color: var(--text-white);
    margin-left: 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover, .nav-links a.active { color: var(--gold); }

/* --- HERO SECTION --- */
.hero {
    height: 90vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax Effekt */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-white);
    position: relative;
}

/* Dunkles Overlay über dem Bild für Lesbarkeit */
.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(11, 19, 33, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    display: block;
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--gold);
    color: var(--bg-dark);
}

.btn-dark {
    background-color: var(--bg-dark);
    color: var(--gold);
    border: none;
}

/* --- SECTIONS --- */
.section-padding { padding: 100px 0; }
.bg-dark { background-color: var(--bg-dark); color: var(--text-white); }
.bg-dark h2 { color: var(--text-white); }

.text-center { text-align: center; }

/* Grid System */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-card {
    padding: 30px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-bottom: 3px solid var(--gold);
}

.apt-card {
    background: #fff;
    border: 1px solid #eee;
}
.apt-info { padding: 30px;

color: var(--text-main);}



.apt-specs { display: flex; justify-content: space-between; border-top: 1px solid #eee; padding-top: 20px; margin-top: 20px; font-size: 0.9rem; color: #666; }

/* --- CONTACT FORM --- */
.contact-split {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-form, .contact-info { flex: 1; min-width: 300px; }

input, select, textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    background: #fdfdfd;
    font-family: var(--font-body);
}

input:focus, textarea:focus { outline: 1px solid var(--gold); }

/* --- FOOTER --- */
footer {
    background-color: var(--bg-dark);
    color: #666;
    text-align: center;
    padding: 50px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
}

footer a { margin: 0 10px; }