body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

/* --- Bestehende Stile für Hintergrund & Text --- */

.panorama-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('Pano.jpg');
    background-color: black;
    background-position: center;
    transition: background-position 0.5s;
	background-repeat: no-repeat;
    z-index: -1; 
}

/* Default for smaller screens */
.panorama-background {
    background-size: cover;
}

/* For larger screens */
@media (min-width: 768px) {
    .panorama-background {
        background-size: 120%;
    }
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, sans-serif; 
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    text-align: center;
    user-select: none;
    pointer-events: none;
}

/* --- NEU: Liquid Glass Button Styling --- */

.glass-button {
    position: fixed;
    top: 30px;
    right: 30px;
    padding: 12px 24px;
    
    /* Der Liquid Glass Effekt */
    background: rgba(255, 255, 255, 0.05); /* Sehr transparent */
    backdrop-filter: blur(10px); /* Der Milchglas-Effekt */
    -webkit-backdrop-filter: blur(10px);
    
    /* Ränder für Tiefe */
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    
    border-radius: 30px; /* Runde "Pillen"-Form */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Weicher Schatten */
    
    /* Text Styling */
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    #text-transform: uppercase;
    
    z-index: 1000;
    transition: all 0.3s ease;
}

.glass-button:hover {
    background: rgba(255, 255, 255, 0.15); /* Heller beim Hover */
    transform: translateY(-2px); /* Leichtes Schweben */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Klick-Effekt */
.glass-button:active {
    transform: translateY(0px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}