/* reset browser css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    font-family: 'Segoe UI', 'Tahoma', 'Verdana', sans-serif;
    line-height: 1.7em;
    height: 100%;  
    display: flex;
    flex-direction: column;
  }
  
  /* Põhikirjad ja lingid */
  h1, h2, h3 {
    padding-bottom: 20px;
  }
  
  a {
    color: #333;
    text-decoration: none;
  }
  
  #navbar {
    background: #333;
    color: #fff;
    overflow: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
  }
  
  #navbar a {
    color: #fff;
  }
  
  #navbar ul {
    list-style: none;
    display: flex;
  }
  
  #navbar ul li {
    margin-left: 20px;
  }
  
  #navbar ul li a {
    display: block;
    padding: 10px 15px;
    text-align: center;
    border-radius: 5px;
  }
  
  #navbar ul li a:hover,
  #navbar ul li a.current {
    background: #444;
    color: #f7c08a;
  }
  
  #navbar h1 {
    font-size: 24px;
    margin: 0;
    padding-top: 10px;
    font-weight: 700;
  }
  
  /* Showcase */
  #showcase {
    background: url('https://vs24piil.ita.voco.ee/veebiarendus/Hotell/showcase.jpg') no-repeat center center/cover;
    height: 600px;
  }
  
  #showcase .showcase-content {
    color: #fff;
    text-align: center;
    padding-top: 170px;
  }
  
  #showcase .showcase-content h1 {
    font-size: 60px;
    line-height: 1.2em;
  }
  
  #showcase .showcase-content p {
    padding-bottom: 20px;
    line-height: 1.7em;
  }
  
  /* Container */
  .container {
    margin: auto;
    max-width: 1100px;
    padding: 0 20px;
    overflow: auto;
    flex-grow: 1; /* Täidab kogu vaba ruumi */
  }
  
  /* Põhi stiilid */
  .text-primary {
    color: #f7c08a;
  }
  
  .btn {
    display: inline-block;
    font-size: 18px;
    background: #333;
    color: #fff;
    padding: 13px 20px;
    border: none;
    cursor: pointer;
    border-radius: 15px;
  }
  
  .btn:hover {
    background: #f7c08a;
    color: #333;
  }
  
  .btn-light {
    background: #f4f4f4;
    color: #333;
  }
  
  .bg-dark {
    background: #333;
    color: #fff;
  }
  
  .bg-light {
    background: #f4f4f4;
    color: #333;
  }
  
  .bg-primary {
    background: #f7c08a;
    color: #333;
  }
  
  .py-30 {
    padding: 30px 0;
  }
  
  /* Info */
  #info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 400px;
    background-color: #333;
    color: #fff;
  }
  
  #info .info-content {
    width: 50%;
    text-align: center;
    padding: 12px 30px;
  }
  
  #info .info-img {
    width: 50%;
    background: url('https://vs24piil.ita.voco.ee/veebiarendus/Hotell/photo-1.jpg');
    background-size: cover;
    height: 100%;
  }
  
  /* Features */
  #features {
    display: flex;
    justify-content: space-between;
    text-align: center;
    padding: 50px;
  }
  
  #features .box {
    flex: 1;
    padding: 50px;
    margin: 0 10px;
    text-align: center;
    box-sizing: border-box;
  }
  
  #features .box i {
    margin-bottom: 10px;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 20px;
    background: #444;
    color: #fff;
    margin-top: auto; 
    flex-shrink: 0; 
    width: 100%;
  }
  
  /* Kirjeldus */
  #about-info {
    margin-bottom: 0;
    padding-bottom: 0;
    display: flex;
    justify-content: space-between;
  }
  
  #about-info .info-left {
    width: 50%;
  }
  
  #about-info .info-right {
    width: 50%;
    margin-bottom: 20px;
  }
  
  #about-info .info-right img {
    display: block;
    margin: auto;
    width: 70%;
    border-radius: 50%;
  }
  
  /* Testimonials */
  #testimonials {
    margin-top: 0;
    padding-top: 0;
    height: 600px;
    background: url('https://vs24piil.ita.voco.ee/veebiarendus/Hotell/test-bg.jpg') no-repeat center center/cover;
  }
  
  #testimonials h2 {
    color: #fff;
    text-align: center;
  }
  
  #testimonials .testimonial {
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 5px;
    opacity: 0.9;
  }
  
  #testimonials .testimonial img {
    width: 70px;
    margin-right: 20px;
    border-radius: 50%;
  }
  
  /* Contact Form */
  #contact-form .form-group {
    margin-bottom: 20px;
  }
  
  #contact-form .form-group input,
  #contact-form .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
  }
  
  #contact-form .form-group textarea {
    height: 200px;
  }
  
  #contact-form .form-group input:focus,
  #contact-form .form-group textarea:focus {
    outline: none;
    border-color: #f7c08a;
  }
  
 /* #contact-info .box {
    width: 33.3%;
    padding: 50px;
    text-align: center;
    margin-bottom: 10px;
    background-color: #333;
  }*/

  #contact-info {
    background: #333;
    color: #fff;
    padding: 50px 0;
}

#contact-info .box {
    text-align: center;
    padding: 20px;
    margin: 20px;
    background: #444;
    border-radius: 5px;
    flex: 1;
}

#contact-info .box i {
    margin-bottom: 15px;
}

#contact-info .box h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

#contact-info .box p {
    font-size: 16px;
}

/* Täiendav info ja funktsioonid */
#info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
  
  /* Tagasi paigutus 
  .clearfix::after {
    content: " ";
    clear: both;
    display: table;
  }*/