/* === HERO === */
.hero {
  
  height: 100vh;
  background-image: url("../../images/webp/vr-hero.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
}

/* Text */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  color: #fff;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-content p {
  margin-top: 15px;
  color: #e8e8e8;
  font-size: 1.2rem;
}

.hero-buttons {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === Scroll Down Indicator === */
.scroll-down {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
  cursor: pointer;
  animation: fadeIn 1.2s ease forwards;
  z-index: 10;
}

.scroll-text {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

.scroll-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.25);
  transition: 0.3s;
}

.scroll-circle:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
  transform: scale(1.08);
}

.scroll-arrow {
  font-size: 22px;
  color: #ffffff;
}

/* === Animations === */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(10,132,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(10,132,255,0); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(6px); }
  60% { transform: translateY(3px); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%, 15px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

/* PARTNERS SECTION */
.partners {
  text-align: center;
  padding: 120px 20px;
}

.partners .subtitle {
  color: #555;
  font-size: 18px;
  margin-bottom: 50px;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 40px;
  align-items: center;
  justify-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.logo-item {
  background: white;
  padding: 20px 30px;
  border-radius: 14px;
  border: 1px solid #d9e9ff;
  box-shadow: 0 6px 14px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.logo-item:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(10,132,255,0.1);
  border: 1px solid #e8e8e8;
}

.logo-item img {
  max-width: 120px;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: 0.3s ease;
}

.logo-item:hover img {
  filter: grayscale(0%);
}


/* === RESPONSIVE STYLES === */

/* Tablets */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }
  .hero-content p {
    font-size: 1.05rem;
  }
}

/* Phones */
@media (max-width: 768px) {
  .hero {
    padding: 0 14px;
    background-position: center;
  }

  .hero-content {
    max-width: 90%;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
  }

  .scroll-down {
    bottom: 30px;
  }

  .scroll-circle {
    width: 40px;
    height: 40px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .hero-content p {
    font-size: 0.95rem;
  }
  .scroll-text {
    font-size: 12px;
  }
}
