/* ==========================================================================
   J@ZZ-ONLINE - MODERNE BAND WEBSEITE (HELLER WEISSER HINTERGRUND)
   ========================================================================== */

#public-website {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #1e293b;
    background-color: #ffffff;
    background-image: 
        radial-gradient(circle at 12% 8%, rgba(245, 158, 11, 0.05), transparent 40%),
        radial-gradient(circle at 88% 16%, rgba(0, 86, 179, 0.05), transparent 45%),
        radial-gradient(circle at 50% 55%, rgba(220, 38, 38, 0.03), transparent 50%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 40%, #ffffff 70%, #f8fafc 100%);
    min-height: 100vh;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
    padding-bottom: 40px;
}

#public-website * {
    box-sizing: border-box;
}

/* Scroll smooth */
html {
    scroll-behavior: smooth;
}

/* ==========================================================================
   Scroll Animation System (Verschieben, Zoomen, Einblenden)
   ========================================================================== */
.pub-reveal {
    opacity: 0;
    transition: opacity 0.65s cubic-bezier(0.25, 1, 0.5, 1), transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}

.pub-reveal-up {
    transform: translateY(46px) scale(0.97);
}

.pub-reveal-zoom {
    transform: scale(0.88) translateY(20px);
}

.pub-reveal-left {
    transform: translateX(-46px) scale(0.97);
}

.pub-reveal-right {
    transform: translateX(46px) scale(0.97);
}

.pub-reveal.is-revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.pub-reveal:not(.is-revealed),
.pub-reveal:not(.is-revealed) * {
    transition-delay: 0s !important;
}

/* Staggered Transitions for Children */
.pub-stagger > *:nth-child(1) { transition-delay: 0.04s; }
.pub-stagger > *:nth-child(2) { transition-delay: 0.10s; }
.pub-stagger > *:nth-child(3) { transition-delay: 0.16s; }
.pub-stagger > *:nth-child(4) { transition-delay: 0.22s; }
.pub-stagger > *:nth-child(5) { transition-delay: 0.28s; }
.pub-stagger > *:nth-child(6) { transition-delay: 0.34s; }
.pub-stagger > *:nth-child(7) { transition-delay: 0.40s; }
.pub-stagger > *:nth-child(8) { transition-delay: 0.46s; }

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.pub-nav {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.pub-nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.09);
    border-bottom-color: rgba(217, 119, 6, 0.2);
    padding-top: 10px;
    padding-bottom: 10px;
}

.pub-nav-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #f59e0b, #d97706, #fbbf24);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.6);
    transition: width 0.08s linear;
    z-index: 1002;
    border-radius: 0 2px 2px 0;
}

.pub-nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #0f172a;
}

.pub-nav-logo {
    height: 40px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.12));
}

.pub-nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pub-nav-links a {
    color: #334155;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.2s ease;
    padding: 7px 12px;
    border-radius: 8px;
}

.pub-nav-links a:hover {
    color: #d97706;
    background: rgba(217, 119, 6, 0.08);
}

.pub-btn-login {
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
    color: #ffffff !important;
    font-weight: 600 !important;
    padding: 8px 18px !important;
    border-radius: 9999px !important;
    box-shadow: 0 4px 14px rgba(211, 47, 47, 0.32);
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s !important;
}

.pub-btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.45);
}

/* Navigation Actions */
.pub-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pub-nav-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem !important;
    padding: 7px 15px !important;
}

.pub-nav-links .pub-nav-mobile-login {
    display: none;
}

/* Mobile Nav Toggle */
.pub-mobile-toggle {
    display: none;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    color: #0f172a;
    font-size: 1.4rem;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 8px;
}

/* Container */
.pub-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.pub-hero {
    position: relative;
    padding: 36px 24px 70px 24px;
    text-align: center;
    overflow: hidden;
    background: #ffffff;
}

.pub-hero::before {
    content: '';
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 480px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, rgba(0, 86, 179, 0.06) 45%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

.pub-hero-content {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
}

.pub-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fef3c7;
    border: 1px solid #fde68a;
    color: #b45309;
    padding: 6px 18px;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.15);
}

