/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background-color: #000000;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar {
  padding: 1rem 0;
  min-height: 80px;
}

.nav-brand {
  display: flex;
  align-items: center;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 56px;
  width: auto;
  display: block;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: color 0.25s ease;
}

.nav-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  margin: 3px 0;
  transition: 0.3s;
}

/* Language Switcher */
.language-switcher {
  position: relative;
  margin-left: 2rem;
}

.language-dropdown {
  position: relative;
}

.language-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0;
  padding: 0.5rem 1rem;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
}

.language-btn:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.06);
}

.lang-text {
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.dropdown-arrow {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.language-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

.language-options {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: rgba(10, 10, 10, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  min-width: 160px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 10000;
  pointer-events: none;
}

.language-dropdown.active .language-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.language-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: #cccccc;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  border-radius: 8px;
  margin: 0.25rem;
}

.language-option:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.language-option.active {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.language-option.active::after {
  content: "✓";
  margin-left: auto;
  color: #ffffff;
}

/* Hero — полноэкранный фон, кинематографичный блок */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: #050505;
  overflow: hidden;
}

/* Контейнер фона: ширина/масштаб меняются при скролле, параллакс без плавной тени */
.hero-bg-parallax {
  position: absolute;
  left: -5%;
  top: -5%;
  width: 110%;
  height: 110%;
  z-index: 0;
  will-change: transform;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  animation: heroImageZoom 12s ease-out forwards;
}

@keyframes heroImageZoom {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 50% at 50% 40%,
      transparent 0%,
      transparent 55%,
      rgba(0, 0, 0, 0.25) 100%
    ),
    radial-gradient(
      ellipse 100% 100% at 50% 50%,
      transparent 0%,
      rgba(0, 0, 0, 0.4) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.4) 0%,
      transparent 32%,
      transparent 58%,
      rgba(0, 0, 0, 0.7) 100%
    );
  pointer-events: none;
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 26vh;
}

.hero-content {
  position: relative;
  left: 0;
  right: 0;
  text-align: center;
}

/* Hero entrance animation — каскад появления */
.hero-content--animate .hero-title {
  animation: heroFadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.hero-content--animate .hero-tagline {
  animation: heroFadeInUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}

.hero-content--animate .hero-book-btn {
  animation: heroFadeInUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.7s both;
}

@keyframes heroFadeInUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  margin: 0;
}

.hero-logo-image {
  display: block;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}

.hero-tagline {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin: 1.4rem 0 1.9rem;
}

.hero-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  margin-top: 50%;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hero-book-btn:hover {
  color: #000;
  background: #fff;
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.hero-book-arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}

.hero-book-btn:hover .hero-book-arrow {
  transform: translateX(4px);
}

/* Scroll hint — индикатор прокрутки вниз */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  animation: heroScrollHintFade 1.2s ease-out 1.4s both;
}

@keyframes heroScrollHintFade {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
  border-radius: 2px;
}

/* Секции услуг — выразительные */
.services-section-block {
  padding: 4.5rem 0;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.services-section-block .section-title {
  font-size: 0.85rem;
  letter-spacing: 0.32em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.5rem;
}

.services-section-block .section-title::after {
  width: 56px;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
  margin: 1.25rem auto 0;
}

.services-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.services-section-block .service-item {
  display: block;
  padding: 1.25rem 1.5rem;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.services-section-block .service-item:last-child {
  margin-bottom: 0;
}

.services-section-block .service-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.25);
}

.services-section-block .service-item span {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.25s ease;
}

.services-section-block .service-item:hover span {
  color: #fff;
}

/* Services accordions — minimal */
.services-accordion-section .accordion {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.services-accordion-section .accordion-item {
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
  transition: border-color 0.2s ease;
}

.services-accordion-section .accordion-item:last-child {
  border-bottom: none;
}

.services-accordion-section .accordion-item:hover {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.services-accordion-section .accordion-item.is-open {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.services-accordion-section .accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  transition: color 0.2s ease;
}

.services-accordion-section .accordion-header span:first-child {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.85);
}

.services-accordion-section .accordion-header:hover span:first-child,
.services-accordion-section
  .accordion-item.is-open
  .accordion-header
  span:first-child {
  color: rgba(255, 255, 255, 0.95);
}

.services-accordion-section .accordion-icon {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin-left: 0.75rem;
  position: relative;
  color: rgba(255, 255, 255, 0.45);
  transition:
    transform 0.25s ease,
    color 0.2s ease;
}

.services-accordion-section .accordion-icon::before,
.services-accordion-section .accordion-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: currentColor;
}

.services-accordion-section .accordion-icon::before {
  width: 10px;
  height: 1px;
  margin: -0.5px 0 0 -5px;
}

.services-accordion-section .accordion-icon::after {
  width: 1px;
  height: 10px;
  margin: -5px 0 0 -0.5px;
}

.services-accordion-section .accordion-item.is-open .accordion-icon {
  transform: rotate(45deg);
  color: rgba(255, 255, 255, 0.7);
}

.services-accordion-section .accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.services-accordion-section .accordion-item.is-open .accordion-panel {
  grid-template-rows: 1fr;
}

.services-accordion-section .accordion-panel-inner {
  overflow: hidden;
  min-height: 0;
}

.services-accordion-section .accordion-meta {
  margin: 0 0 0.5rem 0;
  padding: 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
}

