/* ═══════════════════════════════════════
   HOSPODSKÝ BORDEL — MAIN STYLESHEET
   Colors: #e8185a (pink), #0d0d0d (bg)
   Grit: 3/10 — subtle grain, rough touches
   ═══════════════════════════════════════ */

:root {
    --pink: #c0241f;
    --pink-glow: rgba(192, 36, 31, 0.35);
    --bg-dark: #0d0d0d;
    --bg-section: #111111;
    --bg-card: #141414;
    --border: #222;
    --text: #e0e0e0;
    --text-muted: #888;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    overflow-x: clip; /* iOS Safari safe alternative to body overflow-x:hidden */
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
}
.footer { margin-top: auto; }

/* ── GRAIN OVERLAY (subtle 3/10 grit) ── */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

h1, h2, h3, h4, .nav-logo, .btn-primary, .btn-outline, .nav-cta, .ticket-btn, .show-date {
    font-family: 'Oswald', 'Arial Narrow', sans-serif;
}

/* Handwritten accent font */

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { text-align: justify; }

/* ═══════════ NAVBAR ═══════════ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 48px;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: padding 0.3s;
}
.navbar.scrolled { padding: 10px 48px; }
.nav-logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
}
.nav-logo span { color: var(--pink); }
.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
}
.nav-links a {
    color: var(--white);
    font-size: 20px;
    letter-spacing: 0.5px;
    font-weight: 400;
    transition: color 0.2s;
    font-family: 'Inter', sans-serif;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
    background: var(--pink);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 3px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: box-shadow 0.3s;
}
.nav-cta:hover {
    box-shadow: 0 0 20px var(--pink-glow);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
    border-radius: 1px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════════ HERO ═══════════ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    background: url('foto-kapely-desktop-hq.webp') center 55% / cover no-repeat;
}
.hero-video-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    display: none;
}
.hero-video-wrap iframe {
    position: absolute;
    top: 50%; left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 */
    min-height: 100vh;
    min-width: 177.78vh; /* 16:9 */
    transform: translate(-50%, -50%);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.4) 0%,
        rgba(0,0,0,0.2) 40%,
        rgba(0,0,0,0.3) 70%,
        rgba(13,13,13,1) 100%
    );
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    width: 100%;
    padding: 0 24px 36px;
}
.hero-copy {
    color: rgba(255,255,255,0.45);
    font-size: 7px;
    letter-spacing: 0.5px;
    margin: 10px 0 0;
    font-family: 'Inter', sans-serif;
    display: none;
    text-align: left;
}
.hero-content h1 {
    font-size: clamp(42px, 8vw, 80px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 6px;
    line-height: 1.05;
    margin-bottom: 12px;
    color: var(--white);
    text-shadow: 0 4px 40px rgba(0,0,0,0.6);
}
.hero-content h1 span { color: var(--pink); }
.hero-subtitle {
    font-size: clamp(14px, 2vw, 18px);
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #ccc;
    margin-bottom: 36px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}
.hero-ctas {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 6px;
}
/* Smaller buttons inside hero to fit the space */
.hero-ctas .btn-primary,
.hero-ctas .btn-outline {
    padding: 9px 14px;
    font-size: 11px;
    letter-spacing: 1.5px;
    border-radius: 3px;
}
/* Desktop: hide Koncerty + Vstupenky, show only OUT NOW frame */
.hero-ctas .btn-mobile-only { display: none; }
.hero-ctas-row { display: none; }
/* OUT NOW hero text only */
.hero-outnow {
    display: block;
    width: calc(100% - 160px);
    padding: 14px 28px;
    border: 2px solid var(--white);
    background: rgba(255,255,255,0.10);
    color: var(--white);
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 3px;
    font-family: inherit;
    transition: opacity 0.25s;
}
.hero-outnow:hover {
    opacity: 0.75;
    background: transparent;
}
/* Desktop: spans inline as one line */
.outnow-title, .outnow-sub { display: inline; }
.outnow-title::after { content: " "; }
.hero-socials {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 4px;
    width: 100%;
}
.hero-socials a {
    opacity: 0.9;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 8px;
}
.hero-socials a:hover { opacity: 1; transform: scale(1.15); }
.social-icon {
    width: 28px;
    height: 28px;
    display: block;
}
/* Platform background colours */
.sl-fb { background: #1877F2; }
.sl-ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.sl-tt { background: #000000; }
.sl-yt { background: #FF0000; }
.sl-sp { background: #000000; }
.sl-am { background: #FC3C44; }
.btn-primary, .btn-outline {
    padding: 16px 22px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.3s;
    display: inline-block;
}
.btn-primary {
    background: var(--pink);
    color: var(--white);
    border: 2px solid var(--pink);
}
.btn-primary:hover {
    box-shadow: 0 0 30px var(--pink-glow);
}
.btn-outline {
    background: #fff;
    color: #000;
    border: 2px solid #fff;
}
.btn-outline:hover {
    background: rgba(255,255,255,0.88);
    border-color: #fff;
}

/* ═══════════ SECTION COMMON ═══════════ */
.section-padding {
    padding: 100px 48px;
    max-width: 1200px;
    margin: 0 auto;
}
section { position: relative; }

.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-header h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--white);
    margin-bottom: 8px;
}
.section-header .accent-line {
    width: 50px;
    height: 3px;
    background: var(--pink);
    margin: 0 auto 14px;
}
.section-header p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 550px;
    margin: 0 auto;
}
.section-subheading {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 6px;
}

/* Rough divider — subtle scratchy line between sections */

/* ═══════════ ALBUM ═══════════ */
.album-section { background: var(--bg-dark); }
.album-wrapper {}
.album-header-box {
    display: flex;
    align-items: center;
    gap: 20px;
    border: 2px solid #fff;
    padding: 18px 24px;
    border-radius: 4px;
    background: transparent;
    margin-bottom: 20px;
    width: 100%;
}
.album-cover-wrap { position: relative; flex-shrink: 0; }
.album-meta { display: flex; flex-direction: column; }
.album-cover {
    width: 95px;
    height: 95px;
    aspect-ratio: 1;
    border-radius: 4px;
    display: block;
    object-fit: cover;
    background: #000;
}
.album-cover .placeholder-icon { font-size: 56px; margin-bottom: 12px; }
.album-meta h3 {
    font-size: 30px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    letter-spacing: 1px;
}
.album-meta .album-year {
    color: var(--pink);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 28px;
    font-family: 'Inter', sans-serif;
}
.tracklist { list-style: none; }
.tracklist li {
    display: flex;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: #bbb;
    font-size: 15px;
    transition: color 0.2s;
    cursor: pointer;
}
.tracklist li:hover { color: var(--white); }
.track-num {
    color: var(--pink);
    font-weight: 700;
    width: 36px;
    font-size: 13px;
    font-family: 'Oswald', sans-serif;
}
.track-name { flex: 1; }
.track-duration { color: #555; font-size: 13px; margin-right: 12px; }
.track-play {
    width: 30px; height: 30px;
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 7px;
    transition: all 0.2s;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
}
.tracklist li:hover .track-play {
    border-color: var(--pink);
    color: var(--pink);
}
.track-spotify {
    display: flex;
    align-items: center;
    margin-left: 10px;
    flex-shrink: 0;
    opacity: 0.85;
    transition: opacity 0.2s, transform 0.2s;
}
.track-spotify:hover { opacity: 1; transform: scale(1.15); }
.track-spotify-icon { width: 22px; height: 22px; display: block; }
.video-section {
    margin-top: 48px;
    text-align: center;
}
.video-title {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #aaa;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
    text-align: center;
}
.video-wrap {
    position: relative;
    width: 75%;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
}
.video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}
.video-thumb-link {
    display: block;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}
.video-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease;
}
.video-thumb-link:hover .video-thumb-img {
    transform: scale(1.03);
}
.video-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.35);
    border-radius: 8px;
    transition: background 0.2s;
}
.video-thumb-link:hover .video-play-btn {
    background: rgba(0,0,0,0.5);
}
.video-play-btn span {
    width: 72px;
    height: 72px;
    background: var(--pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    padding-left: 5px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    transition: transform 0.2s;
}
.video-thumb-link:hover .video-play-btn span {
    transform: scale(1.1);
}

/* ═══════════ SHOWS ═══════════ */
.shows-section { background: var(--bg-dark); }
.month-group { margin-bottom: 36px; }
.month-heading {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 14px;
    padding-left: 2px;
}
.shows-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.show-card {
    display: grid;
    grid-template-columns: 110px 1fr auto;
    gap: 28px;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 28px 32px;
    transition: all 0.3s;
    position: relative;
}
.show-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0; bottom: 0;
    width: 3px;
    background: var(--pink);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 4px 0 0 4px;
}
.show-card:hover { border-color: rgba(232,24,90,0.3); }
.show-card:hover::before { opacity: 1; }
.show-date { text-align: center; }
.show-date .day {
    font-size: 44px;
    font-weight: 700;
    color: var(--pink);
    line-height: 1;
    letter-spacing: 1px;
}
.show-date .month {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}
.show-info h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
    letter-spacing: 1px;
}
.show-info p { color: var(--text-muted); font-size: 14px; }
.show-tickets {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.ticket-btn {
    padding: 11px 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}
.tickets-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-top: 20px;
}
.ticket-btn.smsticket {
    background: var(--pink);
    color: var(--white);
}
.ticket-btn.smsticket:hover { box-shadow: 0 0 16px var(--pink-glow); }
.ticket-btn.smsticket-soon {
    background: #c8c8c8;
    color: #888;
    border: none;
    cursor: not-allowed;
    pointer-events: none;
}
.smsticket-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.coming-soon-label {
    font-size: 9px;
    color: #999;
    letter-spacing: 1px;
    text-transform: lowercase;
    font-family: inherit;
}

