// <weight>: Use a value from 200 to 1000
// <uniquifier>: Use a unique and descriptive class name

.nunito-<uniquifier> {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

* {
	box-sizing:border-box;
	font-family: 'Nunito', 'Poppins','Open Sans', sans-serif;
}

body,html {
        font-family: 'Nunito', 'Poppins','Open Sans', sans-serif;
        margin: 0;
        padding: 0;
        width: 100%;
		background: white; 
		box-sizing:border-box;
      }

  

h1, h2, h3, h4, h5, h6 {
	font-family: 'Nunito', 'Poppins','Open Sans', sans-serif;
}




 




.total-main {
	width: 100%;
	min-height: 60vh;
	background: url("images/new/preprava_sypkych_materialov.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}






/* zaciatok real navbaru */


.nav-bar{
    height: 90px;
	width: 100%;
    background: none;
	position: fixed;
	z-index: 1;
}



.brand{
    float: left;
    position: absolute;
    padding: 20px;
    line-height: 70px;
    font-size: 1.5em;
}

.brand a{
    text-decoration: none;
    color: black;
	opacity: 0;
}

.nav-container{
    max-width: 1000px;
    margin: 0 auto;
}

nav{
    float: right;
	
}

nav ul{
    list-style: none;
	padding:0;  /* tu som odjebal padding lebo tomu jebalo */
}

nav ul li{
    float: left;
    position: relative;
}

nav ul li a{
    display: block;
    padding: 0 20px;
    line-height: 70px;
    background: none;
    text-decoration: none;
    color: black;
}

nav ul li a:hover{
    background: #fa8b60;
    color: white;
}

nav ul li a:not(:only-child):after{
    padding-left: 5px;
}

nav ul li ul li {
    min-width: 190px;
}

nav ul li ul li a{
    padding: 15px;
    line-height: 20px;
}

.nav-dropdown{
    position: absolute;
    display: none;
    z-index: 1;
}

.nav-mobile{
    display: none;
    position: absolute;
    top: 0.5rem;
    right: 30px;
    height: 70px;
    width: 70px;
}

#nav-toggle{
    position: absolute;
    left: 18px;
    top: 22px;
    cursor: pointer;
    padding: 10px 35px 15px 0px;
}

#nav-toggle span,
#nav-toggle span::before,
#nav-toggle span::after{
    position: absolute;
    display: block;
    content: '';
    background: black;
    height: 5px;
    width: 35px;
    transition: all 300ms ease-in-out;
}

#nav-toggle span::before{
    top: -10px;
}

#nav-toggle span::after{
    bottom: -10px;
}

#nav-toggle.active span{
    background-color: transparent;
}

#nav-toggle.active span::before, #nav-toggle.active span::after{
    top: 0;
}

#nav-toggle.active span::before{
    transform: rotate(45deg);
}

#nav-toggle.active span::after{
    transform: rotate(-45deg);
}

@media only screen and (max-width: 768px) {

    .nav-mobile{
        display: block;
    }

    nav{
        width: 100%;
        padding: 70px 0 15px;
		background: white;
    }

    nav ul{
        display: none;
    }

    nav ul li {
        float: none;
    }

    nav ul li a{
        padding: 15px;
        line-height: 45px;
        padding-left: 25%;
		font-size: 24px;
		border-bottom: 1px solid slategray;
    }


    nav ul li ul li a{
        padding-left: 30%;
    }

    .nav-dropdown{
        position: static;
    }
}

@media screen and (min-width: 799px){
    .nav-list{
        display: block !important;
    }

	
}

/* koniec real navbaru */




























.main-container {
	width: 100%;
	height: 60vh;
	display:flex;
	justify-content: center;
	align-items: center;
	
}



.main-bg h2 {
	color: #ffffff;
	background: none;
	text-align: center;
	font-family: 'Nunito';
	margin-bottom: 15%;
	font-weight: 700;
	font-size: 3.25rem;
}



@media (max-width: 482px){
	.main-bg h1 {
		font-size: 2rem;
	}

	.main-bg h2 {
		font-size: 1.33rem;
	}
}











