/* Vorort Seite spezifische Styles */

/* Kontaktformular spezifische Styles (angepasst von contact-form.css) */

/* Alert-Meldungen */
.contact-alert {
    padding: 15px;
    margin: 20px 0;
    border-radius: 25px;
    border: 1px solid var(--han-border-cl);
    backdrop-filter: blur(var(--han-blur));
    -webkit-backdrop-filter: blur(var(--han-blur));
}

.contact-alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.contact-alert-error {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

/* Formular-Container */
.contact-form {
    width: calc(100% - 40px);
    margin: 0;
    padding: 20px;
    border-radius: 15px;
}

/* Formular-Gruppen */
.contact-form-group {
    margin-bottom: 20px;
}

.contact-form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-form-input,
.contact-form-textarea {
    width: 100%;
    padding: 12px;
    margin: 0;
    box-sizing: border-box;
}

.contact-form-textarea {
    resize: vertical;
}

/* Checkbox */
.contact-form-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.contact-form-checkbox input {
    margin-right: 10px;
}

/* Submit-Button */
.contact-form-submit {
    text-align: center;
    margin-bottom: 20px;
    padding: 0;
}

.contact-submit-btn {
    background-color: #007bff;
    color: white;
    padding: 15px 30px;
    font-weight: 600;
    border: none;
    width: 100%;
    margin: 0;
}

.contact-submit-btn:hover {
    background-color: #0056b3;
}

/* Kontakt-Buttons Bereich */
.contact-alternative {
    margin-top: 30px;
}

.contact-alternative h2 {
    margin-bottom: 20px;
}

.contact-alternative h3 {
    margin-bottom: 20px;
}

/* Preis-Tabelle */
.price-table {
    margin: 20px 0;
}

.price-section {
    background: var(--han-glass-bg-cl);
    backdrop-filter: blur(var(--han-blur));
    -webkit-backdrop-filter: blur(var(--han-blur));
    border: 1px solid var(--han-border-cl);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.price-section:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    transform: translateY(-2px);
}

.price-section h3 {
    margin: 0 0 15px 0;
    color: var(--han-link-cl);
    font-size: 1.1rem;
    font-weight: 600;
}

.price-info p {
    margin: 0 0 10px 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--han-border-cl);
}

.price-item:last-child {
    border-bottom: none;
}

.price-item span:first-child {
    font-weight: 500;
}

.price-item span:last-child {
    font-weight: 600;
    color: var(--han-link-cl);
    font-size: 1.1rem;
}

.small-text {
    font-size: 0.85rem;
    opacity: 0.8;
    font-style: italic;
}

/* Service-Typ Display */
.service-type-display {
    background: var(--han-bg-cl);
    border: 1px solid var(--han-border-cl);
    border-radius: 10px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--han-link-cl);
}

.service-type-display i {
    font-size: 1.2rem;
}

.service-type-display small {
    margin-left: auto;
    font-weight: 400;
    opacity: 0.7;
    font-size: 0.8rem;
}

/* Back Link */
.back-link {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.back-link:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .price-section {
        padding: 15px;
        margin-bottom: 10px;
    }
    
    .price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .price-item span:last-child {
        align-self: flex-end;
        background: var(--han-link-cl);
        color: white;
        padding: 2px 8px;
        border-radius: 10px;
        font-size: 0.9rem;
    }
    
    .service-type-display {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .service-type-display small {
        margin-left: 0;
    }
}
