* {
    font-family: "Atkinson Hyperlegible", sans-serif;
    font-weight: bold;
}

body {
    background: #0f0f0f;
    color: white;
}

main {
    margin-top: 75px;
    flex-grow: 1;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* NAVBAR */

.glass-navbar {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-logo {
    height: 50px;
}



/* HERO */

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.2),
            rgba(0, 0, 0, 0.8));
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-family: "Tahoma", sans-serif;
    font-size: 7rem;
    font-weight: bolder;
    letter-spacing: 5px;
}

.hero-content p {
    font-size: 1.5rem;
}



/* BUTTON */

.btn-neon {

    border: 2px solid #26bdab;
    color: #26bdab;
    padding: 10px 25px;
    border-radius: 40px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-neon:hover {

    background: #26bdab;
    color: black;

    box-shadow:
        0 0 10px #26bdab,
        0 0 30px #26bdab;
}



/* SECTION */

.section-title {
    font-size: 3rem;
    font-weight: 700;

    text-shadow:
        0 0 10px rgba(38, 189, 171, 0.5),
        0 0 30px rgba(38, 189, 171, 0.3);
}



/* CARDS */

.card {

    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;

    transition: 0.3s;
}

.card:hover {

    transform: translateY(-10px) scale(1.02);

    box-shadow:
        0 0 20px rgba(38, 189, 171, 0.3),
        0 0 40px rgba(38, 189, 171, 0.2);
}

.card-img-top {

    height: 200px;
    object-fit: cover;
}

.banner {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.banner-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.banner-overlay {
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.4),
            rgba(0, 0, 0, 0.7));
}

.banner-content h2 {
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 60px;
    height: 60px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);

    color: white;
    font-size: 28px;

    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-6px) scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

/* barvy jednotlivých sítí */

.social-icons a:nth-child(1):hover {
    color: #1877f2;
}

.social-icons a:nth-child(2):hover {
    color: #ff0000;
}

.social-icons a:nth-child(3):hover {
    color: #e1306c;
}

.site-footer {
    background: #0f0f0f;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: white;
}

.site-footer a {
    color: white;
    text-decoration: none;
}

.site-footer a:hover {
    opacity: 0.8;
}

.social-icons a {
    font-size: 28px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-4px);
}

.social-icons a:nth-child(1):hover {
    color: #1877f2;
}

.social-icons a:nth-child(2):hover {
    color: #ff0000;
}

.social-icons a:nth-child(3):hover {
    color: #e1306c;
}

.booking a {
    font-weight: 600;
}


/* MEMBER CARD */
.member-card {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9), rgba(30, 30, 30, 0.9));
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.4s;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 320px;
    /* sjednocená výška */
    cursor: default;
    /* neklikatelné */
}

.member-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 0 20px rgba(38, 189, 171, 0.2),
        0 0 40px rgba(38, 189, 171, 0.1);
    border-color: #26bdab;
}

.member-card img.card-img-top {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    /* kruhový portrét */
    margin-top: 15px;
    border: 2px solid #26bdab;
    transition: transform 0.3s;
}

.member-card:hover img.card-img-top {
    transform: scale(1.05);
}

.member-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .member-card {
        min-height: auto;
    }

    .member-card img.card-img-top {
        width: 100px;
        height: 100px;
    }

    .member-card .card-title {
        font-size: 1rem;
    }
}

/*responsive*/
/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {

    /* HERO */
    .hero {
        height: 60vh;
        /* menší výška na mobil */
    }

    .hero-content h1 {
        font-size: 3rem;
        /* menší titul */
        letter-spacing: 2px;
    }

    .hero-content p {
        font-size: 1.1rem;
    }


    .topic-label-grey,
    .topic-label-green {
        font-size: 0.75rem;
        padding: 3px 8px;
    }

    /* Social */
    .social-section h2 {
        font-size: 2rem;
    }

    .social-icons a {
        font-size: 2.2rem;
        margin: 0 10px;
    }
}

/* Extra malá zařízení */
@media (max-width: 480px) {
    .hero {
        height: 50vh;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }


    .card-body {
        padding: 10px 8px;
    }


}




/*menu*/

.navbar-toggler {
    border: none;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 8px 10px;
}

.hamburger {
    position: relative;
    width: 28px;
    height: 20px;
    display: inline-block;
}

