/* ==========================================================================
   FONTS – LOKAL GEHOSTET (DATENSCHUTZKONFORM)
   ========================================================================== */
@font-face {
    font-family: 'Inter';
    src: url('../../fonts/inter-v20-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../../fonts/inter-v20-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../../fonts/inter-v20-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Playfair Display';
    src: url('../../fonts/playfair-display-v40-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Playfair Display';
    src: url('../../fonts/playfair-display-v40-latin-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Playfair Display';
    src: url('../../fonts/playfair-display-v40-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ==========================================================================
   RESET & BASIS
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0c14;
    color: #e0e0e0;
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    background: linear-gradient(135deg, #d4af37 0%, #f5e7b2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #d4af37;
    position: relative;
    display: inline-block;
}
h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #d4af37;
    border-radius: 3px;
}

.section {
    padding: 80px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}
.section:last-child {
    border-bottom: none;
}
.section-alt {
    background: rgba(212, 175, 55, 0.03);
}

/* ========== SKIP-LINK ========== */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: #d4af37;
    color: #0a0c14;
    padding: 8px 16px;
    z-index: 200;
    transition: top 0.2s;
    text-decoration: none;
    font-weight: 600;
}
.skip-link:focus {
    top: 0;
}

/* ========== HEADER ========== */
header {
    position: sticky;
    top: 0;
    background: rgba(10, 12, 20, 0.92);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding: 16px 0;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.logo {
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #d4af37;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}
.logo span {
    font-size: 0.75rem;
    color: #aaa;
    font-family: 'Inter', sans-serif;
}
.back-home {
    color: #aaa;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}
.back-home:hover {
    color: #d4af37;
}

/* ========== HERO ========== */
.hero-section {
    padding: 100px 0 60px;
    text-align: center;
    background: radial-gradient(circle at 70% 30%, #1a1f2e 0%, #0a0c14 100%);
}
.hero-overline {
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 0.5rem;
}
.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #ccc;
    font-style: italic;
}
.hero-section p {
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.85;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    background: #d4af37;
    color: #0a0c14;
    padding: 12px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-right: 1rem;
    margin-bottom: 0.5rem;
}
.btn:hover,
.btn:focus {
    background: #f5d77e;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
    outline: 2px solid #fff;
    outline-offset: 2px;
}
.btn-outline {
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
}
.btn-outline:hover,
.btn-outline:focus {
    background: #d4af37;
    color: #0a0c14;
}

/* ========== ABLAUF ========== */
.flow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.flow-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
}
.flow-step:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.05);
}
.flow-number {
    width: 48px;
    height: 48px;
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: #d4af37;
    margin: 0 auto 1rem;
    font-family: 'Playfair Display', serif;
}

/* ========== ANGEBOT ========== */
.angebot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}
.card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.05);
}
.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #d4af37;
}
.preis {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d4af37;
    margin: 1rem 0 0.5rem;
    font-family: 'Playfair Display', serif;
}
.dauer {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ========== FOOTER ========== */
footer {
    background: #05070c;
    padding: 40px 0 20px;
    margin-top: 40px;
}
.copyright {
    text-align: center;
    font-size: 0.8rem;
    color: #777;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 600px) {
    .hero-section .btn {
        margin-right: 0;
    }
}