/* Základní nastavení */
body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #080010;
    color: #e5e5e5;
    text-align: center;
}

/* Horní ikonové menu */
.top-menu {
    width: 100%;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 0, 204, 0.25);
}
.top-menu ul {
    margin: 0;
    padding: 0.6rem 1rem;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
}
.top-menu a {
    color: #e8e8e8;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transition: 0.25s;
}
.top-menu a:hover {
    color: #ff66ff;
    text-shadow: 0 0 8px #ff00cc;
    transform: translateY(-2px);
}
.top-menu .inactive {
    opacity: 0.4;
    cursor: default;
    pointer-events: none;
}

/* Hero sekce */
.hero {
    position: relative;
    width: 100%;
    height: 60vh;
    background:
        linear-gradient(180deg, rgba(255,0,150,0.4), rgba(0,200,255,0.4)),
        url('Photo/DSC_4639.jpg') center center / cover no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 2rem;
    box-shadow: 0 0 40px rgba(0,0,0,0.7) inset;
}
.band-logo {
    width: 312px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    filter: drop-shadow(0 0 12px #ff00cc);
    z-index: 10;
}

/* Úvodní blok – booking vlevo, video vpravo */
.intro-wrapper {
    display: flex;
    justify-content: center;      /* oba bloky doprostřed */
    align-items: center;          /* vertikální zarovnání */
    gap: 3rem;                    /* mezera mezi bloky */
    max-width: 1100px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

/* Levá část */
.intro-left {
    flex: 0 1 auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-end;        /* zarovnání směrem ke středu */
    gap: 1rem;                    /* jemné odsazení */
}

/* Pravá část – video */
.intro-right {
    flex: 0 1 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.intro-right video {
    width: 40%;               /* tvoje nastavení */
    max-width: 300px;         /* tvoje nastavení */
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover efekt na video */
.intro-right video:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 0, 200, 0.6);
}

/* Booking */
.booking {
    text-align: right;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    color: #ffffff;
    text-shadow: 0 0 8px #ff00cc;
}
.booking a {
    color: #fff;
    text-decoration: none;
}

/* Sociální ikony */
.social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}
.social-icons .icon {
    width: 48px;
    height: 48px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s;
    filter: drop-shadow(0 0 8px #ff00cc);
}
.social-icons .icon svg {
    width: 100%;
    height: 100%;
}
.social-icons .icon:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 15px #00ccff);
}

/* Partneři */
.partners-title {
    margin-top: 3rem;
    font-size: 2rem;
    text-align: center;
    color: #fff;
    text-shadow: 0 0 10px #ff00cc;
}
.partners {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}
.partners img {
    height: 90px;
    width: auto;
    filter: drop-shadow(0 0 6px #000);
    transition: 0.25s;
}
.partners img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px #00ccff);
}
.partners img.stonawski {
    transform: scale(0.8);
}

/* Footer */
.footer {
    margin-top: 3rem;
    font-size: 0.85rem;
    color: #777;
    text-align: center;
}

/* Mobilní verze */
@media (max-width: 800px) {
    .intro-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .intro-left {
        align-items: center;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .intro-right video {
        width: 80%;
        max-width: 350px;
    }
}
/* FOOTER */
.site-footer {
    background: #05000a;
    padding: 40px 20px;
    margin-top: 4rem;
    text-align: center;
    border-top: 1px solid rgba(255, 0, 204, 0.25);
    box-shadow: 0 -10px 25px rgba(0,0,0,0.6);
}

.footer-icons {
    display: flex;
    justify-content: center;
    gap: 2.2rem;
    margin-bottom: 18px;
}

.f-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: 0.25s ease;
    filter: drop-shadow(0 0 8px #ff00cc);
}

.f-icon svg {
    width: 100%;
    height: 100%;
}

.f-icon:hover {
    transform: scale(1.18);
    filter: drop-shadow(0 0 14px #00ccff);
}

.footer-copy {
    font-size: 0.85rem;
    opacity: 0.65;
    color: #ccc;
}

/* ----------------------------- */
/*   MOBILNÍ HAMBURGER MENU      */
/* ----------------------------- */

.hamburger {
    display: none;
    position: fixed;
    top: 12px;
    right: 18px;
    width: 34px;
    height: 28px;
    z-index: 2000;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 4px;
    margin: 5px 0;
    background: #ff00cc;
    border-radius: 4px;
    box-shadow: 0 0 8px #ff00cc;
    transition: 0.3s;
}

/* Animace při otevření */
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobilní menu panel */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 75%;
    height: 100vh;
    background: rgba(10, 0, 20, 0.95);
    backdrop-filter: blur(6px);
    padding-top: 80px;
    box-shadow: -5px 0 20px #ff00cc;
    z-index: 1500;
    flex-direction: column;
    gap: 1.6rem;
    text-align: left;
    padding-left: 30px;
}

.mobile-menu a,
.mobile-menu span {
    font-size: 1.4rem;
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
    text-shadow: 0 0 8px #ff00cc;
}

.mobile-menu a:hover {
    color: #00ccff;
    text-shadow: 0 0 12px #00ccff;
}

/* Zobrazení na mobilech */
@media (max-width: 900px) {
    .hamburger {
        display: block;
    }

    .top-menu {
        display: none;
    }

    .mobile-menu.active {
        display: flex;
    }
}

