@import url('https://fonts.googleapis.com/css2?family=Cal+Sans&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anta&family=Michroma&family=Orbitron:wght@400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&display=swap');

body, html {
    font-family: "Montserrat";
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: ffffff;
    scroll-behavior: smooth;
}

/* Desing Scrollbar */

::-webkit-scrollbar{
    width: 10px;
}

::-webkit-scrollbar-thumb{
    background: #d5d5d5;
    border-radius: 5px;
}


/* Sekce Header */
.header {
    width: 100%;
    z-index: 1000;
    position: fixed;
    background-color: #f1f1f1ea;
    padding: 1%;
    top: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-height: 70px;
}

.logo img{
    width: 80px;
}

.menu nav ul {
    display: flex;
    list-style-type: none;
    gap: 20px;
}

.menu nav ul li a {
    margin-right: 40px;
    white-space: nowrap;
    color: rgb(0, 0, 0);
    font-size: 1.3rem;
    text-decoration: none;
    
}

.menu nav ul li a.betatest {
    background: #219249;
    color: whitesmoke;
    font-weight: 500;
    padding: 13px;
    font-size: 1.3rem;
    border-radius: 3px;
    transition: 0.3s ease;
}

.menu nav ul li a.betatest:hover{
    font-size: 130%;
}



/* Sekce Úvod */
.uvod-fullscreen {
    position: relative;
    width: 100%;
    height: 90vh;
    background-image: url("img/background.png");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 9%;
    overflow: hidden;
}

/* tmavý overlay */
.uvod-fullscreen::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0.20)
    );
    z-index: 1;
}

.uvod {
    position: relative;
    z-index: 2;
}

.text-uvod {
    max-width: 600px;
    color: white;
}

.text-uvod h1 {
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 10px;
}

.text-uvod p {
    font-size: 1.5rem;
    color: #d8ffd8;
    margin-top: 0;
    margin-bottom: 35px;
    font-weight: 500;
}

.uvod-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #21a14f;
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.25s ease-in-out;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.uvod-btn:hover {
    background: #1a7e3d;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
}





/* Sekce O co jde? */
.o-co-jde {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 60px;
}

.o-co-jde .container {
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 5%;
    align-items: center;
}

.o-co-jde .text-section {
    line-height: 1.5;
    max-width: 35%;
}

.o-co-jde .image-section img {
    max-width: 500px;
    height: auto;
}

.o-co-jde h2 {
    font-size: 70px;
    color: #219249;
    margin-bottom: 20px
}

.o-co-jde p{
    font-size: 22px;
}

.text-section p a{
   text-decoration: none;
}



/* Sekce programy */

.programy{
    margin-top: 170px;
    margin-bottom: 150px;
}

.programy-title {
    font-size: 70px;
    color: #219249;
    margin-bottom: 50px;
    text-align: center;
}

.programy-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2.5rem;
    justify-items: center;
}

.program-card {
   background-color: rgba(226, 226, 226, 0.784);
    border-radius: 10px;
    max-height: 220px;
    width: 100%;
    max-width: 280px;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0rem;
}

.program-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgb(10, 10, 10);
}

.program-logo-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;       
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.program-logo {
    max-width: 80%;
    max-height: 90%;
    object-fit: contain;
}


/* Sekce O hře */

.o-hre {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 60px;
}

.o-hre .container {
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 5%;
    align-items: center;
}

.o-hre .text-section {
    line-height: 1.5;
    max-width: 35%;
}

.o-hre .image-section img {
    max-width: 500px;
    height: auto;
}

.o-hre h2 {
    font-size: 70px;
    color: #219249;
    margin-bottom: 20px
}

.o-hre p{
    font-size: 22px;
}

.text-section p a{
   text-decoration: none;
}





/* SEKCE LESAPÁN */

.lesapan {
    max-width: 1500px;
    margin: 2% auto;    
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}


.lesapan-title h1 {
    font-size: 5rem;
    color: #219249;
    margin-bottom: 20px
}

.lesapan-text p {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 28px;
    max-width: 99%;
}

