*{
    margin:0px;
    padding:0px;
}
html{
    scroll-behavior: smooth;
}
body {
    text-align: center;
    font-family: 'Nunito', sans-serif;
  }
  h1{
    font-size:70px;
  }
  h2{
    font-size:35px;
    text-decoration: underline;
    text-decoration-color: #AD974F;
   
  }
  h3{
    font-size:22px;
  }
  h4{
    font-size:20px;
  }
  p{
    color:#231F20;
  }
nav{
    background-color:#ffffff;
    display:flex;
    justify-content: space-between;
    align-items:center;
    padding: 0px 30px;
    position: sticky;
    z-index: 1000;
    top:0;
   
}
nav.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Jemný stín */
}

nav img{
   max-width:100px;
}
.nav-menu{
    display:flex;
    gap:20px; 
    
}
.nav-menu .nav-link{
    list-style-type: none;
}

.nav-menu .nav-link a{
    position: relative;
    color:rgb(0, 0, 0);
    text-decoration:none;
    font-size:20px;
    transition: color 0.3s ease;
}

.nav-menu .nav-link a:after{
    content: '';  /* Pseudo-element pro podtržení */
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color:#AD974F;  /* Barva podtržení */
    transition: width 0.3s ease;  /* Animace pro šířku podtržení */   
}
.nav-menu .nav-link a:hover::after{
    width: 100%;  /* Podtržení se roztáhne na 100% šířky */
}
nav .hamburger{
    display:none;
    cursor:pointer;
}
.bar{
    display:block;
    width:25px;
    height:3px;
    margin:5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #000000;
}



#home{
    padding-top: 100px;
    background-image:url(/images/main-photo.jpg);
    background-repeat: no-repeat; /* Zabrání opakování obrázku  */
    background-size: cover; /* Obrázek bude pokrývat celou plochu  */
    background-position: center; /* Obrázek bude vycentrován na střed */
    padding-bottom:100px;
    justify-content: center;
    align-items: center;
    text-align: center;
   
}
#home p{
    color:white;
}
#home h1{
    color:rgb(255, 255, 255);
}
#home .button-container{
    margin-top:40px;
    display:flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

#home .home-button a{
    display: inline-block;
    padding: 14px 28px;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    border:1px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}
#home .home-button a:hover{
   
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
    
}
.home-button2 a{
    display: inline-block;
    padding: 14px 28px;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    border:1px solid #AD974F;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    background-color: #AD974F;;
}

#home .home-button2 a:hover{
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);   
}

#advice{
    padding: 200px 20px;
   
    text-align: center;
}

.why-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.why-box {
    background:#ffffff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.212);
    max-width: 250px;
    flex: 1 1 220px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-box:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 94, 184, 0.2);
}
.why-box i {
    font-size: 32px;
    color: #AD974F;
    margin-bottom: 10px;
}

.why-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.why-box p {
    font-size: 16px;
    color: #555;
}

#services{
    padding: 100px;
    background-color: #050505da;
}
#services p{
  color: #ffffff;
}
#services img{
    max-width:400px;
}
#services h2{
  color:white;
}
#services .service-container{
    margin-top:20px;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap:wrap;  
    max-width: 1200px;
    margin:0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


  .container-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem;
    border-radius: 16px;
   
  }
  
  .service-box-text {
    flex: 1;
  }
  
  .service-box-text i {
    font-size: 2.5rem;
    color:#AD974F;
    margin-bottom: 1rem;
  }
  
  .service-box-text h3 {
    font-size: 22px;
    margin-bottom: 1rem;
    color:white;
    text-decoration:underline;
    text-decoration-color: #AD974F;
  }
  
  .service-box-text p {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.5;
  }
  
  .service-box-image {
    flex: 1;
  }
  
  .service-box-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
  }
  
  #prices {
    background: #fdfdfd;
    padding: 4rem 1rem;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
  }
  
  .service-container2 {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease;
   
  }
  
  .service-container2:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }
  
  .service-container2 h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0.5rem;
    text-decoration: underline;
    text-decoration-color: #AD974F;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
  }
  
  thead th {
    background-color:#333;
    color: white;
    text-align: left;
    padding: 1rem;
    font-weight: 600;
  }
  
  tbody td {
    padding: 1rem;
    border-bottom: 1px solid #eaeaea;
  }
  tbody tr{
    text-align: left;
  }
  tbody tr:hover {
    background-color: #f3f8ff;
  }
  
  td strong {
    color: #161616;
  }

