body{
margin:0;
font-family:'Segoe UI',sans-serif;
background:#f4f8f5;
color:#1b4332;
font-size:16px;
line-height:1.5;
}

/* NAVIGACE */

.navbar{
background:#1b4332;
display:flex;
justify-content:center;
align-items:center;
gap:30px;
padding:10px 20px;
position:sticky;
top:0;
z-index:1000;
box-shadow:0 5px 15px rgba(0,0,0,0.2);
flex-wrap:wrap;
}

.logo{
flex-shrink:0;
}

.logo img{
height:90px;
}

/* MENU */
.menu{
display:flex;
gap:15px;
flex-wrap:wrap;
justify-content:center;
}

.menu a{
color:white;
text-decoration:none;
font-weight:bold;
font-size:15px;
}

/* PRAVÁ STRANA */
.nav-right{
display:flex;
}

.rezervace-btn{
background:white;
color:#1b4332;
padding:10px 18px;
border-radius:10px;
text-decoration:none;
font-weight:bold;
}

/* HERO */

.hero{
background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),
url('images/kun9.jpg') center/cover;
min-height:400px;
padding:60px 20px;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
color:white;
text-align:center;
}

.hero h1{
font-size:40px;
}

.hero p{
font-size:18px;
}

/* SEKCE */

section{
padding:60px 20px;
text-align:center;
}

section h2{
font-size:30px;
margin-bottom:20px;
}

/* KARTY */

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

.card{
background:white;
padding:20px;
border-radius:12px;
width:250px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

/* VIDEO */

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

.video-wrap{
width:260px;
height:460px;
}

.video-wrap iframe{
width:100%;
height:100%;
border-radius:15px;
}

/* TERMÍNY */

.terminy{
background:#e9f5ee;
}

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

.termin{
background:white;
padding:20px;
border-radius:15px;
width:200px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.termin-btn{
display:inline-block;
margin-top:10px;
background:#40916c;
color:white;
padding:10px 15px;
border-radius:8px;
text-decoration:none;
}

/* MAPA */

iframe{
width:100%;
border-radius:15px;
}

.map-buttons{
margin-top:20px;
display:flex;
gap:10px;
flex-wrap:wrap;
}

.map-btn{
flex:1;
background:#27ae60;
color:white;
padding:12px;
text-align:center;
border-radius:10px;
text-decoration:none;
font-weight:bold;
}

/* REZERVACE */

.rezervace-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
max-width:1000px;
margin:auto;
padding:40px;
}

.box{
background:white;
padding:30px;
border-radius:20px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.turnus-box{
display:grid;
grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
gap:15px;
}

.turnus-card{
background:#40916c;
color:white;
padding:15px;
border-radius:12px;
cursor:pointer;
text-align:center;
}

.turnus-card.selected{
background:#1b4332;
}

.turnus-card.disabled{
background:#aaa;
opacity:0.6;
}

/* KONĚ */

.kone-box{
display:grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap:25px;
max-width:1100px;
margin:auto;
}

.kun-card img{
width:100%;
height:200px;
object-fit:cover;
}

/* FOOTER */

footer{
background:#1b4332;
color:white;
text-align:center;
padding:30px;
margin-top:40px;
}

/* ===== MOBIL ===== */


/* FORMULÁŘ */
form{
background:white;
padding:30px;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
max-width:500px;
margin:30px auto;
display:flex;
flex-direction:column;
gap:10px;
}

/* NADPIS */
form h2{
text-align:center;
margin-bottom:10px;
}

/* POPISKY */
form label{
font-weight:bold;
font-size:14px;
}

/* INPUTY */
input, select, textarea{
width:100%;
padding:12px;
border-radius:10px;
border:1px solid #ccc;
font-size:15px;
transition:0.3s;
}

/* FOCUS */
input:focus, select:focus, textarea:focus{
border-color:#40916c;
outline:none;
box-shadow:0 0 8px rgba(64,145,108,0.3);
}

/* TLAČÍTKO */
form button{
margin-top:10px;
background:linear-gradient(135deg,#40916c,#2d6a4f);
color:white;
padding:14px;
border:none;
border-radius:12px;
font-size:16px;
font-weight:bold;
cursor:pointer;
transition:0.3s;
}

/* HOVER */
form button:hover{
transform:scale(1.03);
box-shadow:0 5px 15px rgba(0,0,0,0.2);
}


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

/* zobraz hamburger */
.menu-toggle{
display:block;
}

/* schovej menu */
.menu{
display:none;
flex-direction:column;
width:100%;
text-align:center;
background:#1b4332;
}

/* když klikneš */
.menu.active{
display:flex;
}

/* navbar */
.navbar{
flex-direction:column;
align-items:center;
}

/* tlačítko */
.nav-right{
margin-top:10px;
}

}
.container{
max-width:600px;
margin:auto;
padding:0 15px;
}

form{
width:100%;
}