body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    height: auto; /* Упевнись, що сторінка не має фіксованої висоти */
    overflow: auto; /* Переконайся, що прокрутка дозволена */

}



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

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

.roboto-condensed-<uniquifier> {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

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

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

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

.amatic-sc-regular {
  font-family: "Amatic SC", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.amatic-sc-bold {
  font-family: "Amatic SC", sans-serif;
  font-weight: 700;
  font-style: normal;
}

/* Стилі для меню */
.black-menu {
    background: linear-gradient(135deg, #000000, #000000);
    padding: 15px;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    opacity: 0.9;
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    margin: 0;
    font-family: 'Arial', sans-serif;
    font-size: 42px;
}

.logo-link {
    text-decoration: none;
    color: white;
}

.menu-options {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex; /* елементи в ряд */
    align-items: center;
}

 .menu-options li {
    margin-right: 30px;}

nav ul li:last-child {
    margin-right: 50px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    position: relative;
}

nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background-color: #ccccff;
    transition: width 1s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a:hover {
    color: #ccccff;
}

.company-logo {
    width: 80px;
    height: auto;
    margin-top: -10px;
    margin-bottom: 0px;
}

.menu-toggle {
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
    margin-right: 40px;
}
  .mobile-menu {
    display: none;
  }


  @media (max-width: 960px) {
    .menu-toggle {
        display: block;
    }

    .mobile-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        height: 100%;
        width: 250px;
        background: rgba(0, 0, 0, 0.9);
        z-index: 1002;
        padding: 20px;
    }

    .mobile-menu.open {
        display: flex;
    }

    .mobile-menu nav ul {
        display: flex;
        flex-direction: column;
    }

    .mobile-menu nav ul li {
        margin: 20px 0;
    }

    .mobile-menu nav ul li a {
        color: white;
        font-size: 20px;
    }

    .close-btn {
        font-size: 30px;
        color: white;
        cursor: pointer;
        align-self: flex-end;
    }

    .nav { display: none;
    }

    .menu-options {
      display: none;
    }
     .black-menu {
       height: 45px;
     }
   }



   @media (max-width: 460px) {
       .logo h1 {
           font-size: 24px;
       }

       .nav ul li a {
           font-size: 16px;
       }

       .intro-button {
           font-size: 18px;
           padding: 6px 12px;
       }

       .black-menu {
         height: 32px;
       }

     .company-logo {
       width: 50px;
       height: 50px;
       }

       .Menu2 {
         list-style-type: none;
       }

       .footer-content {
           display: flex;
           flex-direction: column;
           justify-content: center;
           align-items: center;
           width: 100%;
           font-size: 16px;
           height: auto; /* Заміна на auto для адаптації висоти */
           padding: 20px 0; /* Додаємо відступи зверху та знизу */
       }

       .contact-info {
           text-align: center !important;
           margin: 50px 35px 110px 0;
           position: relative;
       }

       .contact-info p, .contact-info a {
           color: white;
           text-decoration: none;
           margin: 5px 0; /* Додаємо відступи між елементами */
       }

       .social-media {
           margin: 15px 0;
           display: flex;
           justify-content: center;
           gap: 15px; /* Відступи між іконками */
       }

       .social-media a {
           font-size: 20px;
           color: white;
       }

       .contact-button {
           background-color: #8781FF;
           color: white;
           text-decoration: none;
           border-radius: 5px;
           font-weight: bold;
           padding: 10px 20px;
           margin: 0 0 85px;
           display: inline-block;
           text-align: center;
       }

       .copyright {
           text-align: center;
           color: white;
           font-size: 14px;
           margin-top: 20px;
       }
     }

/* ==============================Вище стандартні стилі================================================================================ */


.img-all{
  width: 100%;
  height: auto;

}

@media (max-weight: 460px) {

  

}


































/* =============Нижче стандартін стилі для футера====================================================================================== */

  footer {
      background-color:#121118;
      color:white;
      padding:40px 30px;
      text-align:center;
      position:relative;
  }

  .footer-content {
      display:flex;
      justify-content:space-between;
      align-items:center;
      width:100%;
      font-size:20px;
  }

  .contact-info, .social-media {
      flex:1;
      text-align:left;
  }

  .contact-info p, .contact-info a {
      display:block;
      margin-bottom:15px;
      color:white;
      text-decoration:none;
      margin-left:30px;
      font-family: Times New Roman;
  }

  .social-media {
      position:absolute;
      top:50%;
      left:50%;
      transform:translate(-50%, -50%);
  }

  .social-media a {
      font-size:24px;
      margin:0 10px;
      color:white;
  }

  .contact-button {
      background-color:#8781FF;
      color:white;
      padding:10px 20px;
      text-decoration:none;
      border-radius:5px;
      font-weight:bold;
      position:absolute;
      margin-left: 20px;
      bottom:40px;
  }

  .contact-button:hover {
      background-color:#0056b3;
  }

  .copy rights {
      font-size:14px;
      color:#ccc;
      position:absolute;
      bottom:10px;
      width:100%;
      text-align:center;
  }