/* ═══════════ ABOUT ═══════════ */
.about-section { background: var(--bg-dark); }
.about-history {
    margin-top: 64px;
    border-top: 1px solid var(--border);
    padding-top: 48px;
}
.about-history-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}
.about-history-header h3 {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.about-history p {
    color: #aaa;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
    max-width: 820px;
    text-align: left !important;
}
.about-name-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 36px;
}
.about-name-block {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 24px;
}
.about-name-word {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--pink);
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.about-name-block p {
    color: #999;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    text-align: left !important;
}
.members-section {
    margin-top: 48px;
}
.members-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 8px;
    margin-top: 28px;
}
.member-card {
    background: transparent;
    border: none;
    transition: transform 0.2s;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.member-card:hover {
    transform: translateY(-4px);
}
.member-photo {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: top;
    display: block;
    border-radius: 50%;
    margin: 0 auto;
}
.member-name {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin: 6px 0 0 0;
    padding: 0;
    line-height: 1.3;
    display: block;
    text-align: center;
    width: 100%;
}
.member-instruments {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #888;
    margin: 2px 0 0 0;
    padding: 0;
    line-height: 1.5;
    display: block;
    text-align: center;
    width: 100%;
}
.about-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 56px;
    align-items: center;
}
.about-photo-wrap { position: relative; }
.about-photo {
    width: 100%;
    aspect-ratio: 3/2;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}
