
html {
    scroll-behavior: smooth;
}
body {
    background-color: #121212;
    color: white;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
}
.hero {
    background: var(--downbelow-hero) center center / cover no-repeat;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.hero h1 {
    font-size: clamp(3rem, 10vw, 8rem);
    color: white;
    text-shadow: 0 0 20px rgba(0,0,0,0.7);
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    font-weight: 700;
}
.hero-claim {
    font-size: 2rem;
    color: #ddd;
    font-weight: 400;
    margin-top: 1rem;
    z-index: 2;
    position: relative;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.hero-claim {
    animation: fadeInUp 1.5s ease-out 1.2s forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero .scroll-down {
    position: relative;
    z-index: 2;
    margin-top: 2rem;
    font-size: 2rem;
    color: white;
    animation: bounce 2s infinite;
}

.hero-socials {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 3;
    display: flex;
    gap: 1rem;
}

.social-icon {
    color: white;
    font-size: 1.4rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    color: #999;
}


@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}
.logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    background-color: #333;
    border-radius: 50%;
}
h1 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}
.link-button {
    background-color: #b0b0b0;
    border-radius:15px;
    margin: 0.5rem auto;
    padding: 1rem;
    text-decoration: none;
    color: black;
    transition: background-color 0.3s ease;
    max-width: 400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.link-button:hover {
    background-color: #999;
    color: white;
}
.link-button .icon {
    font-size: 1.5rem;
}
.play-button {
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.play-button::before {
    content: '\25B6';
    color: black;
    font-size: 14px;
}
.concert-tile {
    background-color: #1e1e1e;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    color: white;
    text-align: left;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}
.concert-tile .btn {
    margin-right: 0.5rem;
}
.intro-text-container {
    max-width: 55%;
    margin: 1rem auto 1rem auto;
    text-align: left;
}
@media (max-width: 991.98px) {
    .intro-text-container {
        max-width: 100%;
        margin: 2rem auto;
        text-align: center;
    }
}
.custom-toggle {
    background: none;
    border: 1px solid white;
    color: white;
    font-size: 0.9rem;
    padding: 0.25rem 1rem;
    border-radius: 4px;
}
.custom-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}
.concert-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    object-fit: cover;
    height: 180px;
}

.member-tile {
    background-color: #1e1e1e;
    border-radius: 12px;
    padding: 1.5rem;
    color: white;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
    transition: transform 0.2s ease;
}
.member-tile:hover {
    transform: translateY(-4px);
}
.member-photo {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid #333;
}
.member-tile h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.member-tile p {
    margin-bottom: 0;
    color: #ccc;
    font-size: 0.95rem;
}

.release-tile {
    background-color: #1e1e1e;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease;
}

.release-tile:hover {
    transform: translateY(-4px);
}

.release-cover {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.release-tile .text-muted {
    color: #aaa !important;
}

.tracklist-wrapper {
    display: inline-block;
    text-align: left;
}

.tracklist {
    list-style-position: outside;
    font-size: 0.9rem;
    color: #ccc;
    padding-left: 1.5rem;
    margin: 0 auto;
    text-align: left;
}

.tracklist li {
    margin-bottom: 0.3rem;
}



footer {
    background-color: #1a1a1a;
    color: #ccc;
    margin-top: 6rem; /* výrazné odsazení od obsahu */
    padding: 2rem 1rem;
}

footer h5 {
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

footer p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s ease;
}

footer a:hover {
    color: #fff;
    text-decoration: underline;
}

footer i {
    color: #bbb;
    font-size: 1rem;
    vertical-align: middle;
    margin-right: 0.5rem;
}

footer hr {
    border-top: 1px solid #333;
    margin: 2rem 0;
}
html{scroll-padding-top:80px} .hero{min-height:600px;height:100svh} @media(max-width:600px){.hero-claim{font-size:1.25rem;padding-inline:20px}.hero{min-height:500px}.hero-socials{top:90px}}
