/* ================= BODY & GLOBAL ================= */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #111; /* Dunkler Hintergrund */
    color: #eee; /* Hellgrau statt grellweiß */
}

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    color: #fff;
    margin: 0;
}

/* ================= HEADER ================= */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: #1a1a1a;
    border-bottom: 1px solid #333;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
    border: 2px solid #ff0055;
}

.logo-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff0055;
}

nav a {
    color: #eee;
    margin-left: 20px;
    transition: color 0.2s;
}

nav a:hover {
    color: #ff3388;
}

/* ================= BUTTONS ================= */
.btn {
    background: #ff0055;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.2s ease;
    box-shadow: 0 0 10px #ff0055;
}

.btn:hover {
    background: #ff3388;
    box-shadow: 0 0 20px #ff3388;
}

/* ================= INTRO TEXT ================= */
.intro-text {
    text-align: center;
    padding: 50px 20px;
}

.intro-text p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 30px;
}

/* ================= PACKAGE CARDS ================= */
.packages-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.package-card {
    background: #1e1e1e;
    border-radius: 12px;
    width: 250px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(255,0,85,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    position: relative;
    color: #eee;
}

.package-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255,0,85,0.6);
}

.package-card h3 {
    color: #ff66aa;
    margin-bottom: 10px;
}

.package-price {
    font-weight: bold;
    margin-bottom: 15px;
    color: #ff99bb;
}

.package-details {
    display: none;
    text-align: center;
    font-size: 0.9rem;
    margin-top: 10px;
    color: #ccc;
}

.package-card ul {
    padding-left: 20px;
}

.package-card .btn {
    margin-top: 10px;
}

/* ================= PACKAGE CARD MODAL/ZOOM ================= */
.package-card.active {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.1);
    width: 90%;
    max-width: 600px;
    z-index: 1000;
    box-shadow: 0 15px 40px rgba(255,0,85,0.8);
}

.modal-overlay {
    display: none;
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.7);
    z-index: 999;
}

.modal-overlay.active {
    display: block;
}

.package-card.active .package-details {
    display: block;
}

/* ================= REGISTRIERUNG & FORMULAR ================= */
.register-section {
    max-width: 900px;
    margin: 50px auto;
    background: #1e1e1e;
    padding: 30px;
    border-radius: 12px;
    color: #eee;
}

.register-section h1 {
    text-align: center;
    margin-bottom: 20px;
}

.register-section p {
    text-align: center;
    margin-bottom: 30px;
    color: #ccc;
}

.register-form .form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.register-form .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.register-form label {
    margin-bottom: 5px;
    color: #ccc;
}

.register-form input,
.register-form select {
    padding: 10px;
    border-radius: 5px;
    border: none;
    outline: none;
    background: #111;
    color: #eee;
}

.register-form input:focus,
.register-form select:focus {
    box-shadow: 0 0 5px #ff0055;
}

.register-form button {
    display: block;
    width: 100%;
    padding: 12px;
    background: #ff0055;
    color: #fff;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 0 10px #ff0055;
}

.register-form button:hover {
    background: #ff3388;
    box-shadow: 0 0 20px #ff3388;
}

/* ================= DASHBOARD INSERATE CARDS ================= */
.dashboard-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    justify-content: center;
}

.dashboard-card {
    background: #1e1e1e;
    color: #eee;
    border-radius: 12px;
    width: 280px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,255,255,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.dashboard-card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0,255,255,0.5);
}

.dashboard-card h4 {
    color: #00ffff;
    margin-bottom: 10px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 700px) {
    .register-form .form-row {
        flex-direction: column;
    }
    .packages-container, .dashboard-container {
        flex-direction: column;
        align-items: center;
    }
}
/* Video Section immer halb-hoch, zentriert */
.video-section {
    position: relative;
    width: 100%;
    max-height: 50vh; /* halbes Fenster */
    overflow: hidden;
}

.start-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Intro Text auf allen Seiten gleich */
.intro-text {
    text-align: center;
    padding: 30px 20px;
}

.intro-text p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 20px;
}

.intro-text .btn {
    display: inline-block;
}
/* ================= REGISTER HERO ================= */

.register-hero {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

/* ================= REGISTER CARD ================= */

.register-card {
    width: 100%;
    max-width: 800px;
    background: #1b1b1b;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 0 40px rgba(255,0,85,0.25);
    animation: fadeUp 0.6s ease;
}

.register-card h1 {
    text-align: center;
    margin-bottom: 10px;
    color: #ff66aa;
}

.register-card p {
    text-align: center;
    color: #aaa;
    margin-bottom: 30px;
}

/* ================= FORM ================= */

.register-form .form-row {
    display: flex;
    gap: 15px; /* enger zwischen Vorname/Nachname */
    margin-bottom: 18px; /* weniger Abstand nach unten */
}

.register-form .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 15px; /* Mehr Luft zwischen Reihen */
}

.register-form label {
    margin-bottom: 6px;
    color: #bbb;
    font-size: 0.9rem;
}

.register-form input {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #333;
    background: #111;
    color: #eee;
    transition: all 0.2s ease;
}

.register-form input:focus {
    border-color: #ff0055;
    box-shadow: 0 0 10px rgba(255,0,85,0.4);
    outline: none;
}

.register-form .btn {
    width: 100%;
    margin-top: 10px;
    font-size: 1.05rem;
}

/* ================= ANIMATION ================= */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= MOBILE ================= */

@media (max-width: 700px) {
    .register-form .form-row {
        flex-direction: column;
    }

    .register-card {
        padding: 25px;
    }
}
nav {
    display: flex;
    align-items: center;
    gap: 40px; /* Abstand zwischen Links */
}

nav a {
    color: #eee;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    position: relative;
}

nav a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #ff0055;
    transition: 0.3s;
}

nav a:hover::after {
    width: 100%;
}

.bestell {
    padding: 30px;


}