.pub-hero-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 20px 0;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.pub-hero-title span.pub-gradient-text {
    background: linear-gradient(135deg, #d97706 0%, #dc2626 50%, #9333ea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pub-hero-desc {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: #475569;
    max-width: 680px;
    margin: 0 auto 36px auto;
    font-weight: 400;
    line-height: 1.65;
}

/* Hero Photo Highlight */
.pub-hero-photo-container {
    position: relative;
    margin: 0 auto 30px auto;
    max-width: 860px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pub-hero-photo-glow {
    position: absolute;
    width: 82%;
    height: 75%;
    background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.22) 0%, rgba(0, 86, 179, 0.12) 45%, transparent 70%);
    filter: blur(50px);
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
    animation: heroGlowPulse 5s ease-in-out infinite alternate;
}

@keyframes heroGlowPulse {
    0% { transform: scale(0.95); opacity: 0.7; }
    100% { transform: scale(1.06); opacity: 1; }
}

.pub-hero-photo {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: 480px;
    object-fit: contain;
    filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.12)) drop-shadow(0 0 35px rgba(245, 158, 11, 0.2));
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.pub-hero-photo:hover {
    transform: translateY(-6px) scale(1.02);
    filter: drop-shadow(0 20px 36px rgba(0, 0, 0, 0.16)) drop-shadow(0 0 45px rgba(245, 158, 11, 0.3));
}

/* Quick Stats Bar */
.pub-hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
}

.pub-stat-item {
    text-align: center;
    padding: 8px 16px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pub-stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.pub-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    display: block;
    background: linear-gradient(135deg, #0f172a, #0056b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pub-stat-label {
    font-size: 0.82rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

/* ==========================================================================
   Section Basics
   ========================================================================== */
.pub-section {
    padding: 76px 0;
    position: relative;
    overflow: hidden;
}

.pub-scroll-float {
    position: absolute;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    opacity: 0.22;
    filter: drop-shadow(0 4px 14px rgba(217, 119, 6, 0.25));
    will-change: transform;
    transition: transform 0.12s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pub-scroll-float.pub-note-gold {
    color: #d97706;
    font-family: 'Times New Roman', Georgia, serif;
    font-weight: 700;
    opacity: 0.28;
    text-shadow: 0 4px 16px rgba(245, 158, 11, 0.35);
}

.pub-section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px auto;
    position: relative;
    z-index: 1;
}

.pub-section-tag {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #d97706;
    margin-bottom: 8px;
    display: block;
}

.pub-section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 14px 0;
    letter-spacing: -0.01em;
}

.pub-section-subtitle {
    color: #475569;
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.6;
}

/* ==========================================================================
   About / Story Section
   ========================================================================== */
#about {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.pub-about-grid {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.pub-about-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 42px 48px;
    box-shadow: 0 6px 30px -4px rgba(0, 0, 0, 0.06);
    max-width: 860px;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.pub-about-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px -4px rgba(0, 0, 0, 0.10);
}

.pub-about-card h3 {
    color: #d97706;
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 16px;
    font-weight: 700;
}

.pub-about-card p {
    color: #334155;
    font-size: 1.02rem;
    margin-bottom: 20px;
    line-height: 1.65;
}

.pub-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pub-pill {
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    color: #1e293b;
    font-size: 0.85rem;
    padding: 6px 14px;
    border-radius: 9999px;
    font-weight: 600;
}

/* ==========================================================================
   Band Members Section
   ========================================================================== */
#members {
    background: #ffffff;
}

.pub-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 22px;
}

.pub-member-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 26px;
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.pub-member-card:hover {
    transform: translateY(-6px) scale(1.015);
    border-color: #f59e0b;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.09);
}

.pub-member-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 16px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.08), rgba(245, 158, 11, 0.14));
    border: 2px solid #e2e8f0;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.pub-member-card:hover .pub-member-avatar {
    transform: scale(1.08);
}

.pub-member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.pub-member-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 6px 0;
}