.hamburger span,
.hamburger span::before,
.hamburger span::after {
    position: absolute;
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger span {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span::before {
    content: "";
    top: -8px;
}

.hamburger span::after {
    content: "";
    top: 8px;
}

/* animace na X */

.navbar-toggler[aria-expanded="true"] .hamburger span {
    background: transparent;
}

.navbar-toggler[aria-expanded="true"] .hamburger span::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler[aria-expanded="true"] .hamburger span::after {
    transform: rotate(-45deg);
    top: 0;
}


.navbar-toggler {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background-color: rgba(159, 142, 142, 0);
}

.navbar-toggler:focus,
.navbar-toggler:active {
    outline: none !important;
    box-shadow: none !important;
    background-color: rgba(159, 142, 142, 0);
}

/* ---------- HERO LOGO ---------- */

.hero-logo {
    max-width: 600px;
    width: 80%;
    height: auto;
}

/* HERO */
.hero {
    min-height: 100vh;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width:1200px) {

    .hero-logo {
        max-width: 500px;
    }

}

@media (max-width:992px) {

    .hero-logo {
        max-width: 420px;
    }

    .hero-content p {
        font-size: 1.3rem;
    }

}

@media (max-width:768px) {

    .hero {
        min-height: 70vh;
    }

    .hero-logo {
        width: 90%;
        max-width: 320px;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

}

@media (max-width:576px) {

    .hero {
        min-height: 60vh;
        padding: 20px;
    }

    .hero-logo {
        max-width: 260px;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn-neon {
        padding: 8px 18px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

}

@media (max-width:400px) {

    .hero-logo {
        max-width: 220px;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

}

/* ===== EVENT MODAL ===== */

.modal-dialog {
    max-width: 760px;
}

.modal-content {
    background-color: white;
    color: black;
    backdrop-filter: blur(16px);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

/* HERO IMAGE */

.modal-hero {
    position: relative;
}

.modal-img-top {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.modal-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2));
}

/* TITLE OVER IMAGE */

.modal-hero-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: white;
}

.modal-title {
    font-size: 1.6rem;
    font-weight: 700;
}

/* BADGES */

.modal-info {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.modal-badge {
    background: #26bdab !important;
    color: black;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* BODY */

.modal-body {
    padding: 25px;
}

.modal-description {
    background: rgba(255, 255, 255, 0.06);
    padding: 14px 16px;
    border-radius: 12px;
    line-height: 1.6;
}

/* BUTTONS */

.modal-buttons {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.modal-btn {
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* mapa tlačítko */
.modal-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    /* ← důležité */
}

.modal-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

/* primární tlačítko */
.modal-btn-primary {
    background: #26bdab;
    color: black;
}

.modal-btn-primary:hover {
    background: #1ea495;
    color: black;
}

.modal-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: black;
}

.modal-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* LINK */

.linkInModal {
    color: #26bdab;
    text-decoration: none;
}

.linkInModal:hover {
    text-decoration: underline;
}

/* MOBILE */

@media (max-width:768px) {

    .modal-img-top {
        height: 200px;
    }

    .modal-title {
        font-size: 1.3rem;
    }

    .modal-body {
        padding: 18px;
    }

}

/* ================= EVENT CARDS ================= */

.event-card-link {
    display: block;
    text-decoration: none;
    width: 100%;
}

/* karta */
.event-card {

    width: 200px;
    height: 420px;

    display: flex;
    flex-direction: column;

    background-color: white;
    color: black;

    backdrop-filter: none;
    /* DŮLEŽITÉ */
    border: 1px solid #e5e5e5;

    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;

    transition: 0.35s;
}

.event-card:hover {

    transform: translateY(-8px) scale(1.02);

    box-shadow:
        0 0 30px rgba(38, 189, 171, 0.4),
        0 0 60px rgba(38, 189, 171, 0.15);

    border-color: #26bdab;
}


/* ================= IMAGE ================= */

.event-image {

    width: 100%;
    height: 180px;

    position: relative;
    overflow: hidden;

    flex-shrink: 0;
}

.event-img {

    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;

    transition: transform 0.5s;
}

.event-card:hover .event-img {
    transform: scale(1.15);
}

/* gradient */
.event-image::after {

    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.15));
}


/* ================= DATE BADGE ================= */

.event-date-badge {

    position: absolute;
    top: 12px;
    left: 12px;

    background: #26bdab;
    color: black;

    padding: 4px 10px;
    border-radius: 20px;

    font-size: 0.85rem;
    font-weight: 700;

    z-index: 2;
}


/* ================= BODY ================= */

.event-card .card-body {

    flex: 1;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 12px;
}


/* obsah textu */
.event-content {

    overflow: hidden;
}


/* title */

.card-title {

    font-size: 1.1rem;
    font-weight: 700;

    margin-bottom: 6px;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* místo */

.topic-label-grey {

    background: rgba(255, 255, 255, 0.1);
    color: white;

    padding: 4px 10px;
    border-radius: 12px;

    font-size: 0.8rem;

    display: inline-block;
    margin-top: 4px;
}


/* popis */

.topic-label-grey.small {

    font-size: 0.8rem;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;

    margin-top: 6px;
}


/* ================= TYPE BADGE ================= */

.event-badge {

    align-self: center;

    padding: 4px 12px;
    border-radius: 12px;

    font-size: 0.75rem;
    font-weight: 700;

    text-transform: uppercase;
}

.concert-badge,
.news-badge {
    background: #26bdab;
    color: black;
}



/* ================= RESPONSIVE ================= */

@media (max-width:768px) {

    .event-card {
        height: 380px;
    }

    .event-image {
        height: 160px;
    }

}

@media (max-width:480px) {

    .event-card {
        height: 340px;
    }

    .event-image {
        height: 140px;
    }

}

.event-card {
    background-color: white;
    /* nebo solidní bílá #fff */
    color: black;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

@media (max-width: 576px) {

    /* Zarovnání jednotlivých karet na střed */
    #news .row>[class*="col-"] {
        display: flex;
        justify-content: center;
    }
}