:root {
    --neon-purple: #c084fc;
    --purple-glow: rgba(192, 132, 252, 0.5);
    --purple-dark: #a855f7;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    padding: 0;
}

/* Navigation Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(192, 132, 252, 0.3);
    box-shadow: 0 4px 20px rgba(192, 132, 252, 0.1);
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-purple);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--purple-glow);
}

nav a:hover {
    color: var(--neon-purple);
}

nav a:hover::after {
    width: 100%;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 2rem;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.lang-btn:hover {
    background: rgba(192, 132, 252, 0.2);
    border-color: var(--neon-purple);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--purple-glow);
}

.lang-btn.active {
    background: var(--neon-purple);
    color: black;
    border-color: var(--neon-purple);
    box-shadow: 0 0 20px var(--purple-glow);
}

/* Main content wrapper */
main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 70px;
}

section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    position: relative;
}

section h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    z-index: 10;
    text-shadow: 0 0 30px var(--purple-glow), 0 0 10px rgba(255, 255, 255, 0.3);
}

.section-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    width: 100%;
    color: white;
    text-align: center;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
}

.video-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(192, 132, 252, 0.2);
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--purple-glow);
    border-color: var(--neon-purple);
}

.video-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.video-card:hover img {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-card:hover .video-overlay {
    background: rgba(255, 0, 0, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-overlay::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

/* Music Grid */
.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    width: 100%;
}

.album-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(192, 132, 252, 0.2);
    background: rgba(18, 18, 18, 0.8);
    height: 80px;
}

.album-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--purple-glow);
    border-color: var(--neon-purple);
}

.album-card iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    border-radius: 12px;
}

.streaming-platforms {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.platform-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    gap: 0.5rem;
}

.platform-link:hover {
    background: rgba(192, 132, 252, 0.1);
    border-color: var(--neon-purple);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--purple-glow);
}

.platform-link i {
    font-size: 1.2rem;
}

.platform-link.spotify:hover {
    background: rgba(30, 215, 96, 0.2);
    border-color: #1DB954;
}

.platform-link.apple:hover {
    background: rgba(252, 60, 68, 0.2);
    border-color: #fc3c44;
}

.platform-link.youtube:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: #ff0000;
}

.platform-link.deezer:hover {
    background: rgba(255, 0, 175, 0.2);
    border-color: #FF00AF;
}

.platform-link.tidal:hover {
    background: rgba(0, 0, 0, 0.3);
    border-color: #ffffff;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem auto;
    max-width: 500px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.2rem;
    color: white;
    text-decoration: none;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(192, 132, 252, 0.1);
    border-color: var(--neon-purple);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--purple-glow);
}

.contact-item i {
    font-size: 1.5rem;
}

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.star {
    position: absolute;
    background-color: white;
    border-radius: 50%;
    animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

.logo-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
    margin: 1rem 0 1.5rem;
}

.logo-nazev {
    max-width: 50vw;
    max-height: 10vh;
    width: auto;
    height: auto;
    animation: fadeGlow 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px var(--purple-glow));
}

@keyframes fadeGlow {
    0%, 100% {
        opacity: 0.8;
        filter: drop-shadow(0 0 20px var(--purple-glow)) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    }
    50% {
        opacity: 1;
        filter: drop-shadow(0 0 30px var(--neon-purple)) drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
    }
}

/* Band info section */
.band-info {
    position: relative;
    z-index: 10;
    color: white;
    text-align: center;
    max-width: 700px;
    margin: 0.75rem auto 0.5rem;
    padding: 0 1.5rem;
    line-height: 1.5;
}

.band-info h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.band-info p {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Social links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(192, 132, 252, 0.1);
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(192, 132, 252, 0.3);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--purple-glow);
}

.social-link.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #e6683c;
}

.social-link.spotify:hover {
    background: #1db954;
    border-color: #1db954;
}

.social-link.apple:hover {
    background: #fc3c44;
    border-color: #fc3c44;
}

.social-link.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
}

.social-link.tiktok:hover {
    background: #000000;
    border-color: #00f2ea;
    box-shadow: 0 10px 30px rgba(0, 242, 234, 0.5);
}

/* Photo Gallery */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    width: 100%;
    max-width: 1200px;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(192, 132, 252, 0.3);
    cursor: pointer;
    z-index: 10;
    max-height: 55vh;
    background-color: #000000;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px var(--purple-glow), 0 0 20px var(--purple-glow);
    border-color: var(--neon-purple);
    z-index: 20;
}