.about-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 75%;
}
.about-text h3 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 1px;
}
.about-text p {
    color: #aaa;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    text-align: left !important;
}

/* ═══════════ GALLERY ═══════════ */
.gallery-section { background: var(--bg-dark); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 8px;
}
.gallery-grid .item {
    background: linear-gradient(135deg, #151520, #1a1a22);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    font-size: 13px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s;
}
.gallery-grid .item:hover { transform: scale(1.02); z-index: 2; }
.gallery-grid .item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.gallery-grid .item:hover img { transform: scale(1.06); }
.gallery-grid .item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

/* ── Lightbox ── */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
    z-index: 10000;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    font-size: 48px;
    width: 56px;
    height: 80px;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.2s, background 0.2s;
    z-index: 10000;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover,
.lightbox-next:hover { opacity: 1; background: rgba(255,255,255,0.2); }


/* ═══════════ MAILING LIST ═══════════ */
.mailing-section {
    background: var(--bg-dark);
    position: relative;
}
.mailing-section .section-header { margin-bottom: 24px; }
.mailing-content {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}
.mailing-content h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--white);
    margin-bottom: 10px;
}
.mailing-content > p {
    color: var(--text-muted);
    margin-bottom: 28px;
}
.contact-info {
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
    text-align: center;
}
.contact-info .contact-role {
    color: #888;
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
    text-align: center;
}
.contact-info .contact-name {
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 4px;
    text-align: center;
}
.contact-info a {
    color: #aaa;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}
.contact-info a:hover { color: var(--pink); }
.contact-divider {
    border-top: 1px solid var(--border);
    margin: 32px 0;
}
.newsletter-block { text-align: center; }
.newsletter-title {
    font-size: clamp(16px, 2.5vw, 24px);
    font-weight: 600;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 6px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}
.newsletter-sub {
    color: #888;
    font-size: 13px;
    margin-bottom: 20px;
}
.email-form {
    display: flex;
    gap: 10px;
}
.email-form input {
    flex: 1;
    padding: 16px 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid #333;
    border-radius: 3px;
    color: var(--white);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
}
.email-form input:focus {
    outline: none;
    border-color: var(--pink);
}
.email-form input::placeholder { color: #555; }
.email-form button {
    padding: 16px 28px;
    background: var(--pink);
    border: none;
    color: var(--white);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 3px;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    transition: box-shadow 0.3s;
    white-space: nowrap;
}
.email-form button:hover { box-shadow: 0 0 20px var(--pink-glow); }
.contact-socials {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 0;
    margin-bottom: 40px;
}
.contact-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border-radius: 8px;
    transition: opacity 0.2s;
}
.contact-socials a:hover { opacity: 0.75; }
.contact-socials .sl-fb { background: #1877F2; }
.contact-socials .sl-ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.contact-socials .sl-tt { background: #000000; }
.contact-socials .sl-yt { background: #FF0000; }
.contact-socials .sl-sp { background: #000000; }
.contact-socials .sl-am { background: #FC3C44; }

/* ═══════════ FOOTER ═══════════ */
.footer {
    background: #0d0d0d;
    padding: 32px 48px 0;
}
.footer-follow {
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    margin-top: 20px;
    margin-bottom: 4px;
    text-align: center;
    width: 100%;
    display: block;
}
.footer-socials {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 0;
    margin-bottom: 40px;
}
.footer-socials a {
    opacity: 0.9;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 8px;
}
.footer-socials a:hover { opacity: 1; transform: scale(1.15); }
.footer-socials .sl-fb { background: #1877F2; }
.footer-socials .sl-ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.footer-socials .sl-tt { background: #000000; }
.footer-socials .sl-yt { background: #FF0000; }
.footer-socials .sl-sp { background: #000000; }
.footer-socials .sl-am { background: #FC3C44; }
.footer-contact {
    color: #555;
    font-size: 14px;
    margin-bottom: 6px;
    text-align: center;
}
.footer-contact a {
    color: #777;
    transition: color 0.2s;
}
.footer-contact a:hover { color: var(--pink); }
.footer-copy {
    color: #fff;
    font-size: 12px;
    margin: 0;
    text-align: left;
}

/* ═══════════ NAV SOCIAL ICONS ═══════════ */
.nav-socials {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    padding: 5px;
    opacity: 0.85;
    transition: opacity 0.2s, transform 0.2s;
}
.nav-social-link:hover { opacity: 1; transform: scale(1.1); }
.nav-social-icon {
    width: 20px;
    height: 20px;
    display: block;
}
.mobile-nav-socials {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}
.mobile-nav-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 8px;
    opacity: 0.9;
    transition: opacity 0.2s, transform 0.2s;
}
.mobile-nav-socials a:hover { opacity: 1; transform: scale(1.15); }

/* ═══════════ MOBILE NAV OVERLAY ═══════════ */
.mobile-nav {
    position: fixed;
    inset: 0;
    background: rgba(8, 8, 8, 0.97);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.mobile-nav.active {
    opacity: 1;
    pointer-events: all;
}
.mobile-nav a {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    color: var(--white);
    letter-spacing: 2px;
    font-weight: 600;
    transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--pink); }
.mobile-nav .nav-cta {
    font-size: 20px;
    padding: 14px 36px;
    margin-top: 8px;
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
    .album-header-box {
        width: 100%;
    }
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 180px;
    }
    .gallery-grid .item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 2;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 20px;
        position: fixed;
        top: 0; left: 0; right: 0;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(10, 10, 10, 0.97);
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    .navbar.scrolled { padding: 10px 20px; }
    .nav-links { display: none; }
    .nav-socials { display: none; }
    .hamburger { display: flex; }

    .section-padding { padding: 72px 20px; }

    .hero-video-wrap { display: none; }
    .hero { height: 670px; min-height: 600px; background: url('foto-kapely-mob.webp') center top / cover no-repeat; }
    .hero-content { padding-bottom: 8px; }

    .hero-content h1 { letter-spacing: 3px; }

    .album-header-box {
        width: 100%;
    }

    .show-card {
        grid-template-columns: 80px 1fr;
        gap: 16px;
        padding: 20px;
    }
    .show-tickets {
        grid-column: span 2;
        justify-content: flex-start;
    }
    .show-date .day { font-size: 36px; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
    }
    .gallery-grid .item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }


    .members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 16px;
    }
    .member-name { font-size: 13px; font-weight: 700; color: #ffffff; margin: 8px 0 0 0; line-height: 1.2; text-align: center; display: block; width: 100%; }
    .member-instruments { font-size: 11px; margin: 3px 0 0 0; line-height: 1.4; text-align: center; display: block; width: 100%; }
    .member-photo { width: 100%; display: block; }

    .email-form {
        flex-direction: column;
    }
    .email-form button { width: 100%; }

    .footer { padding: 32px 20px 0; }
}

@media (max-width: 480px) {
    .section-padding { padding: 56px 16px; }

    .hero { height: calc(100svh - 51px); min-height: 520px; align-items: stretch; }
    .footer { margin-top: 0; }
    .hero-content { padding-bottom: 16px; height: 100%; display: flex; flex-direction: column; align-items: center; }
    .hero-copy { display: none; }
    .hero-content h1 { letter-spacing: 2px; }
    .btn-primary, .btn-outline {
        padding: 6px 32px;
        font-size: 12px;
        width: 145px;
        text-align: center;
    }
    .hero-ctas { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: auto; margin-bottom: 12px; order: 1; }
    .footer-follow { order: 2; margin-top: 0; }
    .hero-socials { order: 3; }
    .hero-ctas-row { display: flex; flex-direction: row; justify-content: center; gap: 10px; width: 100%; }
    .hero-ctas-row .btn-mobile-only { width: auto; }
    .album-header-box { flex-direction: row; width: 100%; }
    .hero-ctas .btn-mobile-only { display: inline-block; }
    /* OUT NOW — full width bordered button */
    .hero-outnow {
        display: block;
        width: 100%;
        background: rgba(255,255,255,0.10);
        border: 2px solid var(--white);
        padding: 11px 16px;
        text-align: center;
        text-transform: uppercase;
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 2px;
        white-space: nowrap;
        color: var(--white);
        font-family: inherit;
        text-decoration: none;
        transition: opacity 0.2s;
    }
    .outnow-title, .outnow-sub { display: inline; font-size: inherit; font-weight: inherit; letter-spacing: inherit; color: inherit; }
    .outnow-title::after { content: " "; }
    .hero-outnow:active { opacity: 0.75; }
    .btn-primary, .btn-outline {
        width: auto;
        padding: 10px 40px;
        font-size: 12px;
    }
    .social-icon { width: 20px; height: 20px; }
    .hero-socials a { padding: 6px; border-radius: 8px; }
    .footer-socials { gap: 16px; }
    .footer-socials a { width: auto; height: auto; padding: 6px; border-radius: 8px; border: none; background: transparent; }
    .footer-socials .sl-fb { background: #1877F2; }
    .footer-socials .sl-ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
    .footer-socials .sl-tt { background: #000000; }
    .footer-socials .sl-yt { background: #FF0000; }
    .footer-socials .sl-sp { background: #000000; }
    .footer-socials .sl-am { background: #FC3C44; }

    .show-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .show-info h4, .show-info p { text-align: center !important; }
    .show-tickets {
        grid-column: span 1;
        justify-content: center;
    }
    .show-date { margin-bottom: 4px; }


    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
    .gallery-grid .item:nth-child(1) {
        grid-column: span 1;
    }
}

/* ═══════════ ANIMATIONS ═══════════ */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 769px) {
    .newsletter-title {
        font-size: 19px;
    }
}

.contact-box {
    display: inline-block;
    border: 2px solid #ffffff;
    border-radius: 6px;
    padding: 24px 36px;
    text-align: center;
    margin: 0 auto;
}
