:root {
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --nature-gradient: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  --dark-overlay: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(17, 153, 142, 0.3) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glow-green: #38ef7d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
  background: #000;
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("./assets/video/bg-img.png");
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: opacity 0.3s ease;
}

.hero-fallback.show {
  opacity: 1;
}

.hero-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-media.loaded {
  opacity: 1;
}

.hero-media.loaded + .hero-fallback {
  opacity: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-overlay);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 0 2rem;
  animation: fadeInUp 1.5s ease-out both;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.3rem;
  font-weight: 300;
  opacity: 0.9;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

/* LOGO */
.logo {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 10;
  animation: fadeInLeft 1s ease-out;
}

.logo img {
  height: 70px;
  width: auto;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.4));
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover img {
  filter: drop-shadow(0 6px 25px rgba(56, 239, 125, 0.3));
}

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

/* BOTTOM CONTROLS */
.bottom-controls {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2rem;
  animation: fadeInUp 1s ease-out 0.8s both;
}

/* VIEW MORE BUTTON */
.view-more-btn {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 2px solid var(--glass-border);
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  letter-spacing: 0.5px;
  position: relative;
}

.view-more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--nature-gradient);
  transition: left 0.5s ease;
  z-index: -1;
}

.view-more-btn:hover::before {
  left: 0;
}

.view-more-btn:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(56, 239, 125, 0.4);
  border-color: var(--glow-green);
  color: white;
}

.view-more-btn .arrow {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.view-more-btn:hover .arrow {
  transform: translateX(8px) rotate(45deg);
}

/* SOCIAL LINKS */
.social-links {
  display: flex;
  gap: 0.2rem;
}

.social-link {
  width: 60px;
  height: 55px;
  border-radius: 50%;
  margin-right: 1rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--nature-gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.social-link:hover::before {
  opacity: 1;
}

.social-link:hover {
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 15px 40px rgba(56, 239, 125, 0.4);
  border-color: rgba(56, 239, 125, 0.6);
}

.social-link svg {
  width: 22px;
  height: 22px;
  transition: all 0.3s ease;
}

.social-link:hover svg {
  transform: scale(1.2);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

/* Individual social platform colors on hover */
.social-link.instagram:hover {
  background: linear-gradient(
    135deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}

.social-link.youtube:hover {
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

.social-link.facebook:hover {
  background: linear-gradient(135deg, #1877f2 0%, #0d5ed8 100%);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .logo {
    top: 1.5rem;
    left: 1.5rem;
  }

  .logo img {
    height: 55px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

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

  .hero-content {
    padding: 0 1.5rem;
  }

  /* Mobile bottom controls - centered */
  .bottom-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    align-items: center;
    gap: 1.5rem;
  }

  .view-more-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .social-links {
    gap: 0.8rem;
  }

  .social-link {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .logo {
    top: 1rem;
    left: 1rem;
  }

  .logo img {
    height: 45px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

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

  .hero-content {
    padding: 0 1rem;
  }

  .bottom-controls {
    bottom: 1rem;
    gap: 1rem;
  }

  .view-more-btn {
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
  }

  .view-more-btn .arrow {
    width: 20px;
    height: 20px;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.hero-content :focus,
.logo :focus,
.social-link:focus,
.view-more-btn:focus {
  outline: 2px solid #38ef7d;
  outline-offset: 2px;
}
