@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: whitesmoke;
    scroll-behavior: smooth;
}









/* Desing Scrollbar */

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

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







/* Sekce Header */

.header {
    z-index: 1000;
    position: fixed;
    background-color: #ececec;
    padding: 1%;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-height: 50px;
}

.logo img{
    min-width: 339.52px;
    width: 25%;
}

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

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


.zbyleOdkazy a:hover {
    
}

.menu nav ul li a.zbyleOdkazyuvod:hover {
    
}

.menu nav ul li a.registrace {
    background: linear-gradient(to right, #63e0ff, #b378ff, #ff5ec6);
    color: whitesmoke;
    font-weight: 500;
    padding: 8px;
    font-size: 19px;
    border-radius: 3px;
    transition: 0.3s ease;
}

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


/* Sekce Úvod */
.uvod-fullscreen {
    width: 100%;
    height: 100vh;
    background: linear-gradient(to right, #63e0ff7e, #b378ff7b, #ff5ec7b9);
    display: flex;
    justify-content: center;
    align-items: center;
}

.uvod {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 90%;
    gap: 5%;
    padding: 5%;
    padding-left: 7%;
}

.text-uvod {
    max-width: 60%;
}

.text-uvod h1 {
    font-size: 90px;
    color: #111111;
}

.text-uvod p {
    font-size: 1.40rem;
    line-height: 1.6;
    color: #3a3a3a;
}

.uvod-fullscreen .image-section{
    display: flex;
    justify-content: center;
    max-width: 55%;
}

.uvod-fullscreen .image-section img {
    max-width: 90%;
    border: 1.5px solid whitesmoke;
    height: auto;
    border-radius: 13px;
}









/* Sekce Kdo jsem? */

.kdo-jsem {
    background-color: whitesmoke;
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    margin-top: 60px;
}

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

.kdo-jsem .text-section {
    line-height: 1.5;
    max-width: 35%;
}

.kdo-jsem .image-section img {
    max-width: 500px;
    height: auto;
}

.kdo-jsem h2 {
    font-size: 70px;
    color: #f293dc;
    margin-bottom: 20px
}

.kdo-jsem p{
    font-size: 22px;
}

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











/* Sekce Moje projekty */

.moje-projekty-nad{
    background: linear-gradient(to left, #63e0ff7e, #b378ff7b, #ff5ec7b9);
    display: flex;
    justify-content: center;
    margin-top: 75px;
}


.moje-projekty {
    text-align: center;
    width: 95%;
}

.moje-projekty h2 {
    font-size: 55px;
    color: #333;
    margin: 60px auto;
}

.projekty-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    gap: 10px;
}

.projekty-item {
    margin-bottom: 20px;
    max-width: 500px;
}

.projekty-item img {
    width: 100%;
    height: auto;
    border-radius: 3px;
    transition: transform 0.2s ease-in-out;
    box-shadow:  0px 0px 10px #141414aa;
}

.projekty-item p {
    margin-top: 10px;
    font-size: 25px;
    color: #333;
}

.projekty-item:hover img {
    transform: scale(1.02);
}






/* Sekce Kurzy */

.kurzy {
  padding: 70px 20px;
  background: whitesmoke;
  text-align: center;
  margin-bottom: 40px;
}

.kurzy h2 {
  color: #eb72ce;
  font-size: 55px;
  margin-top: 30px;
  margin-bottom: 70px;
}

.kurzy-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 8%;
  max-width: 1350px;
  margin: 0 auto;
}

.kurz {
  background-color: #111626;
  margin-bottom: 25px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s;
}

.kurz h3 {
  font-size: 29px;
  color: #ffffff;
  margin-bottom: 2px;
}

.kurz .cena {
  font-size: 21px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 5px;
}

.kurz ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.kurz ul li {
  color: #c5c5c5;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(to right, #63e0ff, #b783fc, #f972ca);
  color: rgb(48, 48, 48);
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: color 0.2s;
  text-align: center;
}

.btn:hover {
  color: whitesmoke;
}

.kurz:hover{
    transform: scale(1.015);
}





/* Sekce Reference */

.reference-section {
  background: linear-gradient(to right, #63e0ff7e, #b378ff7b, #ff5ec7b9);
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  padding: 80px 20px;
  text-align: center;
}

.reference-card {
  max-width: 320px;
  padding: 20px;
  border-radius: 12px;
  background-color: #f7f7f7;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.reference-card:hover {
  transform: translateY(-5px);
}

.reference-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.reference-card h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
}

.reference-card .role {
  color: #5f7eff;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.reference-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.reference-card .stars {
  font-size: 1.2rem;
  color: gold;
  letter-spacing: 2px;
}








/* 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: #eb72ce;
}

.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;
    font-weight: 200;
    position: relative;
    bottom: 0;
    width: 100%;
    font-size: 18px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-left{
 margin-left: 15px;
}

.footer-clock {
    font-family: monospace;
    font-weight: 500;
    font-size: 18px;
    margin-right: 60px;
}





/* Sekce @Media */



/* Zmenšování stránky */

@media (max-width: 1600px)
{
    .uvod{
        max-width: 80%;
    }

}

@media (max-width: 1400px)
{
    .text-uvod h1{
        font-size: 90px;
    }
} 

@media (max-width: 1320px) 
{

    .uvod {
        max-width: 75%;
        padding: 2%;
    }

    .uvod .image-section img{
        max-width: 90%;
    }

    .kdo-jsem{
    max-width: 90%;
    }


    .moje-projekty h2 {
        font-size: 45px;
    }






}



/* Zmenšování stránky */

@media (max-width: 950px) 
{
    .logo img{
        width: 20%;
    }


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

    .image-section{
        margin-top: 25px;
    }
    .uvod .text-uvod, .uvod .image-section {
        max-width: 100%;
    }

    .text-uvod h1 {
        font-size: 90px;
    }

    .menu nav ul {
        gap: 8px;
    }
    
    .menu nav ul li a {
        margin-right: 15px;
        font-size: medium;
    }

    
    .kdo-jsem .container {
        flex-direction: column;
    }

    .kdo-jsem .text-section {
        max-width: 100%;
        text-align: center;
    }

    .kdo-jsem h2 {
        font-size: 60px;
    }


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

    
    .kontakty-mapa {
    max-width: 100%;
    }

    .kontaktySekce{
        display: grid;
        justify-content: center;
        gap: 30px;
    }

    .kontakty{
        margin-bottom: 2%;
    }
}


@media (max-width: 700px) 
{
.kurzy {
margin-bottom: 20vh;
}

.kurzy h2 {
    font-size: 3rem;
}

.kurzy-container{
    gap: 5%;
}
      
 .header{
    align-items: center;
 }

.zbyleOdkazyuvod{
    display: none;
}

 .menu nav ul li a {
    font-size: small;
}
 
.logo{
    margin-top: 1%;
    width: 21%;
}

 .logo img{
    width: 15%;
}

.menu nav ul li a.registrace:hover{
    font-size: 101%;
}

.text-uvod h1 {
    font-size: 70px;
}

.text-uvod p {
    font-size: 1.4rem;
}

.kdo-jsem h2 {
    font-size: 45px;
}

.kdo-jsem .image-section{
    max-width: 75%;
}

.kdo-jsem .image-section img{
    max-width: 100%;
    height: auto;
}

.projekty-container {
    grid-template-columns: 1fr;
}

.projekty-item p {
    font-size: 22px;
}


}


@media (max-width: 550px) 
{

    .text-uvod h1 {
        font-size: 50px;
    }

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

    .menu{
        display: none;
    }

    .header {
        align-items: center;
    }


    .logo img{
        padding: 0% 28%;
    }

    .kdo-jsem .text-section h2 {
        font-size: 35px;
    }

    .projekty-item p {
        font-size: 20px;
    }

    .footer-clock {
    margin-left: 15px;
    }


}