.mouse-section {
	display: flex;
	
	justify-content: space-evenly;
	align-items: center;
	flex-direction: column;
	background: none;
	
	height: 100px;
}















.content-wrapper {
	display:flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: auto;
	margin-top: 2rem;
	margin-bottom: 3rem;
	background: white; 
}


.content{
	width: 80%;
	min-height: 561px;
	
	display:flex;
	align-items: center;
	justify-content: center;
  }
  
  .text{
	  width: 50%;
	  height: 550px;
	  background: white;
	  flex:1;
	  padding: 12px;
	  font-size: 1.2rem;
	  opacity: 1;
	 
  }
  
  .text h1 {
	text-align: center;
	color: #393737;
	font-size: 2rem;
	font-weight: 600;
  }

  .text h3 {
	text-align: center;
	color: #373f51;
	font-size: 1.4rem;
	font-weight: 600;
  }

  
  
  .text p {
	text-align: justify;
	padding: 20px;
	background: white; 
	color: #22313f;
	
	font-family: 'Nunito';
  	
  }

  .content .p-right {
	text-align: right;
  }
  
  .image{
	  width: 50%;
	  height: 550px;
	  flex:1;
	  opacity: 1;
	  transform: translateX(0);
	  transition: all 0.8s ease-in-out;
	  -webkit-transition: all 0.8s ease-in-out;
	  -moz-transition: all 0.8s ease-in-out;
	  -o-transition: all 0.8s ease-in-out;
	  
  }
  
  
  .image img{
	width: 100%;
	height: 100%;
	box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  }
  

	

  	@media (max-width: 1317px){
		.content {
			flex-direction: column;
			
		}

		.text {
			width: 100%;
		}

		.image {
			width: 100%;
		}
	}
	






	@media (max-width: 489px) {
		.text{
			
			padding: 10px;
			font-size: 1rem;
			
		}
		
		.text h1 {
		  
		  font-size: 1.5rem;
		  font-weight: 600;
		}
	  
		.text h2 {
		  
		  font-size: 1.2rem;
		  font-weight: 600;
		}
	  
		
		
		.text p {
		  text-align: justify;
		  padding: 18px;
			
		}
	  
		.content .p-right {
		  
		}
	}



	





	  

	  .ikonka-wrapper {
		margin-top: 30px;
		padding: 10px;
		width: 100%;	
		background: #fa8b60; 
		background-repeat: no-repeat;
		background-size: cover;
  		background-position: center;
		
	  }
	
	  .ikonka-wrapper h1{
		text-align: center;
		color: white;
		background: navy;
		font-weight: bold;
	  }

	  .ikonka-wrapper-stvorcekov {
		display:flex;
		justify-content: space-evenly;
		gap: 10%;
		flex-wrap: wrap;
		flex-direction: row;
		width: 100%;
		padding-top: 50px;
		padding-bottom: 50px;
		
	  }
	  .ikonka-stvorcek {
		min-width: 138px;
	  }
	
	  .ikonka-stvorcek p {
		font-size: 16px;
		font-weight: bold;
		text-align: center;
		color: white;
		background: none; 
		padding: 10px;
	  }
	  
	  .ikonka-stvorcek h2 {
		color: white;
		font-weight: bold;
		font-size: 2.5rem;
		text-align: center;
	  }

	  

	  .ikonka-stvorcek img{
		min-width: 138px;
	  }




	  @media (max-width: 427px){
		.ikonka-wrapper-stvorcekov {
		display:flex;
		justify-content: center;
		align-items: center;
		gap: 10%;
		flex-wrap: wrap;
		flex-direction: column;
		width: 100%;
		
	  }
	  .ikonka-stvorcek {
		min-width: 138px;
		text-align: center;
		
	  }
	
	  .ikonka-stvorcek p {
		font-size: 14px;
		font-weight: bold;
		text-align: center;
		color: white;
		border: 1px solid white;
		background: #2f1b41; 
		padding: 10px;
	  }
	  
	  .ikonka-stvorcek h2 {
		color: white;
		font-weight: bold;
		font-size: 1.5rem;
		text-align: center;
	  }

	  

	  .ikonka-stvorcek img{
		min-width: 108px;
	  }
	  }
