.pub-member-role {
    font-size: 0.9rem;
    color: #d97706;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.pub-member-desc {
    font-size: 0.88rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
#gallery {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.pub-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.pub-gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
    background: #e2e8f0;
    border: 1px solid #cbd5e1;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.pub-gallery-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.15);
}

.pub-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.pub-gallery-item:hover img {
    transform: scale(1.08);
}

.pub-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.88) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
    color: #ffffff;
    transition: opacity 0.3s ease;
}

.pub-gallery-overlay h4 {
    margin: 0 0 4px 0;
    font-size: 1.05rem;
    font-weight: 700;
}

.pub-gallery-overlay span {
    font-size: 0.82rem;
    color: #fbbf24;
}

/* ==========================================================================
   Repertoire Section (Wordcloud)
   ========================================================================== */
#repertoire {
    background: #ffffff;
}

.pub-wordcloud-box {
    position: relative;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 24px 16px;
    margin-bottom: 24px;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.pub-wordcloud-container {
    width: 100%;
    min-height: 340px;
    position: relative;
    overflow: hidden;
}

.pub-btn-toggle-list {
    background: #f8fafc;
    color: #1e293b;
    border: 1px solid #cbd5e1;
    padding: 9px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pub-btn-toggle-list:hover {
    background: #f1f5f9;
    color: #0f172a;
    border-color: #d97706;
}

.pub-rep-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 16px;
    padding: 0 4px;
    font-weight: 500;
}

.pub-rep-table-wrap {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    max-height: 520px;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.pub-rep-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.95rem;
}

.pub-rep-table th {
    background: #f8fafc;
    padding: 14px 18px;
    font-weight: 700;
    color: #475569;
    position: sticky;
    top: 0;
    z-index: 2;
    border-bottom: 2px solid #e2e8f0;
}

.pub-rep-table td {
    padding: 12px 18px;
    border-bottom: 1px solid #f1f5f9;
    color: #1e293b;
}

.pub-rep-table tr:hover td {
    background: #f8fafc;
}

.pub-rep-title {
    font-weight: 700;
    color: #0f172a;
}

.pub-rep-artist {
    color: #64748b;
    font-size: 0.88rem;
}

.pub-tag {
    display: inline-block;
    padding: 3px 9px;
    border-radius: 6px;
    font-size: 0.76rem;
    font-weight: 600;
    background: rgba(245, 124, 0, 0.1);
    color: #b45309;
    border: 1px solid rgba(245, 124, 0, 0.25);
}

/* ==========================================================================
   Events / Auftritte Section
   ========================================================================== */
#events {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.pub-events-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 860px;
    margin: 0 auto;
}

.pub-event-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, box-shadow 0.35s ease;
}

.pub-event-card:hover {
    transform: translateY(-5px) scale(1.01);
    border-color: #f59e0b;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.09);
}

.pub-event-date-box {
    min-width: 76px;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.08), rgba(245, 158, 11, 0.12));
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 14px;
    padding: 10px 8px;
}

.pub-event-day {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.pub-event-month {
    font-size: 0.8rem;
    font-weight: 700;
    color: #d97706;
    text-transform: uppercase;
    margin-top: 4px;
}

.pub-event-info {
    flex: 1;
}

.pub-event-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 6px 0;
}

.pub-event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: #64748b;
    font-size: 0.9rem;
}

.pub-event-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.pub-event-badge {
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 0.78rem;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.pub-event-empty-card {
    background: #ffffff;
    border: 1px dashed #cbd5e1;
    border-radius: 18px;
    padding: 40px 24px;
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
}

.pub-event-empty-icon {
    font-size: 2.8rem;
    margin-bottom: 12px;
}

.pub-event-empty-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.3rem;
    color: #0f172a;
}

.pub-event-empty-card p {
    margin: 0;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   Instagram Feed Section
   ========================================================================== */
#instagram {
    background: #ffffff;
}

