/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base */
body {
    font-family: 'Inter', sans-serif;
    background-color: #0f0f0f;
    color: #f5f5f5;
    line-height: 1.6;
    animation: fadeIn 1.2s ease;
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Layout */
section {
    padding: 100px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.content {
    text-align: left;
}

.hero {
    text-align: center;
    padding-top: 140px;
}

/* Typography */
h1, h2 {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

h2 {
    font-size: 22px;
    margin-bottom: 40px;
}

p {
    color: #cccccc;
    margin-bottom: 20px;
}

/* Logo */
.logo {
    max-width: 220px;
    margin-bottom: 40px;
}

/* Button */
.button {
    display: inline-block;
    margin-top: 40px;
    padding: 14px 36px;
    border: 1px solid #f5f5f5;
    text-decoration: none;
    color: #f5f5f5;
    font-size: 14px;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.button:hover {
    background-color: #f5f5f5;
    color: #0f0f0f;
}

/* Divider */
.divider {
    height: 1px;
    background-color: #222;
    margin: 80px auto;
    max-width: 1000px;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    font-size: 14px;
    color: #666;
}

/* ===== Sticky Header ===== */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #222;
    z-index: 1000;
}

.nav-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo im Header */
.nav-logo {
    height: 100px;
    transition: 0.3s ease;
}

/* Navigation */
.nav a {
    margin-left: 30px;
    text-decoration: none;
    color: #f5f5f5;
    font-size: 14px;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.nav a:hover {
    opacity: 0.6;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* WhatsApp Button */
.whatsapp-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 36px;
    border: 1px solid #f5f5f5;
    background: transparent;
    color: #f5f5f5;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #f5f5f5;
    color: #0f0f0f;
}

/* Email Button */
.email-btn {
display: inline-block;
    margin-top: 20px;
    padding: 14px 36px;
    border: 1px solid #f5f5f5;
    background: transparent;
    color: #f5f5f5;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.email-btn:hover {
    background: #f5f5f5;
    color: #0f0f0f;
}
