/* Základ */
body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #080010;
    color: #e5e5e5;
    text-align: left;   /* ← DŮLEŽITÉ */
}

/* Logo */
.logo {
    text-align: center;
    margin: 0.5rem 0;
}

.logo img {
    width: 300px;
    max-width: 80%;
    filter: drop-shadow(0 0 12px #ff00cc);
}

/* Hlavní fotka */
.photo {
    display: flex;
    justify-content: center;
    padding: 1rem 0;
}

.photo img {
    width: 90%;
    max-width: 700px;
    border-radius: 12px;
    box-shadow: 0 0 20px #ff00cc;
    transition: 0.3s;
}

.photo img:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px #00ccff;
}

/* Text o kapele */
.content {
    max-width: 900px;
    margin: 1.5rem auto;
    padding: 0 2rem;
    line-height: 1.7;
    font-size: 1.2rem;
    color: #dcdcdc;
}

/* Sekce členů */
.members {
    max-width: 900px;
    margin: 2.5rem auto;
    padding: 0 2rem 2rem 2rem;
}

.members h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: #ffffff;
    text-shadow: 0 0 10px #ff00cc;
}

/* Layout členů */
.member {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.member-photo {
    flex: 0 0 180px;
}

.member-photo img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 0 15px #00ccff;
}

.member-bio {
    flex: 1;
    font-size: 1rem;
    line-height: 1.6;
}

.member-bio h3 {
    margin: 0 0 0.3rem 0;
    font-size: 1.3rem;
    color: #ffffff;
}

.role {
    font-style: italic;
    margin-bottom: 0.5rem;
    color: #ffb3ff;
}

.meta {
    font-size: 0.95rem;
    margin-bottom: 0.7rem;
    color: #bbbbbb;
}

/* Zpět */
.back {
    display: block;
    text-align: center;
    margin: 2.5rem auto;
    font-size: 1.3rem;
    color: #fff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    background: linear-gradient(135deg, #ff00cc, #00ccff);
    box-shadow: 0 0 15px #ff00cc;
    width: fit-content;
    transition: 0.25s;
}

.back:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px #00ccff;
}

/* 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í verze */
@media (max-width: 768px) {
    .member {
        flex-direction: column;
        text-align: center;
    }

    .member-photo img {
        height: auto;
        max-width: 250px;
        margin: 0 auto;
    }

    .member-bio {
        text-align: left;
    }
}