.pub-insta-header {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 24px 30px;
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.pub-insta-profile {
    display: flex;
    align-items: center;
    gap: 18px;
}

.pub-insta-avatar-ring {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pub-insta-avatar-icon {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.pub-insta-profile-info {
    display: flex;
    flex-direction: column;
}

.pub-insta-handle-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pub-insta-handle {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.pub-insta-handle:hover {
    color: #d97706;
}

.pub-insta-badge-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #0095f6;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pub-insta-bio {
    font-size: 0.88rem;
    color: #64748b;
    margin-top: 3px;
}

.pub-btn-insta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 9999px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.94rem;
    box-shadow: 0 4px 18px rgba(220, 39, 67, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pub-btn-insta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(220, 39, 67, 0.55);
    color: #ffffff;
}

.pub-insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.pub-insta-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, box-shadow 0.3s ease;
}

.pub-insta-card:hover {
    transform: translateY(-6px);
    border-color: rgba(220, 39, 67, 0.5);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.09);
}

.pub-insta-card-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f1f5f9;
}

.pub-insta-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.pub-insta-card:hover .pub-insta-card-img-wrap img {
    transform: scale(1.08);
}

.pub-insta-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #f1f5f9;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 9999px;
}

.pub-insta-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.pub-insta-card:hover .pub-insta-card-overlay {
    opacity: 1;
}

.pub-insta-stats {
    display: flex;
    gap: 16px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
}

.pub-insta-overlay-cta {
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    background: rgba(220, 39, 67, 0.9);
    padding: 6px 14px;
    border-radius: 20px;
}

.pub-insta-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.pub-insta-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.pub-insta-card-handle {
    color: #d97706;
    font-weight: 700;
}

.pub-insta-card-date {
    color: #64748b;
}

.pub-insta-card-caption {
    color: #334155;
    font-size: 0.88rem;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==========================================================================
   Contact & Booking Section
   ========================================================================== */
#contact {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.pub-contact-grid {
    display: flex;
    justify-content: center;
    width: 100%;
}

.pub-contact-info-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    max-width: 760px;
    width: 100%;
}

.pub-contact-info-box h3 {
    color: #0f172a;
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 16px;
    font-weight: 700;
}

.pub-contact-info-box p {
    color: #475569;
    margin-bottom: 28px;
    line-height: 1.6;
}

.pub-contact-channels {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.pub-channel-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    color: #0f172a;
    transition: all 0.2s ease;
}

.pub-channel-card:hover {
    transform: translateY(-2px);
    background: #ffffff;
    border-color: #cbd5e1;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.pub-channel-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(211, 47, 47, 0.1);
    border: 1px solid rgba(211, 47, 47, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    color: #d32f2f;
}

.pub-channel-icon-wa {
    background: rgba(37, 211, 102, 0.12) !important;
    border-color: rgba(37, 211, 102, 0.25) !important;
    color: #25D366;
}

.pub-channel-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.pub-channel-label {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.pub-channel-val {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pub-channel-action {
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    padding: 6px 12px;
    border-radius: 8px;
    background: #f1f5f9;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.pub-channel-card:hover .pub-channel-action {
    color: #0f172a;
    background: #e2e8f0;
}

.pub-wa-action-badge {
    color: #15803d !important;
    background: rgba(37, 211, 102, 0.12) !important;
    border: 1px solid rgba(37, 211, 102, 0.25);
}

.pub-channel-social-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 4px;
}

.pub-channel-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.pub-social-insta {
    background: linear-gradient(45deg, rgba(240, 148, 51, 0.12), rgba(220, 39, 67, 0.14), rgba(188, 24, 136, 0.12));
    border: 1px solid rgba(220, 39, 67, 0.25);
    color: #e11d48;
}

.pub-social-insta:hover {
    transform: translateY(-2px);
    background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(220, 39, 67, 0.35);
}

.pub-social-fb {
    background: rgba(24, 119, 242, 0.1);
    border: 1px solid rgba(24, 119, 242, 0.25);
    color: #1d4ed8;
}

.pub-social-fb:hover {
    transform: translateY(-2px);
    background: #1877F2;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(24, 119, 242, 0.35);
}

.pub-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    color: #1e293b;
}

.pub-contact-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(211, 47, 47, 0.1);
    border: 1px solid rgba(211, 47, 47, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #d32f2f;
}

.pub-contact-form-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.pub-form-group {
    margin-bottom: 20px;
}

.pub-form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

.pub-form-control {
    width: 100%;
    padding: 12px 16px;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    color: #0f172a;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    font-family: inherit;
}

.pub-form-control:focus {
    border-color: #d97706;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15);
}

.pub-form-control option {
    background: #ffffff;
    color: #0f172a;
}

textarea.pub-form-control {
    resize: vertical;
    min-height: 110px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.pub-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 1px solid transparent;
}

.pub-btn-primary {
    background: linear-gradient(135deg, #d32f2f, #ea580c);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.35);
}

.pub-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(211, 47, 47, 0.5);
    color: #ffffff;
}

.pub-btn-secondary {
    background: #f8fafc;
    color: #1e293b;
    border-color: #cbd5e1;
}

.pub-btn-secondary:hover {
    background: #f1f5f9;
    color: #0f172a;
    transform: translateY(-2px);
    border-color: #94a3b8;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.pub-footer {
    border-top: 1px solid #e2e8f0;
    padding: 48px 24px 24px 24px;
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
    margin-top: 60px;
    background: #ffffff;
}

.pub-footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.pub-footer-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 9999px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #475569;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.pub-footer-social-btn:hover {
    transform: translateY(-2px);
    color: #0f172a;
    background: #f1f5f9;
}