.cast-schopnosti {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 20px;
}

.schopnost {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 16px 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 8px;
}


.schopnost-obrazek-nadpis {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}


.schopnost-obrazek-nadpis img {
    width: 52px;
    height: 52px;
    border-radius: 3px;
    object-fit: cover;
    flex-shrink: 0;
}


.schopnost-obrazek-nadpis h2 {
    font-size: 1.2rem;
    font-weight: 700;
}


.schopnost-popisek {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}
.lesapan-text{
    width: 70%;
}


.lesapan-foto img {
    max-height: 650px;
    width: auto;
}




/* Sekce Citace */
.citace{
    text-align: center;
    justify-content: center;
    align-items: center;
    background-color: #219249;
    padding: 30px;
    margin-top: 100px;
}

.citaceText p{
    margin: auto;
    width: 70%;
    font-style: italic;
    font-size: 1.5rem;
    line-height: 1.5;
    color: whitesmoke;
}

.citaceText b{
    font-size: 1.6rem;
    color: rgb(255, 255, 255);
}



/* SEkce BETATEST + PARTNEŘI */
.betatest-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    margin: 60px auto;
    padding: 40px 200px;
}

.betatest-form {
    width: 45%;
    background: #f3f3f3;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.betatest-form h2 {
    font-size: 60px;
    color: #219249;
    margin-bottom: 25px;
}

.betatest-form label {
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin-top: 12px;
}

.betatest-form input,
.betatest-form textarea {
    width: 100%;
    padding: 12px;
    margin-top: 6px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 16px;
    outline: none;
}

.betatest-form textarea{
resize: vertical;
}

.betatest-form input:focus,
.betatest-form textarea:focus {
    border-color: #219249;
}

.betatest-form button {
    margin-top: 18px;
    width: 100%;
    padding: 15px;
    background: #219249;
    color: white;
    font-size: 20px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
}

.betatest-form button:hover {
    background: #1a7038;
}

/* Pravá strana – PARTNEŘI */
.betest-partneri,
.betatest-partneri {
    width: 50%;
}

.betatest-partneri h2 {
    font-size: 60px;
    color: #219249;
    margin-bottom: 25px;
    text-align: center;
}

.partneri-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    align-items: center;
}

.partneri-grid img {
    width: 100%;
    max-height: 110px;
    object-fit: contain;
    transition: 0.3s;
}

.partneri-grid img:hover {
    transform: scale(1.05);
}



/* Sekce Mapa a Kontakty */
.kontaktySekce {
    padding: 3% 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}

.kontakty-mapa {
    padding: 2%;
    flex: 1 1;
    height: 450px;
    max-width: 50%;
    overflow: hidden;
}


.kontaktyNadpis {
    font-weight: bold;
    font-size: 45px;
    margin-bottom: 4%;
    color: #219249;
}

.kontaktyNadpis{
    text-align: right;
}


.kontakty{
    font-size: 23px;
    font-weight: 350;
    display: block;
    padding-bottom: 8px;
    text-align: center;
}

.kontaktyNadpis{
    text-align: center;
}

.kontakty p {
    line-height: 1.3;
}

.kontakty a {
    color: #0066cc;
    text-decoration: none;
}

.kontakty strong{
    font-weight: 525;
}



/* Sekce footer */    
footer {
    background-color: rgb(31, 31, 31);
    color: white;
    padding: 16px;
    position: relative;
    bottom: 0;
    width: 100%;
    font-size: 18px;
    text-align: center;
}




/* ---------- RESPONSIVITA ---------- */


/* 1600px */
@media (max-width: 1600px) {
    .programy-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .betatest-wrapper {
        padding: 40px 120px;
    }
}



/* 1400px */
@media (max-width: 1400px) {

    .o-co-jde .container,
    .o-hre .container {
        gap: 3%;
    }

    .o-co-jde .text-section,
    .o-hre .text-section {
        max-width: 45%;
    }

    .lesapan {
        padding: 0 40px;
    }

    .betatest-wrapper {
        padding: 40px 100px;
    }
}