#faq{
    padding:100px;
    background-color: #ffffff28;
}

 #faq .question-container{
    max-width:800px;
    margin:0 auto;
    
 }
#faq img{
  max-width:300px;
  margin: auto;
  padding:20px;
}
.faq-item {
 
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
  }
  
  .faq-question {
    font-weight: 600;
    padding: 15px;
    background-color: #e7e7e78a;
    border-radius: 8px;
    color: #000000;
    transition: background 0.2s;
  }
  
  .faq-question:hover {
    background: #eee;
  }
  
  .faq-answer {
    padding: 10px 15px;
    display: none;
    color: #555;
  }

  #contact {
    background: #383837;
    padding: 4rem 1rem;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
  }
  
  .contact-container {
    max-width: 1000px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    justify-content: center;
   
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  }
  
  .contact-box1,
  .contact-box2 {
    flex: 1 1 300px;
  }
  
  .contact-box1 h3,
  .contact-box2 h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #000000;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0.5rem;
  }
  
  .contact-box1 p {
    margin: 0.5rem 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .contact-box1 i {
    color: #AD974F;
  }
  
  .contact-form .form-group {
    margin-bottom: 1.5rem;
  }
  
  .contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
    transition: border 0.3s;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: #0077b6;
    outline: none;
  }
  
  .contact-form textarea {
    resize: vertical;
    min-height: 120px;
  }
  
  .submit-btn {
    background:#AD974F;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
  }
  
  .submit-btn:hover {
    background: #005f8e;
  }

footer{
  padding-bottom: 50px;
    background-color: rgb(0, 0, 0);
}
footer img{
    max-width:300px;
}
footer a i{
    color:white;
}
footer p{
    color:white;
}
footer a{
  color:#AD974F;
}
footer .img-container{
  min-width:250px;
  margin:auto;
  text-align: center;
}


@media screen and (max-width: 768px) {
    nav .hamburger{
        display:block;
    }
    nav .hamburger.active .bar:nth-child(2){
      opacity: 0;
  }
  nav .hamburger.active .bar:nth-child(1){
      transform: translateY(8px) rotate(45deg);
  }
  nav .hamburger.active .bar:nth-child(3){
      transform: translateY(-8px) rotate(-45deg);
  }
    nav .nav-menu{
       
        position: fixed;
        left:-100%;
        top:0px;
        flex-direction:column;
        background-color:#AD974F;
        width:100%;
        text-align:center;
        transition:0.3s;
        padding-top:40px;
        padding-bottom:40px;
    }
    nav .nav-menu .nav-link{
        margin:16px 0px;
    }
    nav .nav-menu.active{
        left:0;
    }    
    .nav-menu .nav-link a{
      
        color:rgb(14, 13, 13);
      
    }
    .container-box {
      flex-direction: column;
      text-align: center;
    }
  
    .container-box:nth-child(even) {
      flex-direction: column-reverse;
    }
  
    .service-box-image,
    .service-box-text {
      width: 100%;
    }
    
    .service-box-text i {
      margin-top: 1rem;
    }

    #advice{
      padding-top:30px;
    }
   
}
  

  @media screen and (max-width: 480px) {
    #home{
      padding: 100px 10px 100px 10px;
    }
   #home h1{
    font-size:55px;
   }
    #services{
      padding: 10px;
      
  }
    .service-container{
      display:flex;
      flex-direction: column;
      justify-content: center;
      text-align: center;
      margin: 0 auto;
    }
    .service-container .container-box{
     
      justify-content: center;
      text-align: center;
      margin: 0 auto;
    }
    .service-box-image img{
      min-width:200px;
      margin:0 auto;
    }
    #faq img{
      display:none;
    }
    #faq .question-container{
      width:100%;
      margin:auto;
    }
    footer img{
      padding-bottom:10px;
      max-width:200px;
      margin:0 auto;
    }
  }