.pub-footer-insta:hover {
    background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
    border-color: transparent;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(220, 39, 67, 0.3);
}

.pub-footer-fb:hover {
    background: #1877F2;
    border-color: #1877F2;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(24, 119, 242, 0.3);
}

.pub-footer-wa:hover {
    background: #25D366;
    border-color: #25D366;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.pub-footer-mail:hover {
    background: #d32f2f;
    border-color: #d32f2f;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(211, 47, 47, 0.3);
}

.pub-footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.pub-footer-links a {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.pub-footer-links a:hover {
    color: #d97706;
}

/* ==========================================================================
   Lightbox Modal
   ========================================================================== */
#pub-lightbox-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.90);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    backdrop-filter: blur(14px);
}

#pub-lightbox-modal.active {
    display: flex;
}

.pub-lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    position: relative;
}

.pub-lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    display: block;
}

.pub-lightbox-close {
    position: absolute;
    top: -44px;
    right: 0;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 2.2rem;
    cursor: pointer;
    line-height: 1;
}

/* ==========================================================================
   Band Login Modal Overlay
   ========================================================================== */
#pub-login-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.78);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

#pub-login-overlay.active {
    display: flex;
}

.pub-login-dialog {
    background: #ffffff !important;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    max-width: 440px;
    width: 100%;
    padding: 34px 26px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    text-align: center;
    color: #0f172a !important;
}

.pub-login-dialog h2 {
    color: #0f172a !important;
    margin: 0 0 6px 0;
    font-size: 1.4rem;
    font-weight: 800;
}

.pub-login-dialog p {
    color: #64748b !important;
    font-size: 0.92rem;
    margin: 0 0 20px 0;
}

#pub-login-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin-top: 10px;
}

#pub-login-buttons-container .login-btn {
    width: 100% !important;
    margin: 0 !important;
    padding: 12px 18px !important;
    background: #f8fafc !important;
    color: #0f172a !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 14px !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    cursor: pointer !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04) !important;
    transition: all 0.2s ease !important;
    text-align: left !important;
}

#pub-login-buttons-container .login-btn:hover {
    background: #ffffff !important;
    border-color: #d97706 !important;
    color: #b45309 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px -2px rgba(217, 119, 6, 0.2) !important;
}

#pub-login-buttons-container .login-btn:active {
    transform: scale(0.98) !important;
}

