html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #0b0b0b;
  color: white;
  font-family: Arial, sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  transition: 0.2s;
}

a:hover {
  transform: translateY(-2px);
}.top-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 101, 0, 0.25);
}

.nav-inner {
  max-width: 1200px;
  margin: auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  color: #ff6500;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.nav-links a:hover {
  color: #ff6500;
}

@media (max-width: 650px) {
  .nav-inner {
    flex-direction: column;
    gap: 10px;
  }

  .nav-links {
    gap: 15px;
    font-size: 14px;
  }
}.nav-book {
  background: #ff6500;
  padding: 10px 16px;
  border-radius: 8px;
}

.nav-book:hover {
  color: white !important;
  transform: translateY(-2px);
}@media (max-width: 768px) {
  h1 {
    font-size: 34px !important;
  }

  h2 {
    font-size: 32px !important;
  }

  .nav-inner {
    padding: 12px 14px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .nav-links a {
    font-size: 13px;
  }

  .nav-book {
    padding: 8px 12px;
  }

  section {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}.mobile-call {
  display: none;
}

@media (max-width: 768px) {
  .mobile-call {
    display: block;
    position: fixed;
    left: 15px;
    right: 15px;
    bottom: 15px;
    z-index: 2000;
    background: #ff6500;
    color: white;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  }

  body {
    padding-bottom: 75px;
  }
}/* Карточки */
section div[style*="background:#171717"],
section div[style*="background:#1b1b1b"] {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section div[style*="background:#171717"]:hover,
section div[style*="background:#1b1b1b"]:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
}

/* Фотографии */
#gallery img {
  transition: transform 0.35s ease, filter 0.35s ease;
}

#gallery img:hover {
  transform: scale(1.025);
  filter: brightness(1.12);
}

/* Оранжевые кнопки */
.nav-book,
.mobile-call {
  box-shadow: 0 5px 20px rgba(255, 101, 0, 0.25);
}.menu-logo {
  width: 110px;
  height: 55px;
  object-fit: contain;
  display: block;
}

.menu-logo {
  width: 85px;
  height: 48px;
  object-fit: contain;
  display: block;
}@media (max-width: 768px) {
  .menu-logo {
    width: 75px;
    height: 42px;
    object-fit: contain;
  }
}