.sluzby-wrapper {
	width: 100%;
	background: #eeeeee;
	min-height: 170vh;
	

	

}

.sluzby-nadpis {
	text-align: center;
	color: black;
	margin:20px;
	padding-top: 30px;
	padding-bottom: 30px;
	font-size: 2rem;
	font-weight: 700;
}

.riadocek {
	width: 80%;
	background: white;
	min-height: 40vh;
	color: black;
	display:flex;
	justify-content: center;
	flex-direction: row;
	margin: 0 auto;
	font-family: 'Nunito';
	font-weight: 500;
}

.texticek {
	width: 50%;
	padding: 3rem;
	text-align: justify;
}

.texticek button {
	background: #fa8b60;
	color: white;
	padding: 1rem 3rem;
	border:none;
	cursor: pointer;
}

.texticek h1 {
	text-align: justify;
	color: black;
	font-size:2rem;
	font-weight: 700;
}

.texticek p {
	text-align: justify;
	color: black;
	font-size:2rem;
	font-weight: 700;
}

.obrazocek1 {
	width:50%;
	min-height: 40vh;
	background-image: url('images/new/nakladna_preprava_kosice.webp');
  	background-repeat: no-repeat;
	background-size: cover;
  	background-position: center;
}



.obrazocek2 {
	width:50%;
	min-height: 40vh;
	background-image: url('images/new/autodoprava.webp');
  	background-repeat: no-repeat;
	background-size: cover;
  	background-position: center;
}



.obrazocek3{
	width:50%;
	min-height: 40vh;
	background-image: url('images/new/nakladna_doprava_kosice.webp');
  	background-repeat: no-repeat;
	background-size: cover;
  	background-position: center;
}

@media (max-width: 850px){
	.riadocek {
		width: 100%;
		flex-direction: column;
		
	}


	.texticek{
		min-width: 100%;
		padding: 24px;
	}

	.texticek h1 {
		text-align: center;
	}

	.obrazocek1 {
			min-width: 100%;
			min-height:20vh;
			
	}
	.obrazocek2 {
			min-width: 100%;
			min-height:20vh;
			order: 1;
			
	}
	.obrazocek3 {
			min-width: 100%;
			min-height:20vh;
	}

}







































.galeria-nadpis {
	width: 100%;
	display: flex;
	justify-content: center;
}

.galeria-nadpis h4 {
	width: 80%;
	text-align: center;
	color: black;
	padding-top: 30px;
	padding-bottom: 30px;
	font-size: 2rem;
	font-weight: 700;
}

.gallery-wrapper {
	width: 100% !important;
	min-height: 100%;
	display: flex;
	justify-content: center;
}

.lightbox-gallery {
	width: 80%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 6rem;
}


.lightbox-gallery img {
	width: 460px;
	height: 320px;
	box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}


@media (max-width: 500px){

	
	.lightbox-gallery img {
		max-width: 100%;
		max-height: 175px;
		padding: 0;
		border-radius: 0px;
	}
}












.contact-form {
	background: #f6865a;
	display:flex;
	justify-content: center;
	align-items: center;

}



.lava-strana {
	width: 50%;
	color: white;
	text-align: center;
}

.lava-strana p {
	font-size: 1.10rem;
}

.lava-strana a {
	text-decoration: none;
	color: white;
}
#lava-strana-nadpis {
	font-size: 2rem;
}

#lava-strana-text {
	text-align: justify;
	padding: 0rem 19rem;
	margin-bottom: 5rem;
}

.prava-strana {
	width: 50%;
	margin-top: 4rem;
	margin-bottom: 4rem;
}


.prava-strana p {
	color: white;
}

.prava-strana input[type="text"], input[type="email"] {
	border: none;
	width: 30rem;
	height: 3rem;
	padding-left: 0.5rem;
}

.prava-strana textarea {
	width: 30rem;
	height: 17rem;
}

