﻿/* Obecné nastavení pro kulaté pozadí odkazu */
.round-link {
    display: block;
    width: 250px;
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    text-align: center;
    line-height: 250px; /* Vertikální centrování textu */
    color: white;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s;
    margin: 0 auto;
}

/* Zvýraznění při najetí myší pro všechny kulaté odkazy */
.round-link:hover {
    transform: scale(1.1);
}

/* Specifické pozadí pro každý odkaz */
.round-link.uspechy {
    background-image: url('/images/brill.jpg');
}

.round-link.uspechy25 {
    background-image: url('/images/uspechy25.jpg');
}

.round-link.treninky_nikola {
    background-image: url('/images/trenerky/nikola.jpeg');
}

.round-link.treninky.nikola {
    width: 150px;
    height: 150px;
}

.round-link.treninky_zuzana {
    background-image: url('/images/trenerky/zuzana.jpeg');
}

.round-link.treninky.zuzana {
    width: 150px;
    height: 150px;
}
.round-link.treninky_sofie {
    background-image: url('/images/trenerky/sofie.jpeg');
}

.round-link.treninky.sofie {
    width: 150px;
    height: 150px;
}
.round-link.treninky_martina {
    background-image: url('/images/trenerky/martina.jpeg');
}

.round-link.treninky.martina {
    width: 150px;
    height: 150px;
}

.round-link.treninky_tereza {
    background-image: url('/images/trenerky/terezac.jpeg');
}

.round-link.treninky.tereza {
    width: 150px;
    height: 150px;
}
.round-link.treninky_terezab {
    background-image: url('/images/trenerky/terezab.jpeg');
}

.round-link.treninky.terezab {
    width: 150px;
    height: 150px;
}
.round-link.treninky_eliska {
    background-image: url('/images/trenerky/eliska.jpeg');
}

.round-link.treninky.eliska {
    width: 150px;
    height: 150px;
}
.round-link.treninky_veronika {
    background-image: url('/images/trenerky/veronika.png');
}

.round-link.treninky.veronika {
    width: 150px;
    height: 150px;
}
/* Posun textu pod obrázek */
.round-link-text {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 150px; /* Mezera mezi obrázkem a textem */
    font-weight: normal;
    font-size: larger;
}

/* Flexbox pro zarovnání odkazů vedle sebe */
.link-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 20px; /* Mezera pod odkazy */
}

/* Centrum galerie */
.gallery-wrapper, .gallery-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.gallery-container {
    gap: 10px;
    flex-wrap: wrap;
}

.thumbnail-image {
    width: auto;
    cursor: pointer;
    transition: transform 0.2s;
}

.thumbnail-image:hover {
    transform: scale(1.05);
}

/* Modální okno na 70 % šířky obrazovky */
.modal-70 {
    width: 70%;
    max-width: 70%;
}

/* Obrázek na maximální výšku obrazovky */
.modal-body img {
    max-height: 80vh;
    width: auto;
    display: block;
    margin: auto;
}

/* Styl pro navigační tlačítka */
.modal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    outline: none;
    cursor: pointer;
    padding: 10px;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* Tmavé průhledné pozadí pro modal-content */
.modal-content {
    background-color: rgba(0, 0, 0, 0.8); /* Tmavé průhledné pozadí */
    border: none; /* Odstranění okrajů modálního okna */
    text-align: center;
}

/* Stylizace obrázku v modálním okně pro jemný efekt */
#modalImage {
    max-width: 100%;
    height: auto;
    margin: auto;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5); /* Jemný stín pro oddělení obrázku od pozadí */
}

/* Bílá barva pro zavírací tlačítko */
.btn-close {
    filter: invert(1); /* Převrátí barvu na bílou */
}

.modal-header {
    border-bottom: none;
}

/* Styl pro trenéry */
.trainer-info {
    text-align: center;
    margin-top: 20px;
}

.trainer-info h2 {
    font-size: 1.5rem;
    font-weight: bold;
}

.trainer-info p {
    font-size: 1.2rem;
    margin: 5px 0;
}

/* Styl pro feature obrázky */
.feature img {
    width: 80%;
    height: auto;
    max-height: 60px;
    object-fit: contain;
}

/* Styl pro cookies lištu */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    z-index: 1000;
}

.cookie-message {
    display: flex;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    justify-content: space-between;
}

.cookie-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cookie-button:hover {
    background-color: #45a049;
}
.card-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}
.card {
    transition: transform 0.3s ease;
}
.card:hover {
    transform: scale(1.05);
}
.card i {
    color: #555;
}

.prihlaska .card:hover {
    transform: scale(1);
}

.prihlaska .btn {
    background-color: #E57BB3;
}

