/* Slider kontejner */
.slider {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}
/* Oblast pro obrázky */
.slider-window {
  width: calc(100% - 120px); /* šířka se odpočítá pro šipky */
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.slider-inner {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}
/* Každá položka slideru */
.slider-item {
  flex: 0 0 calc(100% / 3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-item img {
  width: 90%;
  height: 90%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  cursor: pointer;
}
.slider-item img:hover {
  transform: scale(1.05);
}
/* Šipky */
.arrow {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  user-select: none;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
  z-index: 10;
}
.arrow:hover {
  transform: translateY(-50%) scale(1.1);
}
.arrow.left {
  left: 20px;
}
.arrow.right {
  right: 20px;
}
/* Modal okno */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  overflow: auto;
  padding: 20px; /* mezera od okrajů */
  box-sizing: border-box;
}

.modal-content {
  margin: 0 auto;
  max-width: 100%;
  max-height: 100%;
}

.modal-content img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.close {
  position: fixed;
  top: 30px;
  right: 30px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  z-index: 1001;
}
.close:hover {
  color: #bbb;
}





		body {
            margin: 0;
            padding: 0;
            position: relative;
            font-family: 'Raleway', sans-serif;
            color: #F8F9FA; /* Jemně našedlá bílá, moderní vzhled */
        }
		.container {
		    width: 100%;
		    display: flex;
		    flex-direction: column;
		    justify-content: center;
		    align-items: center;
		    text-align: center;
		}
		.inner-container {
			padding: 50px;
		    display: flex;
		    flex-direction: column; /* Změní směr zarovnání na vertikální */
		    justify-content: center; /* Zarovná obsah odshora */
		    align-items: center; /* Stále uprostřed vodorovně */
			width: 100%;
			height: 100%;
		}
		.inner-container-left {
			padding: 50px;
		    display: flex;
		    flex-direction: column; /* Změní směr zarovnání na vertikální */
		    justify-content: center; /* Zarovná obsah odshora */
		    align-items: center; /* Stále uprostřed vodorovně */
			width: 100%;
			height: 100%;
		}
		.section1 {
		    height: auto; /* Výška sekce dle potřeby */
		    position: relative;
			flex-direction: row; /* Vedle sebe */
		    justify-content: center;
		    align-items: center;
		    text-align: center;
			display: flex;
            top: 0;
            left: 0;
		    width: 100%;
		    height: 100vh; /* Celá výška okna */
		    background: url('./img/101.jpeg') no-repeat center center fixed;
		    background-size: cover; /* Obrázek vyplní celý monitor */
			z-index: 1;
		}
		.section2 {
		    height: auto; /* Výška sekce dle potřeby */
            position: relative;
		    justify-content: center;
		    align-items: center;
		    text-align: center;
			display: flex;
            top: 0;
            left: 0;
            width: 100%;
            background: #F8F9FA;
		}
		.section3 {
		    height: auto; /* Výška sekce dle potřeby */
            position: relative;
			display: flex;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 20, 30, 1); /* Velmi tmavý modročerný odstín */
		}
		.section4 {
		    height: auto;
            position: relative;
		    justify-content: center;
		    align-items: center;
		    text-align: center;
			display: flex;
            top: 0;
            left: 0;
            width: 100%;
            background: white;
		}
		.left-half, .right-half {
		    top: 0;
		    width: 50%;
		    height: 100%;
			z-index: 20;		
		}
		.left-half {
		    left: 0;
		    background: rgba(0, 20, 30, 1); /* Velmi tmavý modročerný odstín */
		    display: flex;
		    justify-content: center;
		    align-items: left;
		    text-align: left;
		}
		.right-half {
		    left: 50%;
		    background: rgba(255, 255, 255, 0); /* Průhledné */
		    display: flex;
		    justify-content: center;
		    align-items: center;
		    text-align: center;
		}
		.center {
		    background: rgba(255, 255, 255, 0); /* Průhledné */
		    display: flex;
		    justify-content: center;
		    align-items: center;
		    text-align: center;
			flex-direction: column; /* Pod sebou */
		}
		.center-row {
		    background: rgba(255, 255, 255, 0); /* Průhledné */
		    display: flex;
		    justify-content: center;
		    align-items: center;
		    text-align: center;
			flex-direction: row; /* Vedle sebe */
			gap: 20px;
		}
		.center-top {
		    display: flex;
		    justify-content: center;
		    align-items: center;
		    text-align: center;
		    flex-direction: column; /* Pod sebou */
			z-index: 20;
			width: 60%;
		}
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.65); /* Ztmavení */
            z-index: 10;
        }
        .logo {
            width: 90%;
            height: auto;
		    object-fit: contain; /* Zabrání deformaci obrázku */
		    flex-shrink: 0;
        }
		.profil {
		    width: 200px;
		    height: auto;
		    object-fit: contain; /* Zabrání deformaci obrázku */
		    flex-shrink: 0;
		    border-radius: 200px; /* Zaoblené rohy */
		    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3); /* Jemný stín */
		}
		.box1 {
			background: rgba(0, 20, 30, 1);
			padding: 30px;
			border-radius: 40px;
			box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
	    	display: inline-block; /* Pro zobrazení inline prvku */
		    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease; /* Přidán background */
			width: 80%;
		}
		.box1:hover {
		   	transform: scale(1.05); /* Zvětšení o 10 % */
			background: #ff5f4d
		}
		.phone {
			margin: 20px 0px;
			font-size: 60px;
            font-weight: 700;
            text-transform: uppercase;
		    display: inline-block; /* Pro zobrazení inline prvku */
		    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Plynulý přechod */
		}
		.phone:hover {
		    transform: scale(1.1); /* Zvětšení o 10 % */
			color: #ff5f4d;	
		}
		.link {
			margin: 20px 0px;			
		    display: inline-block; /* Pro zobrazení inline prvku */
		    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Plynulý přechod */
		}
		.link:hover {
		    transform: scale(1.1); /* Zvětšení o 10 % */
			color: #ff5f4d;	
		}
		img {
		    max-width: 100%;  /* Obrázek nebude větší než jeho rodič */
		    height: auto;  /* Zachová poměr stran */
		    border-radius: 15px;  /* Zaoblené rohy */
		    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);  /* Jemný stín */
		}
        h1 {
            font-size: 60px;
            font-weight: 700;
            text-transform: uppercase;
        }
        h2 {
            font-size: 52px;
            font-weight: 300;
            text-transform: uppercase;
        }
        h3 {
            font-size: 28px;
            font-weight: 300;
        }	
        h4 {
            font-size: 22px;
            font-weight: 600;
        }	
		p {
		    font-family: 'Raleway', sans-serif; /* Stejný font jako ostatní text */
		    font-size: 18px; /* Stejná velikost jako H2 (případně uprav) */
		    font-weight: 300; /* Lehké písmo, podobné H2 */
		    color: #F8F9FA; /* Stejná barva textu */
		    line-height: 1.4; /* Zvýšené řádkování pro lepší čitelnost */
		}
		a {
		    text-decoration: none; /* Odstraní podtržení */
		    color: inherit; /* Použije výchozí barvu textu */
		    outline: none; /* Odstraní obrys při kliknutí */
		}
		.section2 h1, .section2 h2, .section2 h3, .section2 h4, .section2 p, .section2 a{ 
			color: rgba(0, 20, 30, 1); /* Velmi tmavý modročerný odstín */
		}
		
		/* Menší velikosti pro mobilní telefony (max-width: 768px) */
		@media screen and (max-width: 768px) {
		    h1 {
		        font-size: 32px;
		    }
		    h2 {
		        font-size: 26px;
		    }
		    h3 {
		        font-size: 22px;
		    }
		    h4 {
		        font-size: 18px;
		    }
		
		/* Nastavení pro mobilní zařízení – pod sebou */
		    .section1 {
		        flex-direction: column; /* Pod sebou */
		    }

		    .left-half, .right-half {
		        width: 100%; /* Zabírají celou šířku */
		    }
			
		    .logo {
		        width: 300px; /* Menší logo na mobilu */
		        height: auto; /* Zachová poměr stran */
		    }
			.inner-container {
				padding: 10px;
			    display: flex;
			    flex-direction: column; /* Změní směr zarovnání na vertikální */
			    justify-content: flex-start; /* Zarovná obsah odshora */
			    align-items: center; /* Stále uprostřed vodorovně */
				width: auto;
				height: auto;
			}
			.section1 {
			    width: 100%;
			    height: 100vh;
			    background: url('./img/101.jpeg') center center no-repeat;
			    background-size: cover;
				}
			.phone {
				font-size: 32px;
				margin: 5px 0px;
			}
			.phone a {
			 	font-size: 32px;
			}
			.hover-effect {
			   	font-size: 32px;
			}
		}
		