/* ========================================
   NEW HERO SECTION - FULL BACKGROUND WITH HEROPIC.JPG
   Dark theme with colors from heropic
   ======================================== */

/* Reset body/html margins to prevent gaps */
body, html {
  margin: 0;
  padding: 0;
}

/* Hamburger Menu - Top Left */
.hamburger-menu {
  position: fixed;
  top: 40px;
  left: 40px;
  width: 50px;
  height: 50px;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}

.hamburger-menu:hover {
  background: rgba(15, 23, 42, 0.95);
  border-color: rgba(192, 192, 192, 0.5);
  box-shadow: 0 0 20px rgba(192, 192, 192, 0.3);
  transform: scale(1.05);
}

.hamburger-line {
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-menu:hover .hamburger-line {
  background: #C0C0C0;
  box-shadow: 0 0 8px rgba(192, 192, 192, 0.6);
}

/* Active state - X icon */
.hamburger-menu[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-menu[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger-menu[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero Section - Full Background */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: #0F172A;
}

/* Full Background Image */
.hero-background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Video Background Styling */
.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Fallback for older browsers that don't support video */
.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Dark Overlay for Text Readability */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
}

/* Hero Content - Centered Title and Subtitle */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 40px;
}

.hero-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0 0 24px 0;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-subtitle {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease-out 0.6s both;
}

/* CTA Buttons */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #E8E8E8, #C0C0C0);
  color: #000;
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(192, 192, 192, 0.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #FFFFFF, #E8E8E8);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(192, 192, 192, 0.5);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary span,
.btn-primary svg {
  position: relative;
  z-index: 1;
}

.btn-primary svg {
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(192, 192, 192, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(192, 192, 192, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
}

@media (max-width: 768px) {
  .hamburger-menu {
    top: 24px;
    left: 24px;
    width: 46px;
    height: 46px;
  }
  
  .hamburger-line {
    width: 18px;
  }

  .hero-content {
    padding: 0 24px;
  }

  .hero-title {
    font-size: clamp(36px, 10vw, 56px);
    margin-bottom: 20px;
  }

  .hero-subtitle {
    font-size: clamp(16px, 4vw, 22px);
    max-width: 600px;
  }
  
}

@media (max-width: 480px) {
  .hamburger-menu {
    top: 20px;
    left: 20px;
    width: 42px;
    height: 42px;
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero-title {
    font-size: clamp(32px, 12vw, 44px);
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: clamp(15px, 4.5vw, 20px);
    line-height: 1.5;
  }
  
}

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

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .btn-primary:hover,
  .btn-secondary:hover {
    transform: none;
  }
}
