/* =========================================
   JUWELIER PARTHEIL – WARTUNGSSEITE
   ========================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --gold: #c9a84c;
    --gold-light: #e8d08a;
    --dark: #1a1208;
    --card-bg: rgba(15, 10, 5, 0.82);
    --text: #f0e6cc;
    --text-muted: #b09a70;
    --radius: 18px;
}

body {
    font-family: 'Raleway', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: clamp(1.5rem, 6vw, 8vw);
    overflow: hidden;
    background: #0d0a04;
    color: var(--text);
}

/* ---------- Background Image ---------- */
.bg-image {
    position: fixed;
    inset: 0;
    z-index: 0;
}

.bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: brightness(0.85) saturate(1.0);
}

/* ---------- Dark Overlay ---------- */
.overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg,
            rgba(10, 7, 2, 0.08) 0%,
            rgba(30, 20, 5, 0.05) 100%);
}

/* ---------- Card ---------- */
.card {
    position: relative;
    z-index: 2;
    width: min(520px, 92vw);
    padding: 3rem 3rem 3.5rem;
    background: var(--card-bg);
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-radius: var(--radius);
    backdrop-filter: blur(18px) saturate(1.3);
    -webkit-backdrop-filter: blur(18px) saturate(1.3);
    box-shadow:
        0 0 0 1px rgba(201, 168, 76, 0.08),
        0 20px 60px rgba(0, 0, 0, 0.7),
        0 0 80px rgba(201, 168, 76, 0.06);
    text-align: center;
    animation: fadeUp 0.9s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- Icon ---------- */
.icon {
    font-size: 2.6rem;
    margin-bottom: 1.1rem;
    animation: spin 8s linear infinite;
    display: inline-block;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ---------- Heading ---------- */
h1 {
    font-size: clamp(1.6rem, 4vw, 2.1rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--gold-light);
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(201, 168, 76, 0.3);
}

/* ---------- Intro Text ---------- */
.intro {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    font-weight: 300;
    line-height: 1.8;
    color: var(--text);
    opacity: 0.9;
}

/* ---------- Divider ---------- */
.divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 2rem auto;
    border-radius: 2px;
}

/* ---------- Sub-heading ---------- */
h2 {
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.4rem;
}

/* ---------- Contact ---------- */
.contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 1rem;
    background: rgba(201, 168, 76, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.14);
    border-radius: 10px;
    gap: 1rem;
}

.label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    white-space: nowrap;
}

.value {
    font-size: clamp(0.9rem, 2.2vw, 1rem);
    font-weight: 400;
    color: var(--text);
    text-align: right;
}

a.link {
    text-decoration: none;
    color: var(--gold-light);
    transition: color 0.2s, text-shadow 0.2s;
}

a.link:hover {
    color: #fff;
    text-shadow: 0 0 12px rgba(201, 168, 76, 0.5);
}

/* ---------- Impressum ---------- */
.impressum {
    margin-top: 1.8rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    text-align: center;
}

.impressum a {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.impressum a:hover {
    color: var(--gold-light);
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    body {
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 0;
        overflow-y: auto;
        min-height: 100vh;
        background: #1a1208;
    }

    .overlay {
        display: none;
    }

    /* Bild oben als normaler Block */
    .bg-image {
        position: relative;
        width: 100%;
        height: 55vw;
        min-height: 220px;
        max-height: 340px;
    }

    .bg-image img {
        object-position: center 20%;
        filter: brightness(0.92) saturate(1.0);
    }

    /* Card direkt darunter */
    .card {
        position: relative;
        z-index: 1;
        width: 100%;
        border-radius: 0;
        padding: 2rem 1.5rem 2.5rem;
        margin: 0;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: #1a1208;
        border: none;
        border-top: 2px solid rgba(201, 168, 76, 0.3);
        box-shadow: none;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .value {
        text-align: left;
    }
}