@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

*{
    font-family: "Nunito", sans-serif;
}

a{
    text-decoration: none;
}

.shapka{
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 5px;
    width: 100%;
    height: 50px;
    margin-right: 15px;
    display: flex;
    gap: 25px;
    align-items: center;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.7); /* полупрозрачный */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
     border-bottom: 1px solid rgba(215, 215, 215, 0.627);
}

/* Активная ссылка (Разработка сайтов) */
.havee {
    background: #0066cc;
    color: white !important;
    border-radius: 20px;
    padding: 10px 20px;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.2);
    transition: all 0.3s ease;
}


.filling {
    color: #4a5568;
    position: relative;
    overflow: hidden;
}

.filling:hover {
    background-color: rgba(0, 102, 204, 0.08);
    color: #0066cc;
}

/* Плавная линия снизу */
.filling::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0066cc, #00a4b2);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    opacity: 0;
}

.filling:hover::after {
    width: 70%;
    opacity: 1;
}

/* Вариант 4: Двойная линия */
.filling.double-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0066cc, #00a4b2);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.filling.double-line::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 1px;
    background: rgba(0, 102, 204, 0.3);
    border-radius: 1px;
    transform: translateX(-50%);
    transition: width 0.5s ease;
    transition-delay: 0.1s;
}

.filling.double-line:hover::after {
    width: 80%;
}

.filling.double-line:hover::before {
    width: 60%;
}



/* ===== БУРГЕР ===== */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  width: 24px;
  height: 3px;
  background: #000;
  border-radius: 2px;
}

/* ===== МОБИЛЬНОЕ МЕНЮ ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -1000px;
  width: 280px;
  height: 100vh;
  background: #fff;
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: left 0.3s ease;
  z-index: 1001;
}

.mobile-menu a {
  text-decoration: none;
  color: #000;
  font-size: 18px;
}

/* ===== АКТИВНОЕ СОСТОЯНИЕ ===== */
.mobile-menu.active {
  left: 0;
}


.mobile-menu .havePhone{
  text-decoration: underline;
}

.mobile-menu img{
  text-align: center;
  margin-top: 0;
}

.vib{
  background-color: #00A4B2;
  padding: 10px;
  border-radius: 20px;
  color: white;
  transition: all 0.3s;
}
.vib:hover{
  background-color: #01818d;
}

.centere{
    position: absolute;
    inset: 0; /* top, right, bottom, left = 0 */
    margin: auto;
    width: fit-content;
    height: fit-content;
    background-color: #00A4B2;
    color: white;
    padding: 5px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 50px;
}


@media (max-width: 768px) {
    .burger {
        display: flex;
    }
    .shapka img{
        height: 40px;
        width: auto;
    }
}