/* 1200px */
@media (max-width: 1200px) {

    .text-uvod h1 {
        font-size: 3.5rem;
    }

    .o-co-jde .text-section,
    .o-hre .text-section {
        max-width: 50%;
    }

    .lesapan {
        flex-direction: column;
        text-align: center;
    }

    .lesapan-text {
        width: 90%;
    }

    .lesapan-foto img {
        max-height: 480px;
    }

    .betatest-wrapper {
        padding: 40px 60px;
        gap: 40px;
    }
}


@media (max-width: 1024px) {

    .uvod-fullscreen {
        padding-left: 5%;
        height: 75vh;
    }
    .text-uvod h1 {
        font-size: 3rem;
    }

    .o-co-jde .container,
    .o-hre .container {
        flex-direction: column;
        text-align: center;
    }

    .o-co-jde .text-section,
    .o-hre .text-section {
        max-width: 90%;
    }

    .o-co-jde .image-section img,
    .o-hre .image-section img {
        max-width: 70%;
    }

    .programy-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lesapan {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .lesapan-text {
        width: 90%;
    }

    .betatest-wrapper {
        flex-direction: column;
        padding: 40px 40px;
    }
    .betatest-form,
    .betatest-partneri {
        width: 100%;
    }

    .partneri-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .kontaktySekce {
        flex-direction: column;
        text-align: center;
    }
    .kontakty-mapa {
        max-width: 100%;
        height: 350px;
    }
}



/* 768px */
@media (max-width: 768px) {

    .header {
        justify-content: space-between;
        padding: 10px 20px;
    }
    .menu nav ul {
        gap: 10px;
    }
    .menu nav ul li a {
        font-size: 1rem;
        margin-right: 10px;
    }

    .text-uvod h1 {
        font-size: 2.5rem;
    }
    .text-uvod p {
        font-size: 1.2rem;
    }

    .programy-title {
        font-size: 50px;
    }

    .lesapan-title h1 {
        font-size: 3.2rem;
    }

    .cast-schopnosti {
        grid-template-columns: 1fr;
    }

    .betatest-form h2,
    .betatest-partneri h2 {
        font-size: 45px;
    }
}


@media (max-width: 600px) {

    .uvod-fullscreen {
        height: 70vh;
        padding-left: 5%;
    }
    .text-uvod h1 {
        font-size: 2rem;
    }
    .text-uvod p {
        font-size: 1rem;
    }
    .uvod-btn {
        font-size: 1.1rem;
        padding: 10px 24px;
    }

    .o-co-jde h2,
    .o-hre h2 {
        font-size: 45px;
    }

    .programy-grid {
        grid-template-columns: 1fr;
    }
    .program-card {
        max-width: 260px;
    }

    .lesapan-title h1 {
        font-size: 2.5rem;
    }

    .betatest-form h2,
    .betatest-partneri h2 {
        font-size: 38px;
    }

    .partneri-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .kontaktyNadpis {
        font-size: 35px;
    }
}



/* 420px */
@media (max-width: 420px) {

    .logo img {
        width: 55px;
    }

    .text-uvod h1 {
        font-size: 1.8rem;
    }

    .betatest-form label {
        font-size: 16px;
    }

    .partneri-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    footer {
        font-size: 16px;
    }
}





/* ===========================
   HAMBURGER MENU – základní styl
   =========================== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 2005;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: #111;
    border-radius: 3px;
    transition: 0.3s ease;
}

/* Animace otevřeného menu */
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* ----------- Mobilní zobrazení – aktivace hamburgeru ----------- */
@media (max-width: 900px) {

    .hamburger {
        display: flex;
        margin-left: 50%;
    }

    .menu nav ul {
        display: none;
    }

    .menu nav.open ul {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: #f1f1f1;
        padding: 0;
        gap: 15px;
        text-align: center;
        box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        z-index: 2000;
        animation: fadeDown 0.25s ease;
    }

    @keyframes fadeDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .menu nav ul li a {
        font-size: 1.4rem;
        margin: 0;
        padding: 10px 0;
        display: block;
    }
}
