/*
Theme Name: Norbi Custom Theme
Author: Norbert Dudziuk
Version: 1.0
Description: Dedykowany, czysty motyw dla strony artysty NORBI w odcieniach grafitu i fioletu.
*/

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

:root {
    --bg-dark: #121215;
    --bg-card: #1c1c22;
    --bg-card-hover: #25252e;
    --accent-purple: #9d4edd;
    --accent-glow: #c77dff;
    --accent-pink: #e0aaff;
    --text-main: #f3f3f7;
    --text-muted: #a0a0b0;
    --border-color: #2e2e3a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(18, 18, 21, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(157, 78, 221, 0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
}

.logo span {
    color: var(--accent-purple);
    text-shadow: 0 0 10px var(--accent-purple);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s, text-shadow 0.3s;
}

.nav-links a:hover {
    color: var(--accent-glow);
    text-shadow: 0 0 8px var(--accent-purple);
}

.hero {
    height: 100vh;
    max-height: 750px;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(circle at center, rgba(157, 78, 221, 0.18) 0%, rgba(18, 18, 21, 1) 75%);
    padding-top: 70px;
    overflow: hidden;
}

.hero-container-relative {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.hero-content {
    text-align: left;
    z-index: 2;
}

/* Przesunięcie zdjęcia do samej dolnej krawędzi sekcji */
.hero-image-wrapper {
    position: absolute;
    right: 0;
    bottom: -400px; /* Obniża zdjęcie do samej dolnej linii */
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    pointer-events: none;
    z-index: 1;
}

.hero-image-person {
    width: auto;
    max-height: 780px; /* Kontrola wielkości postaci */
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(157, 78, 221, 0.35));
}
.hero-title {
    font-size: 100px; /* Możesz wpisać np. 90px, 110px lub 120px */
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    line-height: 0.95; /* Trzyma tekst w zwięzłym pionie przy większej czcionce */
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff 40%, var(--accent-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 35px rgba(157, 78, 221, 0.4);
}
.hero-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-align: left; /* Wyśrodkowuje sam podtytuł */
    width: 100%;
}

@media (max-width: 992px) {
    .hero {
        height: auto;
        padding: 100px 0 0;
    }
    
    .hero-container-relative {
        display: flex;
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .hero-image-wrapper {
        position: relative;
        bottom: 0;
        width: 100%;
        justify-content: center;
    }
    
    .hero-image-person {
        max-height: 400px;
    }
}
.btn-primary {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--accent-purple), #7b2cbf);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 30px;
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.8);
}

section {
    padding: 100px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-purple);
    margin: 15px auto 0;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--accent-purple);
}

.bio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.bio-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #2a2a35, #15151c);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.bio-image::after {
    content: 'NORBI';
    font-size: 72px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    letter-spacing: 5px;
}

.bio-text p {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
}

.bio-text strong {
    color: var(--text-main);
}

.discography-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.album-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.album-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-purple);
    box-shadow: 0 10px 25px rgba(157, 78, 221, 0.2);
}

.album-cover {
    width: 100%;
    aspect-ratio: 1;
    background: #282833;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-glow);
    font-weight: 700;
    font-size: 18px;
    border: 1px solid rgba(255,255,255,0.05);
}

.album-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.album-year {
    font-size: 14px;
    color: var(--accent-glow);
    font-weight: 600;
    margin-bottom: 12px;
}

.album-desc {
    font-size: 13px;
    color: var(--text-muted);
}

.tour-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 850px;
    margin: 0 auto;
}

.tour-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-card);
    padding: 20px 30px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: background 0.3s, border-color 0.3s;
}

.tour-item:hover {
    background: var(--bg-card-hover);
    border-color: rgba(157, 78, 221, 0.4);
}

.tour-date {
    font-size: 18px;
    font-weight: 800;
    color: var(--accent-glow);
    min-width: 120px;
}

.tour-info {
    flex-grow: 1;
    padding: 0 20px;
}

.tour-city {
    font-size: 18px;
    font-weight: 700;
}

.tour-venue {
    font-size: 14px;
    color: var(--text-muted);
}

.btn-ticket {
    padding: 8px 20px;
    border: 1px solid var(--accent-purple);
    color: var(--text-main);
    text-decoration: none;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-ticket:hover {
    background: var(--accent-purple);
    box-shadow: 0 0 15px var(--accent-purple);
}

footer {
    background: #0a0a0d;
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-contact h4 {
    font-size: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-contact p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 5px;
}

.footer-contact a {
    color: var(--accent-glow);
    text-decoration: none;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    background: var(--bg-card);
    border-radius: 30px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.social-link:hover {
    border-color: var(--accent-purple);
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.4);
    transform: translateY(-2px);
}

.instagram-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    color: var(--accent-pink);
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 25px;
}

@media (max-width: 992px) {
    .hero-title { font-size: 65px; }
    .bio-grid { grid-template-columns: 1fr; gap: 30px; }
    .bio-image { height: 300px; }
}

@media (max-width: 768px) {
    nav { flex-direction: column; justify-content: center; gap: 10px; height: auto; padding: 15px 0; }
    .nav-links { gap: 15px; font-size: 12px; }
    .hero-title { font-size: 45px; }
    .hero-subtitle { font-size: 15px; }
    .section-title { font-size: 28px; }
    .tour-item { flex-direction: column; text-align: center; gap: 12px; }
    .tour-info { padding: 0; }
    .footer-content { flex-direction: column; text-align: center; }
}
.bio-image-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.album-cover-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}