.gallery-item img {
    width: 100%;
    height: auto;
    max-height: 55vh;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

/* Photo 1 (photo2.jpg - band standing) */
.gallery-item:nth-child(1) img {
    transform: scale(1.3);
    object-position: center center;
}

.gallery-item:nth-child(1):hover img {
    transform: scale(1.52);
}

/* Photo 2 (photo.jpg - band sitting) */
.gallery-item:nth-child(2) img {
    transform: scale(1.15);
    object-position: center 40%;
}

.gallery-item:nth-child(2):hover img {
    transform: scale(1.25);
}

/* Photo 3 (photo5.jpg - live performance) */
.gallery-item:nth-child(3) img {
    transform: scale(2.4);
    object-position: center 30%;
}

.gallery-item:nth-child(3):hover img {
    transform: scale(2.5);
}

/* Band photo section */
.band-photo-container {
    position: relative;
    z-index: 10;
    margin: 1rem auto 1rem;
    padding: 0 1.5rem;
    max-width: 800px;
}

.band-photo {
    width: 100%;
    height: auto;
    max-height: 55vh;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(192, 132, 252, 0.2);
    border: 3px solid rgba(192, 132, 252, 0.3);
    transition: all 0.4s ease;
    display: block;
}

.band-photo:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6),
                0 0 40px var(--purple-glow);
    border-color: var(--neon-purple);
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    nav {
        padding: 0.75rem 1rem;
        flex-wrap: wrap;
    }

    nav ul {
        gap: 1.5rem;
    }

    nav a {
        font-size: 0.9rem;
    }

    .language-switcher {
        margin-left: 0;
        margin-top: 0.5rem;
        width: 100%;
        justify-content: center;
    }

    section h2 {
        font-size: 2rem;
    }

    main {
        padding-top: 60px;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .photo-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* Hide third photo on tablet too */
    .gallery-item:nth-child(3) {
        display: none !important;
    }

    .gallery-item img {
        max-height: 45vh;
    }

    .music-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .album-card {
        height: 80px;
    }

    .platform-link {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .contact-item {
        font-size: 1rem;
    }

    .contact-item i {
        font-size: 1.2rem;
    }

    .logo-container {
        margin: 0.5rem 0;
    }

    .logo-nazev {
        max-width: 65vw;
        max-height: 10vh;
    }

    .band-info {
        margin: 0.75rem auto 1rem;
    }

    .band-info h1 {
        font-size: 2rem;
    }

    .band-info p {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .band-photo-container {
        margin: 0.75rem auto 0.75rem;
        max-width: 700px;
    }

    .band-photo {
        max-height: 50vh;
        border-radius: 12px;
        border-width: 2px;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 0.5rem 0.5rem;
    }

    nav ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav a {
        font-size: 0.85rem;
    }

    section h2 {
        font-size: 1.75rem;
    }

    .logo-container {
        gap: 1rem;
        margin-top: 0.5rem;
    }

    .logo-nazev {
        max-width: 85vw;
        max-height: 10vh;
    }

    .band-info {
        margin: 1.5rem auto;
        padding: 0 1rem;
    }

    .band-info h1 {
        font-size: 1.5rem;
    }

    .band-info p {
        font-size: 0.95rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .band-photo-container {
        margin: 1.5rem auto 1rem;
        padding: 0 1rem;
    }

    .band-photo {
        border-radius: 10px;
        border-width: 2px;
    }

    #home {
        padding: 1rem;
    }

    .photo-gallery {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 0 0.5rem;
    }

    .gallery-item img {
        max-height: 45vh !important;
    }

    /* Hide third photo on mobile */
    .gallery-item:nth-child(3) {
        display: none !important;
    }

    /* Reset all photo transforms for mobile - simpler, cleaner look */
    .gallery-item:nth-child(1) img,
    .gallery-item:nth-child(2) img {
        transform: scale(1.2) !important;
        object-position: center center !important;
    }

    .gallery-item:nth-child(1):hover img,
    .gallery-item:nth-child(2):hover img {
        transform: scale(1.25) !important;
    }

    .music-grid {
        grid-template-columns: 1fr;
    }

    .album-card {
        height: 80px;
    }

    .platform-link {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* Landscape orientation on mobile */
@media (max-height: 600px) and (orientation: landscape) {
    body {
        padding: 1rem 0;
    }

    .logo-container {
        gap: 0.75rem;
        margin-top: 0.5rem;
    }

    .logo-nazev {
        max-width: 35vw;
        max-height: 15vh;
    }

    .band-info {
        margin: 1rem auto;
    }

    .band-info p {
        font-size: 0.85rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .band-photo-container {
        margin: 1rem auto;
        padding: 0 1rem;
        max-width: 500px;
    }

    .band-photo {
        border-radius: 10px;
        border-width: 2px;
    }
}

