* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;

    font-family:
        "Segoe UI",
        Tahoma,
        Geneva,
        Verdana,
        sans-serif;

    color: #ffffff;

    background:
        linear-gradient(
            rgba(3, 7, 12, 0.66),
            rgba(3, 7, 12, 0.95)
        ),
        url("bg-main.jpg") center center / cover fixed no-repeat;
}


/* GRUNDLAYOUT */

.page {
    width: min(1380px, calc(100% - 40px));
    margin: 0 auto;
    padding: 70px 0 40px;
}


/* HERO */

.hero {
    padding: 70px 60px;

    border: 1px solid rgba(231, 199, 121, 0.28);
    border-radius: 34px;

    background:
        linear-gradient(
            135deg,
            rgba(7, 13, 21, 0.86),
            rgba(3, 7, 12, 0.74)
        );

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.52),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.eyebrow {
    margin: 0 0 18px;

    color: #e9ca7c;

    font-size: 0.9rem;
    font-weight: 800;

    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 950px;
    margin: 0;

    font-size: clamp(3rem, 6vw, 6rem);
    line-height: 0.98;

    letter-spacing: -0.05em;

    text-shadow:
        0 10px 35px rgba(0, 0, 0, 0.76);
}

.hero h1 span {
    display: block;

    color: #e7c66f;
}

.intro {
    max-width: 780px;
    margin: 32px 0 0;

    color: #d3d8e0;

    font-size: 1.22rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 16px;
    margin-top: 38px;
}


/* BUTTONS */

.button {
    display: inline-flex;

    min-height: 58px;

    align-items: center;
    justify-content: center;

    padding: 15px 28px;

    border-radius: 14px;

    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: #11151b;

    background:
        linear-gradient(
            135deg,
            #f1d996,
            #c89b42
        );

    box-shadow:
        0 15px 34px rgba(195, 148, 55, 0.3);
}

.button-primary:hover {
    box-shadow:
        0 20px 45px rgba(195, 148, 55, 0.46);
}

.button-secondary {
    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.28);

    background: rgba(255, 255, 255, 0.05);
}

.button-secondary:hover {
    border-color: rgba(231, 199, 121, 0.45);

    background: rgba(255, 255, 255, 0.1);
}


/* ANGEBOTSKARTEN */

.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
    margin-top: 26px;
}

.offer-card {
    min-height: 250px;
    padding: 32px;

    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 24px;

    background: rgba(4, 9, 15, 0.8);

    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(13px);

    box-shadow:
        0 20px 48px rgba(0, 0, 0, 0.32);
}

.offer-number {
    color: #e9ca7c;

    font-size: 1.1rem;
    font-weight: 800;
}

.offer-card h2 {
    margin: 20px 0 14px;

    font-size: 1.55rem;
}

.offer-card p {
    margin: 0;

    color: #bec5cf;

    line-height: 1.7;
}


/* DOMAINBEREICH */

.domain-section {
    margin-top: 26px;
    padding: 42px;

    border: 1px solid rgba(231, 199, 121, 0.22);
    border-radius: 28px;

    background:
        linear-gradient(
            135deg,
            rgba(10, 17, 27, 0.93),
            rgba(3, 7, 12, 0.88)
        );

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.4);
}

.section-heading {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 26px;
}

.section-heading h2 {
    margin: 0;

    font-size: clamp(2rem, 4vw, 3.2rem);
}

.status-badge {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 10px 18px;

    border: 1px solid rgba(231, 199, 121, 0.4);
    border-radius: 999px;

    color: #f2d98e;

    font-size: 0.88rem;
    font-weight: 800;

    background: rgba(202, 155, 66, 0.1);
}


/* DOMAINLISTE */

.domain-list {
    display: grid;

    gap: 16px;
}

.domain-item {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 28px;

    padding: 26px 28px;

    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 20px;

    background: rgba(255, 255, 255, 0.035);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.domain-item:hover {
    transform: translateY(-2px);

    border-color: rgba(231, 199, 121, 0.32);

    background: rgba(255, 255, 255, 0.06);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.22);
}

.domain-current {
    border-color: rgba(231, 199, 121, 0.52);

    background:
        linear-gradient(
            135deg,
            rgba(202, 155, 66, 0.13),
            rgba(255, 255, 255, 0.035)
        );

    box-shadow:
        inset 4px 0 0 #e4c26d;
}

.domain-status {
    display: inline-block;

    margin-bottom: 8px;

    color: #e9ca7c;

    font-size: 0.78rem;
    font-weight: 800;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.domain-info h3 {
    margin: 0;

    font-size: 1.45rem;
}

.domain-info p {
    margin: 9px 0 0;

    color: #aeb7c3;

    line-height: 1.6;
}

.domain-button {
    display: inline-flex;

    min-width: 190px;
    min-height: 48px;

    align-items: center;
    justify-content: space-between;

    gap: 18px;

    padding: 12px 18px;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;

    color: #ffffff;

    font-weight: 800;
    text-decoration: none;

    background: rgba(255, 255, 255, 0.055);

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.domain-button:hover {
    transform: translateY(-1px);

    border-color: rgba(231, 199, 121, 0.42);

    background: rgba(202, 155, 66, 0.13);
}


/* KONTAKTBEREICH */

.contact-section {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;

    margin-top: 26px;
    padding: 42px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 26px;

    background: rgba(5, 10, 16, 0.82);

    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(13px);

    box-shadow:
        0 22px 52px rgba(0, 0, 0, 0.36);
}

.contact-section > div {
    max-width: 850px;
}

.contact-section h2 {
    margin: 0 0 14px;

    font-size: clamp(2rem, 4vw, 3.1rem);
}

.contact-section p {
    margin: 0;

    color: #c4cbd5;

    font-size: 1.05rem;
    line-height: 1.72;
}


/* FOOTER */

.footer {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    width: min(1380px, calc(100% - 40px));

    margin: 0 auto;
    padding: 28px 0 40px;

    color: #929ca9;

    font-size: 0.9rem;
}

.footer p {
    margin: 0;
}


/* TABLET */

@media (max-width: 980px) {

    .hero {
        padding: 48px 40px;
    }

    .offer-grid {
        grid-template-columns: 1fr;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .domain-item {
        align-items: flex-start;
        flex-direction: column;
    }

    .domain-button {
        width: 100%;
    }

    .contact-section {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* SMARTPHONE */

@media (max-width: 620px) {

    body {
        background-attachment: scroll;
    }

    .page {
        width: min(100% - 20px, 1380px);
        padding-top: 20px;
    }

    .hero {
        padding: 30px 22px;

        border-radius: 24px;
    }

    .hero h1 {
        font-size: 2.6rem;
    }

    .intro {
        font-size: 1.05rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .offer-card,
    .domain-section,
    .contact-section {
        padding: 25px;
    }

    .domain-item {
        padding: 22px;
    }

    .footer {
        flex-direction: column;

        width: min(100% - 30px, 1380px);
    }
}