.services-accordion-section .accordion-description {
  margin: 0;
  padding: 0 0 1rem 0;
  padding-top: 0;
  font-size: 0.85rem;
  line-height: 1.55;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.5);
}

/* Stronger section titles for key blocks (Team, Products, Booking) */
.team-section .section-title,
.products-section .section-title,
.booking-section .section-title {
  font-size: 0.9rem;
  letter-spacing: 0.32em;
  color: rgba(255, 255, 255, 0.75);
}

.team-section .section-title::after,
.products-section .section-title::after,
.booking-section .section-title::after {
  width: 56px;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
  margin: 1.25rem auto 0;
}

/* Booking Section — над футером */
.booking-section {
  padding: 5rem 0;
  background: #0a0a0a;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section-title {
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2.5rem;
  position: relative;
}

.section-title::after {
  display: block;
  content: "";
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  margin: 1rem auto 0;
}

.booking-content {
  display: flex;
  flex-direction: column;
  gap: 2.1rem;
}

.booking-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.booking-image {
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.booking-info-block {
  position: relative;
  z-index: 2;
  padding: 0 0.5rem;
}

.booking-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.booking-info-block h3 {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #fff;
  margin-bottom: 1rem;
}

.booking-info-block p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1rem;
}

.booking-mock {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.5rem;
}

.booking-button {
  display: inline-block;
  text-decoration: none;
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 12px 28px;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.booking-button:hover {
  background: #ffffff;
  color: #000000;
  transform: translateY(-2px);
}

/* Team Section */
.team-section {
  padding: 5rem 0;
  background: #050505;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-member {
  text-align: center;
  background: transparent;
  border-radius: 0;
  padding: 1.5rem 1rem;
  transition: opacity 0.3s ease;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.team-member:hover {
  transform: none;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.06);
  opacity: 1;
}

.member-photo {
  width: 165px;
  height: 165px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member:nth-child(2) .member-photo {
  background: #0d0d0d;
}
.team-member:nth-child(2) .member-photo img {
  object-position: center 48%;
}

.member-name {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 0.25rem;
}

.member-role {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.25rem;
}

.member-experience {
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.4);
}

/* Products Section */
.products-section {
  padding: 5rem 0;
  background: #050505;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.product-item {
  background: transparent;
  border-radius: 0;
  padding: 1.25rem;
  text-align: center;
  transition: opacity 0.25s ease;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.product-item:hover {
  transform: none;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.06);
  opacity: 1;
}

.product-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-name {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.35rem;
}

.product-description {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.4);
}

/* Footer */
.footer {
  background: #000000;
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-title {
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
  position: relative;
}

.footer-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
  margin: 1.25rem auto 0;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #ffffff;
  color: #000000;
  transform: translateY(-2px);
}

.contact-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.contact-item a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #ffffff;
}

.contact-icon {
  font-size: 1.2rem;
}

.contact-hours {
  white-space: pre-line;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: flex;
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 24px;
    transition: left 0.3s ease;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 3rem;
    align-items: flex-start;
  }

  .nav-toggle {
    display: flex;
  }

  .language-switcher {
    margin-left: 1rem;
    order: -1;
  }

  .language-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }

  .language-options {
    right: auto;
    left: 0;
    min-width: 140px;
  }

  .hero-content-wrap {
    padding-top: 24vh;
    padding-left: 15px;
    padding-right: 15px;
  }

  .hero-logo-word {
    font-size: 2.75rem;
  }

  .hero-waves-svg {
    width: 1.1em;
    height: 0.48em;
  }

  .hero-tagline {
    font-size: 0.65rem;
    letter-spacing: 0.28em;
    margin: 0.75rem 0 1.25rem;
  }

  .hero-book-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
  }

  .hero-scroll-hint {
    bottom: 1.5rem;
  }

  .hero-scroll-line {
    height: 28px;
  }

  .booking-content {
    gap: 2rem;
  }

  .booking-row {
    gap: 1.25rem;
  }

  .booking-image img {
    height: 280px;
  }

  .booking-row:nth-child(2) .booking-image {
    margin-top: 1.5rem;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
  }

  .product-image {
    width: 140px;
    height: 140px;
    margin-bottom: 0.75rem;
  }

  .product-name {
    font-size: 0.8rem;
  }

  .product-description {
    font-size: 0.75rem;
  }

  .contact-info {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .section-title {
    font-size: 0.65rem;
  }

  .container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 0.6rem;
  }

  .hero-content-wrap {
    padding-top: 22vh;
  }

  .hero-scroll-hint {
    bottom: 1rem;
  }

  .hero-scroll-line {
    height: 24px;
  }

  .hero-logo-word {
    font-size: 2.2rem;
  }

  .hero-waves-svg {
    width: 1.05em;
    height: 0.45em;
  }

  .hero-book-btn {
    padding: 0.65rem 1rem;
    font-size: 0.65rem;
  }

  .services-section-block .service-item span {
    font-size: 0.8rem;
  }

  .services-accordion-section .accordion-header span:first-child {
    font-size: 0.8rem;
  }

  .services-accordion-section .accordion-description {
    font-size: 0.8rem;
  }

  .booking-section,
  .team-section,
  .products-section {
    padding: 3rem 0;
  }

  .services-section-block {
    padding: 3rem 0;
  }

  .footer {
    padding: 60px 0 20px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Loading animation */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.loading.hide {
  opacity: 0;
  pointer-events: none;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-top: 2px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