.prava-strana input[type="submit"]{
	border: none;
	width: 120px;
        padding: 10px 0;
        border: none;
        background: #fff;
        color: #333;
        font-weight: 600;
        font-size: 1rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        cursor: pointer;
        transition: all 0.2s ease;
}


@media (max-width: 1440px){
	.contact-form {
		flex-direction: column;
		text-align: center;
	}

	.lava-strana {
		width: 100%;
	}

	#lava-strana-text{
		padding-left: 5rem;
		padding-right: 5rem;
	}

	.prava-strana {
		width: 100%;
	}

	
}

@media (max-width: 495px) {

	#lava-strana-text {
	padding: 0rem 3rem;
	text-align:center;
}


	.prava-strana textarea {
	width: 17rem;
	height: 12rem;
}


.prava-strana input[type="text"], input[type="email"] {
	border: none;
	width: 17rem;
	height: 3rem;
	padding-left: 0.5rem;
}

}



/* This is
a multi-line
comment 

.footer {
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	align-items: center;
	background: rgb(48, 48, 48); 
	flex-wrap: wrap;
}

.footer-sec {
	background: none;
	color: white;
	min-height: 250px;
	min-width: 220px;
	
}



.flexriadok {
	display: flex;
}







.footer-sec p {
	padding: 10px;
	font-size: 14px;
}

.footer-sec a {
	display: flex;
	text-decoration: none;
	color: white;
}

#footer-nadpis {
	font-size: 1.33rem;
	padding: 0;
}


.footer i {
	padding: 10px;
	display: flex;
}



@media (max-width: 205px){
	.footer-sec a {
		font-size: 12px;
	}
}






*/
	

.copyright {
	background: rgb(43, 42, 42); 
	display: flex;
	justify-content: center;

}

.copyright-sec {
	color: white;
	text-decoration: none;
}

.copyright-sec p {
	color: white;
	font-size: 13px;
}

#mailik {
	color: white;
	text-decoration: none;
	
}

@media (max-width: 265px) {
	.copyright-sec p {
		text-align: center;
		
	}
}


/* reveal on scroll */

.reveal-on-scroll {
  opacity: 0;
  /* Môžeš pridať aj posun, napr.: */
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease; /* Pre plynulú animáciu */
}

/* Trieda, ktorá sa pridá pri zobrazení: */
.revealed {
  opacity: 1;
  transform: translateY(0);
}



/* koniec reveal on scroll */





/* prepravny-poriadok.html */

/* Original Wrapper - Adjusted for better responsiveness */
        .prepravny-wrapper {
            width: 100%;
            min-height: 100vh;
            /* Placeholder for original background image - removed 'fixed' for better mobile performance, but kept if the image path is correct */
            background: #fff; /* Fallback color */
            /* If the image exists: background: url('images/patterny/kokocinkabiela.jpg') no-repeat center; */
            background-size: cover;
            padding: 5rem 5%; /* Changed fixed 10rem 20rem to responsive padding */
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            box-sizing: border-box;
        }

        .prepravny-nadpis {
            font-size: 2rem; /* Slightly larger heading */
            font-weight: 700;
            text-align: center;
            margin-bottom: 2rem;
            color: #1a202c;
        }

        /* --- RESPONSIVE IFRAME STYLES (NEW) --- */

        /* 1. The Container defines the Max Width and Aspect Ratio */
        .responsive-embed-container {
            /* Limits the overall size to a maximum of 1200px, but scales down */
            max-width: 1200px; 
            width: 100%;
            margin: 0 auto; /* Center the container */

            /* --- Aspect Ratio Box Trick --- */
            position: relative;
            /* Padding Bottom: 80% height relative to width (1000px/1200px ≈ 0.833, so 80% is a clean, close ratio) */
            padding-bottom: 80%; 
            height: 0;
            overflow: hidden;
            
            border-radius: 12px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
            background-color: #fff;
        }

        /* 2. The Iframe fills the container completely */
        .responsive-embed-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Media Query for very small screens to reduce overall padding */
        @media (max-width: 600px) {
            .prepravny-wrapper {
                padding: 3rem 1rem;
            }
            .prepravny-nadpis {
                font-size: 1.5rem;
            }
        }