#pub-login-buttons-container .login-btn .avatar-circle {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.15), rgba(245, 158, 11, 0.25)) !important;
    color: #0f172a !important;
    width: 36px !important;
    height: 36px !important;
    font-size: 1.25rem !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    box-shadow: none !important;
}

.pub-login-close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: #f1f5f9;
    border: none;
    color: #64748b;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.2s;
}

.pub-login-close:hover {
    background: #e2e8f0;
    color: #0f172a;
}

/* ==========================================================================
   Responsive Multi-Breakpoint Design System
   ========================================================================== */
@keyframes pubNavSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pub-hero-title, .pub-section-title, .pub-about-card h3, .pub-event-title {
    overflow-wrap: break-word;
    word-break: break-word;
}

@media (min-width: 1440px) {
    .pub-container {
        max-width: 1320px;
        padding: 0 32px;
    }
    .pub-hero {
        padding: 48px 32px 80px 32px;
    }
    .pub-members-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 26px;
    }
    .pub-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (max-width: 1200px) {
    .pub-container {
        max-width: 1040px;
        padding: 0 24px;
    }
    .pub-members-grid {
        grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
        gap: 18px;
    }
    .pub-hero-stats {
        gap: 28px;
    }
}

@media (max-width: 1024px) {
    .pub-contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .pub-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
    .pub-insta-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    .pub-section {
        padding: 65px 0;
    }
}

@media (max-width: 920px) {
    .pub-nav {
        padding: 12px 18px;
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
        padding-top: max(10px, env(safe-area-inset-top));
    }

    .pub-nav-logo {
        height: 36px;
    }

    .pub-mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: #f1f5f9;
        border: 1px solid #cbd5e1;
        border-radius: 10px;
        color: #0f172a;
        font-size: 1.4rem;
        cursor: pointer;
        transition: all 0.2s;
    }

    .pub-mobile-toggle:hover {
        background: #e2e8f0;
    }

    .pub-nav-links {
        display: none;
    }

    .pub-nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-bottom: 1px solid #e2e8f0;
        padding: 16px 20px 24px 20px;
        gap: 8px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        animation: pubNavSlideDown 0.22s ease-out forwards;
    }

    .pub-nav-links li {
        width: 100%;
    }

    .pub-nav-links a {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 12px 16px;
        font-size: 1.05rem;
        font-weight: 600;
        border-radius: 10px;
        color: #1e293b;
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        box-sizing: border-box;
    }

    .pub-nav-links a:hover {
        background: rgba(217, 119, 6, 0.1);
        color: #d97706;
    }

    .pub-btn-login {
        width: 100%;
        justify-content: center;
        padding: 12px 20px !important;
        font-size: 1rem !important;
        margin-top: 6px;
        border-radius: 10px !important;
    }
}

