/*
Kovově šedá: #808080
Matná modř: #35478C
Oranžová železa: #D94E33
Stříbrně modrá: #6C8DA9
Antracitová šedá: #333333
*/


/* @font-face {   
    font-family: "Oswald", sans-serif;
    src: url(fonts/Oswald-VariableFont_wght.ttf);
    font-optical-sizing: auto;
}

@font-face {   
    font-family: "Merriweather", sans-serif;
    src: url(fonts/MerriweatherSans-VariableFont_wght.ttf);
    font-optical-sizing: auto;
    font-weight: 500;
} */

@font-face {   
    font-family: "Montserrat-style";
    src: url("fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-optical-sizing: auto;
    font-display: swap;
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.section-p1{
    padding: 40px 90px;
}

.head h2{
    text-align: center;
    padding: 8px 0px;
    font-size: 32px;
    letter-spacing: 0.03rem;
    text-decoration:overline 2px #35478C;
}

button.normal{
    font-size: 18px;
    font-weight: 600;
    font-variant: small-caps ;
    padding: 8px 20px;
    background-color: #d2d2d2f8;
    border-radius: 36px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.3s;
}

button.normal a{
    text-decoration: none;
    transition: 0.3s;
}

button.normal:hover{
    background: #fbf9fa;

}

button.normal a:hover{
    color: #fbf9fa;
}

html, body{
    width: 100%;
    font-family: "Montserrat-style", sans-serif;
}

h1, h2, h3, a{
    font-family: "Montserrat-style", sans-serif;
}

p{
    font-size: 22px;
    font-family: "Montserrat-style", sans-serif;
}

.want-start a{
    background-image: linear-gradient(90deg, #35478C, #6C8DA9);
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 24px;
    color: #fbf9fa;
    transition: 1s;
}

.want-start h4{
    color: #bfbfbf;
}

.want-start a:hover{
    background-image: none;
    background-color: white;
    color: #35478C;
}
 /*MARK: NavBar
 */

/* HLAVIČKA */
#header {
    display: flex;
    align-items: center;
    padding: 27px 60px;
    height: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease;   
}

/* HLAVNÍ LOGO - má ID #mainLogo */
#mainLogo {
    height: 50px;
    transition: 0.2s;
}
#mainLogo:hover {
    margin-top: 15px;
    height: 70px;
}

/* NAV MENU - zůstává stejné */
#navbar {
    text-align: right;
    margin-left: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#navbar li {
    list-style: none;
    padding: 0 15px;
    margin-right: 25px;
    position: relative;
}

#navbar li a {
    color: #35478C;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.01rem;
    transition: 0.6s ease;
}

#navbar li a::after {
    content: '';
    position: absolute;
    left: 14px;
    bottom: -2px; 
    width: 0;
    height: 2px;
    background: #35478C;
    transition: width 0.3s ease;
}

#navbar li a:hover::after {
    width: 55%;
}

.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #444;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sub-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#navbar .sub-menu li {
    padding: 10px 0;
    margin: 0;
    text-align: left;
}

#navbar .sub-menu ul li a {
    display: block;
    padding: 8px 10px;
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

#navbar .sub-menu ul li a:hover {
    background-color: #6C8DA9;
}

#navbar .sub-menu ul li a::after {
    content: none;
}

#navbar > li:hover .sub-menu {
    display: block;
}

/* LANGUAGE DROPDOWN */
.lang-dropdown {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.lang-dropdown button {
    background: #fff;
    border: 1px solid #ccc;
    cursor: pointer;
    border-radius: 4px;
    border: none;
}

.lang-dropdown button:hover {
    /* Tady klidně hover efekt vynechte, 
       pokud nechcete měnit velikost tlačítka na vlajkách. */
    border: 1px solid #bbb;
}

/* Seznam jazyků je ve výchozím stavu skrytý */
.lang-dropdown ul {
    display: none;
    position: absolute;
    right: 0;
    top: 40px; 
    background: #fff;
    margin: 0;
    padding: 0;
    list-style: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    z-index: 999;
}

/* Jednotlivá položka seznamu */
.lang-dropdown ul li {
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    padding: 5px 8px; /* mezera kolem textu a vlajky */
}

.lang-dropdown ul li img {
    height: 18px;
    margin-right: 6px;
}

.lang-dropdown ul li:hover {
    outline: none;
    border: none;
}

.lang-dropdown button:hover{
    outline: none;
    border: none;
}
 
/*MARK:Main
 */

 #background-container {
    position: relative;
    width: 100%;
    height: 95vh; 
    background-image: url(img/laser.jpg);
    background-size: cover;
    background-position: center;
    transition: background-image 1s ease;
    overflow: hidden;
    display: flex; 
    justify-content: flex-end;
    align-items: center;
}

#main {
    display: flex;
    width: 40%;
    height: 100%;
    align-items: center;
    justify-content: center; 
    position: relative;
    z-index: 1;
    padding: 0 30px;
}

.main-box {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-color: rgba(0, 0, 0, 0.7);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
    width: 100%;
    line-height: 30px;
    color: antiquewhite;
    text-align: center;
    letter-spacing: 0.1rem;
    margin: auto;
    padding-right: 30px;
}

