@import url('https://fonts.googleapis.com/css2?family=Inknut+Antiqua:wght@300;400;500;600;700;800;900&family=Mouse+Memoirs&display=swap');

body{
    font-family: "Inknut Antiqua", serif;
    background-color: #333;
}

*{
    scroll-behavior: smooth;
}



.text-md-start{
    padding: 0;
}

.text-center{
    padding: 0;
}

/* ========================= */
/* NAVBAR                    */
/* ========================= */

.navbar {
    height: 8vh;
    padding: 0.5rem;
    background-color: transparent !important; /* Průhledné pozadí */
    position: absolute; /* Navbar bude umístěn nad obrázkem */
    top: 0; /* Zajištění, že navbar je nahoře */
    left: 0;
    width: 100%; /* Roztažení přes celou šířku */
    z-index: 10; /* Zajištění, že navbar bude nad obsahem */
    border: none; /* Odstranění případného okraje */
    box-shadow: none; /* Odstranění stínu */
}

.navbar-brand img {
  margin-left: 30px;
  margin-top: 20px;
  width: 70px;
}

.navbar-toggler {
    border: none;
    font-size: 1.25rem;
    color: #fff;
    background-color: transparent; /* Přidáno pro zajištění viditelnosti */
    padding: 0.5rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-toggler:focus, 
.btn-close:focus {
    box-shadow: none;
    outline: none;
}

.nav-link {
    color: #FFD700;
    font-weight: 300;
    position: relative;
    font-family: "Inknut Antiqua", serif;
    font-size: 1.5rem;
}

.nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #FFD700;
    visibility: hidden;
    transition: 0.1s ease-in-out;
    
}

.nav-link:hover::before, 
.nav-link.active::before {
    width: 100%;
    visibility: visible;
}

.offcanvas {
    background-color: #333;
    color: #FFD700; 
    z-index: 1050;
}

.offcanvas-body .nav-link {
    color: #FFD700 !important;
    display: block;
    text-align: center;
    padding: 0.5rem 0;
}

.offcanvas-header {
    background-color: gray;
}

.offcanvas-header .btn-close {
    color: white !important;
}

/* ========================= */
/* NAVBAR                    */
/* ========================= */

.text-white{
    margin-top: 50px;
}

.hero-section {
    position: relative;
    background: url('img/Background_2.png') no-repeat center center;
    background-size: cover; 
    height: 100vh; 
    z-index: 1; 
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-family: "Inknut Antiqua", serif;
    overflow: hidden; /* Zajištění, že překryv nepřesáhne sekci */
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Černý překryv s průhledností */
    z-index: 2; 
}

.hero-section .container {
    position: relative;
    z-index: 3; 
}

.hero-section .container {
    z-index: 2; 
    position: relative;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.img-fluid{
    max-height: 800px;
    transition: 0.5s;
}

.img-fluid:hover{
    transform: scale(1.1);
}

.btn{
    transition: 0.5s;
    margin-bottom: 100px;
}

.btn:hover{
    background-color: gray;
}

@media (max-width: 768px){
    .img-fluid{
        max-height: 400px;
    }
}


.ability-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Poloprůhledné pozadí */
    display: none; /* Skryté ve výchozím stavu */
    align-items: center; /* Zarovnání na střed vertikálně */
    justify-content: center; /* Zarovnání na střed horizontálně */
    z-index: 1000; /* Zajištění, že popup bude nad ostatními prvky */
}

.ability-popup-content {
    background: white;
    color: black;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 80%;
    max-width: 600px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Přidání stínu pro lepší vzhled */
    animation: popupAnimation 0.3s ease-out; /* Animace při zobrazení */
    position: relative; /* Zajištění správného umístění uvnitř popupu */
}

@keyframes popupAnimation {
    from {
        transform: scale(0.8); /* Zmenšený začátek */
        opacity: 0; /* Neviditelné */
    }
    to {
        transform: scale(1); /* Normální velikost */
        opacity: 1; /* Viditelné */
    }
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: black;
}

.g-4{
    margin-left: 50px;
}

/* Sponzoři */
.partners-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #fff; 
}

.partners-section h2 {
    font-size: 4vh;
    color: #333; 
    margin-bottom: 20px;
}

.logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.logo {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.logo img {
    max-width: 60%;
    max-height: 60%;
}

.logo:hover {
    transform: scale(1.1);
}

.platformy img{
    width: 100px;
}

section{
    background-color: #fff;
    color: #333;
}

/* Kontakt */

.contact-info {
    padding: 20px;
    color: #e74c3c;
    text-align: center;
    margin-top: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info h3 {
    font-size: 1.5em;
    color: #e74c3c;
    margin-bottom: 10px;
}

.contact-info p {
    font-size: 1.2em;
    margin: 10px 0;
}

.map-container {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    border: 2px solid orange; 
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.text-schopnosti{
    text-align: center;
}


#timer div {
    text-align: center;
}

#timer h3 {
    font-size: 3rem;
    margin: 0;
}

#timer p {
    margin: 0;
    font-size: 1.2rem;
}

.copyright{
    text-align: center;
    background-color: #fff;
}

/* Kontakt */


@media (max-width: 768px){
    .img-fluid{
        max-height: 400px;
    }

    .schopnosti .row.g-4 {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Dva sloupce */
        gap: 1rem; /* Mezera mezi sloupci a řádky */
    }

    .schopnosti .ability-card {
        margin: 0 auto; /* Zarovnání na střed */
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .hero-section .container{
        height: 80vh;
    }

    .btn{
        display: none;
    }

}


@keyframes popupAnimation {
    from {
        transform: scale(0.8); /* Zmenšený začátek */
        opacity: 0; /* Neviditelné */
    }
    to {
        transform: scale(1); /* Normální velikost */
        opacity: 1; /* Viditelné */
    }
}