/* Award Winning Basics */
body {
    /* Subtile Noise Textur für Premium-Haptik */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
}

.sky-panel {
    background-color: #0d47a1;
}

.sky-glow {
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0) 32%),
        radial-gradient(circle at 78% 8%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 24%),
        linear-gradient(180deg, rgba(13, 71, 161, 0.18) 0%, rgba(13, 71, 161, 0) 42%);
}

.starfield-overlay {
    background-image:
        radial-gradient(circle at 12% 24%, rgba(255, 255, 255, 0.95) 0 1.2px, transparent 1.6px),
        radial-gradient(circle at 72% 18%, rgba(221, 235, 255, 0.85) 0 1px, transparent 1.4px),
        radial-gradient(circle at 30% 78%, rgba(255, 255, 255, 0.75) 0 1px, transparent 1.4px),
        radial-gradient(circle at 86% 68%, rgba(221, 235, 255, 0.9) 0 1.2px, transparent 1.6px),
        radial-gradient(circle at 58% 52%, rgba(255, 255, 255, 0.65) 0 1px, transparent 1.4px);
    background-size: 220px 220px, 260px 260px, 300px 300px, 340px 340px, 420px 420px;
    opacity: 0.45;
    pointer-events: none;
}

.sky-surface {
    background: linear-gradient(180deg, #1565c0 0%, #1976d2 100%);
}

.sky-surface-soft {
    background: linear-gradient(180deg, #1e88e5 0%, #42a5f5 100%);
}

.sky-button {
    background: linear-gradient(135deg, #1565c0 0%, #1976d2 100%);
    border-color: #1565c0;
    color: #ffffff;
}

.sky-button:hover {
    background: linear-gradient(135deg, #2196f3 0%, #42a5f5 100%);
    border-color: #42a5f5;
}

.footer-sky {
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 28%),
        linear-gradient(180deg, #0d47a1 0%, #1976d2 100%);
}

.text-gold-gradient {
    background: linear-gradient(90deg, #009246 0%, #CE2B37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-hero-overlay {
    background: linear-gradient(180deg, rgba(8, 27, 51, 0.76) 0%, rgba(18, 59, 107, 0.58) 52%, rgba(8, 27, 51, 0.84) 100%);
}

.page-section-tint {
    background: linear-gradient(180deg, rgba(221, 235, 255, 0.48) 0%, rgba(249, 248, 246, 0) 100%);
}

.hero-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)), url('../images/italienischeband-nuernberg-hero.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Smooth Reveal Animation */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15);
}

/* Custom Button */
.btn-gold {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}
.btn-gold:hover::before {
    left: 100%;
}

/* Masonry Grid */
.masonry-grid {
    column-count: 1;
    column-gap: 2rem;
}
@media (min-width: 768px) { .masonry-grid { column-count: 2; } }
@media (min-width: 1280px) { .masonry-grid { column-count: 3; } }

.masonry-item {
    break-inside: avoid;
    margin-bottom: 2rem;
}