@media (max-width: 768px) {
    .pub-hero {
        padding: 24px 18px 50px 18px;
    }

    .pub-hero-photo-container {
        margin: 0 auto 20px auto;
    }

    .pub-hero-title {
        font-size: clamp(2rem, 6.5vw, 3rem);
        margin-bottom: 16px;
    }

    .pub-hero-desc {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 28px;
    }

    .pub-section {
        padding: 55px 0;
    }

    .pub-section-header {
        margin-bottom: 32px;
    }

    .pub-section-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }

    .pub-about-card, .pub-contact-info-box, .pub-contact-form-box {
        padding: 24px 18px;
        border-radius: 16px;
    }

    .pub-rep-col-arr {
        display: none !important;
    }

    .pub-rep-table th, .pub-rep-table td {
        padding: 10px 14px;
    }

    .pub-rep-title {
        font-size: 0.95rem;
    }
    .pub-rep-artist {
        font-size: 0.82rem;
    }

    .pub-event-card {
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        gap: 12px;
    }

    .pub-event-date-box {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        padding: 8px 14px;
        width: fit-content;
    }

    .pub-event-day {
        font-size: 1.5rem;
    }
    .pub-event-month {
        font-size: 0.82rem;
        margin-top: 0;
    }

    .pub-event-meta {
        gap: 10px 16px;
        font-size: 0.85rem;
    }

    .pub-insta-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px;
    }

    .pub-btn-insta {
        width: 100%;
        justify-content: center;
    }

    .pub-channel-social-row {
        grid-template-columns: 1fr;
    }

    .pub-footer-social {
        gap: 8px;
    }

    .pub-footer-social-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 560px) {
    .pub-insta-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pub-channel-card {
        padding: 12px 14px;
        gap: 10px;
    }
    .pub-container {
        padding: 0 16px;
    }

    .pub-hero-badge {
        font-size: 0.8rem;
        padding: 5px 14px;
        line-height: 1.35;
        white-space: normal;
        display: inline-block;
    }

    .pub-hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        padding-top: 24px;
    }

    .pub-stat-number {
        font-size: 1.6rem;
    }

    .pub-stat-label {
        font-size: 0.72rem;
    }

    .pub-members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .pub-member-card {
        padding: 16px 12px;
        border-radius: 14px;
    }

    .pub-member-avatar {
        width: 62px;
        height: 62px;
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .pub-member-name {
        font-size: 1.05rem;
        margin-bottom: 4px;
    }

    .pub-member-role {
        font-size: 0.78rem;
        margin-bottom: 8px;
    }

    .pub-member-desc {
        font-size: 0.76rem;
        line-height: 1.35;
    }

    .pub-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .pub-gallery-item {
        height: 150px;
        border-radius: 12px;
    }

    .pub-gallery-overlay {
        padding: 10px;
    }

    .pub-gallery-overlay h4 {
        font-size: 0.88rem;
    }

    .pub-gallery-overlay span {
        font-size: 0.72rem;
    }

    .pub-form-control, .pub-search-input {
        font-size: 16px !important;
        padding: 12px 14px;
    }

    .pub-contact-item {
        gap: 12px;
    }

    .pub-contact-item-icon {
        width: 38px;
        height: 38px;
        font-size: 1.15rem;
        border-radius: 10px;
    }
}

@media (max-width: 380px) {
    .pub-container {
        padding: 0 12px;
    }

    .pub-hero-title {
        font-size: 1.85rem;
    }

    .pub-members-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pub-gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .pub-gallery-item {
        height: 180px;
    }

    .pub-hero-stats {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

/* ==========================================================================
   Cookie- & Datenschutz-Hinweis Banner
   ========================================================================== */
.pub-cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 880px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 16px;
    box-shadow: 0 16px 40px -6px rgba(15, 23, 42, 0.18), 0 4px 12px rgba(0, 0, 0, 0.06);
    z-index: 99999;
    padding: 18px 24px;
    transform: translateY(140%);
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.pub-cookie-banner.is-visible {
    transform: translateY(0);
    opacity: 1;
}

.pub-cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.pub-cookie-text {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
    min-width: 280px;
}

.pub-cookie-icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}

.pub-cookie-text strong {
    display: block;
    color: #0f172a;
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.pub-cookie-text p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.5;
    color: #475569;
}

.pub-cookie-text a {
    color: #d97706;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
}

.pub-cookie-text a:hover {
    color: #b45309;
}

.pub-cookie-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.pub-cookie-btn {
    padding: 10px 18px;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    outline: none;
    font-family: inherit;
    white-space: nowrap;
}

.pub-cookie-btn-pri {
    background: #0f172a;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

.pub-cookie-btn-pri:hover {
    background: #1e293b;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.25);
}

.pub-cookie-btn-sec {
    background: #f1f5f9;
    color: #334155;
    border: 1px solid #e2e8f0;
}

.pub-cookie-btn-sec:hover {
    background: #e2e8f0;
    color: #0f172a;
}

@media (max-width: 640px) {
    .pub-cookie-banner {
        bottom: 12px;
        left: 12px;
        right: 12px;
        padding: 16px;
        border-radius: 14px;
    }
    .pub-cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    .pub-cookie-actions {
        flex-direction: column-reverse;
        width: 100%;
        gap: 8px;
    }
    .pub-cookie-btn {
        width: 100%;
        text-align: center;
        padding: 12px;
    }
}
