/* Kontakt Seite Styles */
.contact-bg {
    background-image: url('../img/contact-hero.webp');
    background-position: center;
    position: relative;
}

.contact-bg:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.2), rgba(0, 0, 0, 0.8));
    z-index: 1;
}

#contact-hero .hero-overlay {
    z-index: 2;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.5), rgba(10, 10, 10, 0.7));
}

/* Map Container */
.map-container {
    margin-top: 3rem;
    position: relative;
    padding: 2px;
    background: linear-gradient(45deg, var(--gold), var(--chrome), var(--gold));
    background-size: 200% 200%;
    animation: goldShimmer 6s ease infinite;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.contact-map {
    width: 100%;
    height: 450px;
    border-radius: 13px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.navigation-links {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.nav-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: all 0.5s ease;
    z-index: -1;
    opacity: 0.2;
}

.nav-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    color: white;
}

.nav-button:hover:before {
    left: 0;
}

.google-maps {
    background: linear-gradient(45deg, #4285F4, #34A853, #FBBC05, #EA4335);
    background-size: 300% 300%;
    animation: gradientAnimation 6s ease infinite;
    color: white;
}

.apple-maps {
    background: linear-gradient(45deg, #000000, #333333);
    color: white;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Checkbox Styling */
.checkbox-container {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--gold);
    border-color: var(--gold);
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container a {
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.checkbox-container a:hover {
    text-decoration: none;
}

.checkbox-container a:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.checkbox-container a:hover:after {
    width: 100%;
}

/* Verbesserte Kontaktinfo-Box */
.contact-info {
    background: rgba(20, 20, 20, 0.7);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--gold), var(--purple-accent), var(--gold));
    border-radius: 15px 15px 0 0;
}

.info-box {
    margin-bottom: 1.5rem;
    transform: translateY(0);
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.info-box:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.info-box a {
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-box a:hover {
    color: var(--purple-accent);
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: var(--gold);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
}

.social-link:hover {
    transform: translateY(-8px) scale(1.1);
    background: var(--gold);
    color: #000;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.social-link i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.2);
}

/* Kontaktformular */
.contact-form {
    background: rgba(20, 20, 20, 0.7);
    border-radius: 15px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.contact-form:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--purple-accent), var(--gold), var(--purple-accent));
    border-radius: 15px 15px 0 0;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--chrome);
    transition: all 0.3s ease;
}

.form-input {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: white;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.form-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    background: rgba(0, 0, 0, 0.4);
}

.form-input:focus + .form-label {
    color: var(--gold);
}

textarea.form-input {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    width: 100%;
    background: linear-gradient(45deg, var(--gold), var(--dark-gold));
    color: white;
    border: none;
    padding: 1rem 0;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.submit-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--purple-accent), var(--gold));
    transition: all 0.5s ease;
    z-index: -1;
}

.submit-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
}

.submit-button:hover:before {
    left: 0;
}

/* Toast Nachrichten */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border-left: 5px solid var(--gold);
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    min-width: 320px;
    max-width: 420px;
    animation: toastFadeIn 0.5s forwards;
}

.toast.error {
    border-left: 5px solid #ff4d4d;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
}

.toast-content i {
    color: var(--gold);
    font-size: 1.5rem;
}

.toast.error .toast-content i {
    color: #ff4d4d;
}

.toast-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toast-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

@keyframes toastFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .navigation-links {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-button {
        width: 100%;
        max-width: 300px;
    }
    
    .contact-map {
        height: 300px;
    }
    
    .toast {
        left: 20px;
        right: 20px;
        bottom: 20px;
        max-width: none;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .social-links {
        justify-content: space-around;
    }
}