@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap');
* {/*VSETKY*/
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{/*VSETKY*/
    overflow-x: hidden;
    scroll-behavior: smooth;
}
body{/*VSETKY*/
    min-height: 100vh;
    background-image: url(fotky/22nba-edwards-videoSixteenByNineJumbo1600.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: bolder;
    padding: 1% 3% 0% 3%;  
    box-sizing: border-box;
    position: relative;  
    overflow: hidden;
    color: #fff;
    text-shadow: 2px 2px 6px rgba(0, 0, 0);
}
a {/*VSETKY*/
    text-decoration: none;
    color: white;
}
header{/*VSETKY*/
    display: flex;
    font-size: 1.7rem;
    justify-content: space-between;
}
.navbar{/*VSETKY*/
    display: flex;
    justify-content: space-between;
    background-color: rgb(61, 61, 61);
    width: 100vw;
    border-radius: 100px;
}
#menu{/*VSETKY*/
    display: none !important;
}
.mobilne-menu-content{/*VSETKY*/
    display: none;
}
.mobilne-menu{/*VSETKY*/
    display: none !important;
    flex-direction: column;
    position: absolute;
    background-color: rgb(61, 61, 61);
    border: solid white 4px;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
    margin-top: 20px;
    z-index: 999;
    width: 92vw;
    font-size: x-large;
}
.mobilne-menu a:active{/*VSETKY*/
    color: #d43d06;
    transform: scale(0.8);
}
.navbar-lavo{/*VSETKY*/
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60vw;
    height: 75px;
    padding: 0 10px 0 10px;
    border-radius: 100px;
}
.navbar-lavo nav{/*VSETKY*/
    display: flex;
    width: 100%;
    justify-content: space-evenly;
}
.navbar-pravo{/*VSETKY*/
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 0 10px 0 10px;
    width: 15vw;
}
#kontakt{
    color: #d43d06;
}
.jazyk{/*VSETKY*/
    background: none;
    border: none;
    font-size: 1.7rem;
    font-weight: bolder;
    font-family: 'Roboto Condensed', sans-serif;
    color: #fff;
    text-shadow: 2px 2px 6px rgba(0, 0, 0);
    cursor: pointer;
}
.navbar-lavo a:hover, .navbar-pravo button:hover{/*VSETKY*/
    color: #d43d06;
    transition: 0.5s;
    transform: scale(1.20);
}
footer { /*VSETKY*/
    text-align: center;
    padding: 0.3rem 0;
    font-size: 1rem;
    background-color: rgb(61, 61, 61);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0; 
    margin: 0; 
    box-sizing: border-box;
}
#SK:active, #EN:active, .navbar-lavo a:active{/*VSETKY*/
    transition: 0s;
    transform: scale(0.9);
}
main{/*VSETKY*/
    animation: prechod 1.5s ease;
}
@keyframes prechod {/*VSETKY*/
    from{
        opacity: 0.2;
        translate: 0 50%;
    }
    to{
        translate: 0 0;
    }
}
.no-click{/*VSETKY*/
    pointer-events: none;
}
main{
    margin: 2%;
    padding: 2%;
}
.kontakty-item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.kontakt-forma {
  max-width: 500px;
  width: 100%;
  padding: 2rem;
  background: rgba(20, 20, 20, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  color: white;
}
.kontakty-ikony{
    display: flex;
    justify-self: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
.kontakty-ikony-item{
    display: flex;
    justify-self: center;
    align-items: center;
    flex-direction: row;
    text-align: center;
    gap: 10px;
}
.kontakty-ikony-item1, .kontakty-ikony-item2{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.kontakt-sposob{
    background: rgba(68, 68, 68, 0.7);
    backdrop-filter: blur(6px);
    width: 100%;
    padding: 10px;
    border-radius: 15px;
}
.kontakt-forma label {
  display: flex;
  flex-direction: column;
  font-weight: bold;
  font-size: 1rem;
}
.kontakt-forma textarea{
    min-height: 30vh;
}
.kontakt-forma input[type="email"],
.kontakt-forma textarea {
  margin-top: 0.5rem;
  padding: 0.75rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  resize: vertical;
  background: #fff;
  color: #333;
  transition: 0.3s ease;
}

.kontakt-forma input[type="email"]:focus,
.kontakt-forma textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.5);
}

.kontakt-forma button {
  padding: 0.8rem;
  background: #ff4500;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
}

