/* Contact Page Styles */

/* Header Styles */
.contact-header {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.contact-header .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
    z-index: 1;
}

.contact-header .hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: white;
    text-align: center;
    padding: 0 2rem;
}

.contact-header .hero-content .logo {
    font-size: 4rem;
    color: var(--gold);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.contact-header .hero-content .tagline {
    font-size: 1.5rem;
    color: var(--silver);
    letter-spacing: 0.2em;
}

.address-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    border-radius: 2rem;
    color: var(--gold);
}

.address-badge i {
    font-size: 1.2rem;
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.info-card {
    background: linear-gradient(145deg, 
        rgba(255,255,255,0.08) 0%, 
        rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.info-card .icon-3d {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.info-card .icon-3d i {
    font-size: 2rem;
    color: var(--gold);
}

.info-card h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Contact Links */
.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.contact-link.phone {
    color: var(--gold);
}

.contact-link.whatsapp {
    color: #25D366;
}

.contact-link.email {
    color: #EA4335;
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

/* Route Links */
.route-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.route-link {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.route-link.google {
    background: rgba(234, 67, 53, 0.1);
    color: #EA4335;
}

.route-link.apple {
    background: rgba(255, 255, 255, 0.1);
    color: #A2AAAD;
}

.route-link:hover {
    transform: translateY(-2px);
}

/* Opening Hours */
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
}

.hours-item .days {
    color: var(--gold);
    font-weight: 500;
}

.hours-item .time {
    color: var(--silver);
}

/* Map Section */
.contact-map {
    height: 500px;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 999;
}

.map-card {
    background: rgba(10, 10, 10, 0.95);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--gold);
    backdrop-filter: blur(10px);
    max-width: 300px;
}

.map-card h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.route-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.route-btn {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.route-btn.google {
    background: #EA4335;
    color: white;
}

.route-btn.apple {
    background: #A2AAAD;
    color: white;
}

.route-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* Map Marker Styles */
.custom-map-marker {
    width: 40px !important;
    height: 40px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none !important;
}

.custom-map-marker i {
    font-size: 40px;
    color: var(--gold);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    animation: markerPulse 2s infinite;
}

@keyframes markerPulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(212, 175, 55, 0.4));
    }
    50% {
        transform: scale(1.2);
        filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6));
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(212, 175, 55, 0.4));
    }
}

/* Map Container Styles */
.contact-map .leaflet-container {
    background: #1a1a1a !important;
}

/* Custom Map Theme */
.contact-map .leaflet-tile-pane {
    filter: grayscale(80%) invert(100%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

/* Map Controls */
.contact-map .leaflet-control-zoom {
    border: none !important;
    background: rgba(10, 10, 10, 0.9) !important;
    backdrop-filter: blur(10px);
    border-radius: 0.5rem !important;
    overflow: hidden;
}

.contact-map .leaflet-control-zoom a {
    color: var(--gold) !important;
    background: transparent !important;
    border: none !important;
    width: 40px !important;
    height: 40px !important;
    line-height: 40px !important;
    transition: all 0.3s ease;
}

.contact-map .leaflet-control-zoom a:hover {
    background: rgba(212, 175, 55, 0.1) !important;
    color: var(--gold-light) !important;
}

/* Attribution */
.contact-map .leaflet-control-attribution {
    background: rgba(10, 10, 10, 0.9) !important;
    backdrop-filter: blur(10px);
    color: var(--silver) !important;
    padding: 0.5rem !important;
}

.contact-map .leaflet-control-attribution a {
    color: var(--gold) !important;
}

/* Map Interaction States */
.contact-map .leaflet-interactive:focus {
    outline: none !important;
}

.contact-map .leaflet-marker-icon {
    transition: transform 0.3s ease !important;
}

.contact-map .leaflet-marker-icon:hover {
    transform: scale(1.2) !important;
}

.leaflet-marker-icon.custom-map-marker {
    width: 40px !important;
    height: 40px !important;
    margin-left: -20px !important;
    margin-top: -40px !important;
    background: none !important;
    border: none !important;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.7; /* Optional: für einen transparenten Effekt */
}