.main-box.show {
    opacity: 1;
}

.main-box h2 {
    margin-top: 20px;
    font-size: 36px;
    font-weight: 700;
    padding: 0 0 12px 30px;
    border-bottom: 2px solid white;
}

.main-box .main-detail {
    padding-top: 10px;
}

.main-box .main-detail p {
    padding-left: 30px;
    font-size: 18px;
    line-height: 32px;
}

#main .want-start {
    text-align: center;
    margin:0 0 20px 0px;
}
/*MARK:Option 
*/

#option-service{ 
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
    padding: 40px 0;
}

#option-service.footer-optional{
    min-height: 75vh;
}

.option-box {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  
  .option-box.visible {
    opacity: 1;
    transform: translateY(0);
  }

.option-box{
    width: 30%;
    min-width: 400px;
    text-align: center;
    padding: 20px 0;
    margin-top: 18px;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: 0.5s;
}

.option-box img{
    width: 80%;
}

.option-box:hover{
    box-shadow: 5px 5px 15px rgba(53, 71, 140, 0.3);
}
/*MARK: About
*/

#about {
    position: relative;
    background-color: #fafafa;
    height: 90vh;
    z-index: 0;
}

/* Pseudoelement s obrázkem na pozadí */
#about::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url(img/brosis-logo.png);
    background-repeat: no-repeat;
    background-position: 50% 90%;
    background-size: contain;
    opacity: 0.5;
    z-index: -1;
}

#about h2{
    padding: 40px 0;
    text-align: center;
    font-size: 42px;
}


#about .about-box{
    margin-bottom: 18px;
}

#about .about-box p{
    font-size: 22px;
    padding: 0 22px;
}

#about .about-box img{
    width: 100%;
}

/*MARK:Služby
*/
.head{
    padding: 28px 0 18px 30px;
    font-size: 26px;
}

/*MARK:Kontakt
*/

#contact{
    background-color: #fafafa;
    text-align: center;
}

.contact{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 50px;
}

.contact-box{
    padding-top: 30px;
}

.contact-detail{
    text-align: center;
    margin:12px 0 42px 0;
    background-color: #faf9f9;
    padding: 22px 35px;
    border-radius: 8px;
    transition: transform 0.5s ease;
}

.contact-detail:hover{
    box-shadow: #35478C 0 0 10px;
    transition: 0.3s;
}

.contact-detail h2{
    text-decoration: none;
    color: black;
    font-size: 22px;
    letter-spacing: 0.03rem;

}

.contact-detail a,
.contact-detail p{
    text-decoration: none;
    color: black;
    font-size: 18px;
    letter-spacing: 0.03rem;
    line-height: 28px;
}

.contact-detail .contact-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.contact-detail .contact-icon img{
    padding: 4px 0;
}

.contact .adress{
    width: 50%;
}

#footer{
    margin-top: 12px;
    background-image: linear-gradient(90deg, #35478C, #6C8DA9);
    padding: 8px 0;
    text-align: center;
}

#footer p{
    font-size: 14px;
    font-weight: 600;
}

/*MARK:Elox
*/

#elox{
    min-height: 90vh;
}

.text-box{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.head-line{
    width: 80%;
    padding: 10px 12px;
}

.head-line h3{
    text-align: center;
    font-size: 24px;
}

.head-line p{
    text-align: center;
    font-size: 18px;
}

.text-content{
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
  }

  .text-content.visible{
    opacity: 1;
    transform: translateY(0);
  }

.text-content{
    align-items: center;
    text-align: justify;
}

.text-box .text-content{
    width: 48%;
    min-width: 400px;
    padding: 20px 30px;
    text-align: justify;
    list-style-position: inside;
}

.text-content ol li{
    padding-left: 30px;
}

.text-content li{
    font-size: 16px;
    padding: 8px 40px;
    text-align: left;
}

.text-content h3{
    font-size: 24px;
    padding: 8px 20px;
    text-align: center;
}

.text-content p{
    font-size: 18px;
    text-align: justify;

}

.text-ps{
    font-size: 22px;
    padding: 8px 40px;
    text-align: center;
}

.product{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.product .text-content{
    width: 48%;
    text-align: center;
    margin: 12px 12px;
    border-radius: 8px;
    list-style-position: inside;
    background-color: white;
    box-shadow: 5px 5px 15px rgba(53, 71, 140, 0.3);
    transition: 0.5s;
}

.product .text-content p{
    padding: 8px 12px;
    font-size: 16px;
}

.center-list ul{
    text-align: center;
    font-size: 16px;
}

.footer-box{
	background: #292f35;
	padding: 20px 0;
}

.footer-info{
    display: flex;
    width: 100%;
    justify-content: space-around;
    align-items: center;
}

.footer-box .footer-company-name{
	text-align: center;
	margin: 0px;
	color: #ffffff;
}

.info-box{
    width: 50%;
    padding-left: 8px;
}

.underline{
    padding: 6px 0;
}

.info-box a,
.info-box p{
    font-size: 16px;
    padding-left: 30px;
}

.footer-box .footer-company-name a{
	color: #6C8DA9;
}
.footer-box .footer-company-name a:hover{
	color: #6C8DA9;
}

.adress-box{
    width:50%;
}
