
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #000;
    color: #f5f5f7;
}

.page {
    max-width: 1100px;
    margin: 40px auto 60px;
    padding: 0 20px;
}

/* Navigation */

.navbar {
    background: rgba(10, 10, 12, 0.95);
    border-bottom: 1px solid #1f1f23;
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
}

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

.nav-title {
    font-weight: 600;
    font-size: 16px;
}

.nav-links a {
    margin-left: 18px;
    font-size: 14px;
    color: #f5f5f7;
    text-decoration: none;
    opacity: 0.7;
}

.nav-links a:hover {
    opacity: 1;
}

.nav-links a.active {
    opacity: 1;
    font-weight: 600;
}

/* Hero-Bild */

.hero-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.75);
    margin-bottom: 26px;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    background: #000;
}

/* Header / Hero-Text */

header {
    margin-bottom: 32px;
}

header h1 {
    font-size: 32px;
    margin-bottom: 6px;
}

header p {
    font-size: 15px;
    color: #a1a1a6;
    margin: 0;
}

.section-title {
    margin: 24px 0 16px;
    font-size: 22px;
    border-left: 4px solid #0a84ff;
    padding-left: 10px;
}

/* Grid / Karten */

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.card {
    background: #1d1df1;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8);
}

/* Bild sauber zentriert */

.card-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.card-image img {
    height: 100%;
    width: auto;
    object-fit: cover;
}

.card-body {
    padding: 12px 14px 16px;
}

.card-body h3 {
    margin: 0 0 6px;
    font-size: 17px;
}

.card-body p {
    margin: 0;
    font-size: 14px;
    color: #a1a1a6;
}

/* Hero-Text / Buttons */

.hero {
    background: #050506;
    border-radius: 24px;
    padding: 22px 24px 24px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.7);
    margin-bottom: 32px;
}

.hero h1 {
    font-size: 30px;
    margin-bottom: 8px;
}

.hero p {
    margin: 0 0 16px;
    color: #a1a1a6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    border-radius: 999px;
    font-size: 14px;
    border: none;
    text-decoration: none;
    cursor: pointer;
}

.btn-primary {
    background: #0071e3;
    color: white;
}

.btn-primary:hover {
    background: #0a84ff;
}

.btn-secondary {
    background: #1d1d1f;
    color: #f5f5f7;
}

.btn-secondary:hover {
    background: #2a2a30;
}

/* Kontakt */

.kontakt-container {
    background: #1d1d1f;
    padding: 24px 20px 26px;
    border-radius: 18px;
    margin-top: 40px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.kontakt-container h2 {
    margin: 0 0 8px;
}

.kontakt-container p {
    margin: 0 0 14px;
    font-size: 14px;
    color: #a1a1a6;
}

.kontakt-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.kontakt-form label {
    font-size: 14px;
    font-weight: 500;
}

.kontakt-form input,
.kontakt-form textarea {
    padding: 10px 11px;
    border-radius: 10px;
    border: none;
    background: #2c2c2e;
    color: #ffffff;
    font-size: 14px;
}

.kontakt-form textarea {
    resize: vertical;
    min-height: 110px;
}

.kontakt-form button {
    margin-top: 4px;
    padding: 12px;
    background: #0071e3;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    cursor: pointer;
}

.kontakt-form button:hover {
    background: #0a84ff;
}

/* Footer */

footer {
    margin-top: 32px;
    font-size: 12px;
    color: #6e6e73;
    text-align: center;
}

a {
    color: #0a84ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .page {
        margin-top: 24px;
    }

    .hero h1 {
        font-size: 24px;
    }
}
