/* Goldene Momente – Kontakt CSS */

/* ── Section Layout ── */
.contact-section {
    padding: 7rem 6% 6rem;
    background: var(--white);
    display: flex;
    justify-content: center;
}

.contact-container {
    max-width: 640px;
    width: 100%;
    text-align: center;
}

/* ── Meta Text ── */
.contact-meta {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 1.6rem;
}

/* ── Heading ── */
.contact-container h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    line-height: 1.25;
    color: var(--black);
    margin-bottom: 2.2rem;
}

/* ── Intro Text ── */
.contact-intro {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--gray);
    margin-bottom: 3.5rem;
}

/* ── Form ── */
.contact-form {
    text-align: left;
    margin-bottom: 4.6rem;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 0.6rem;
}

.required {
    color: var(--gold-dark);
    margin-left: 0.15rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--black);
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 2px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(0,0,0,0.6);
    font-weight: 300;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold-dark);
    box-shadow: 0 0 0 3px rgba(134, 105, 0, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* ── Consent Checkbox ── */
.form-consent {
    margin-bottom: 2.2rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--gray);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    margin-top: 0.15rem;
    accent-color: var(--gold-dark);
    cursor: pointer;
    flex-shrink: 0;
}

.consent-text a {
    color: var(--gold-dark);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.consent-text a:hover {
    color: var(--gold);
    border-bottom-color: transparent;
}

/* ── Submit Button ── */
.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1.1rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    background: var(--black);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-submit:hover {
    background: var(--gold);
    color: var(--black);
    letter-spacing: 2.5px;
}

/* ── Contact Details Below Form ── */
.contact-details {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid var(--gray-light);
}

.contact-email {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s ease;
    margin-bottom: 0.6rem;
}

.contact-email:hover {
    color: var(--gold);
}

.contact-phone {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s ease;
    margin-bottom: 1.2rem;
}

.contact-phone:hover {
    color: var(--gold);
}

.contact-region-bottom {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(0,0,0,0.6);
    max-width: 420px;
    margin: 0 auto;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .contact-section {
        padding: 5rem 6% 4rem;
    }

    .contact-container h1 {
        font-size: clamp(1.7rem, 6vw, 2.2rem);
        margin-bottom: 1.8rem;
    }

    .contact-intro {
        font-size: 0.95rem;
        margin-bottom: 2.5rem;
    }

    .contact-form {
        margin-bottom: 3.8rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group textarea {
        padding: 0.9rem 1rem;
        font-size: 0.9rem;
        width: 100%;
    }

    .checkbox-label {
        font-size: 0.78rem;
        line-height: 1.55;
    }

    .checkbox-label input[type="checkbox"] {
        width: 16px;
        height: 16px;
        min-width: 16px;
        min-height: 16px;
        margin-top: 0.05rem;
    }

    .btn-submit {
        padding: 1rem 1.5rem;
        font-size: 0.78rem;
        width: 100%;
        max-width: 100%;
    }

    .contact-details {
        padding-top: 2rem;
    }

    .contact-email {
        font-size: 0.95rem;
    }

    .contact-phone {
        font-size: 0.95rem;
    }

    .contact-region-bottom {
        font-size: 0.8rem;
    }
}
