/* ============================================
   MODERN HERO SECTION
   ============================================ */

.hero {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: var(--spacing-2xl) var(--spacing-md);
  min-height: 600px;
  overflow: hidden;
  background: url('../asset/cover3.png') center/cover no-repeat;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  flex: 1;
  min-width: 300px;
  padding: var(--spacing-lg);
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.hero-content .btn {
  background: rgba(30, 64, 175, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  padding: 12px 20px;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.3s;
  border: none;
  display: inline-block;
  margin-top: var(--spacing-md);
  position: relative;
  overflow: hidden;
  max-width: 300px;
  text-align: center;
}

.hero-content .btn::before {
  display: none !important;
  content: none !important;
}

.hero-content .btn:hover {
  background: rgba(30, 64, 175, 1);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.hero-content h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  margin-bottom: var(--spacing-lg);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 900;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-content p {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  margin-bottom: var(--spacing-xl);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* ============================================
   HERO BUTTONS
   ============================================ */
.hero-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-buttons .btn {
  padding: 18px 40px;
  margin-right: 0;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-weight: 700;
  font-size: var(--font-size-lg);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-xl);
}

.hero-buttons .btn::before {
  display: none !important;
  content: none !important;
}

.hero-buttons .btn:hover::before {
  display: none !important;
  content: none !important;
}

.hero-buttons .btn.primary {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-buttons .btn.primary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-buttons .btn.secondary {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-color);
  border: 2px solid transparent;
}

.hero-buttons .btn.secondary:hover {
  background: #fff;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  color: var(--primary-dark);
}

.hero-buttons .btn:active {
  transform: translateY(-2px) scale(1.02);
}

/* ============================================
   HERO IMAGE
   ============================================ */
.hero-image {
  flex: 1;
  min-width: 300px;
  padding: var(--spacing-lg);
  position: relative;
  z-index: 2;
  animation: slideInRight 0.8s ease-out 0.3s both;
}

.hero-image img {
  width: 100%;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
  transition: transform var(--transition-slow);
}

.hero-image img:hover {
  transform: scale(1.05) rotate(2deg);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
  .hero {
    min-height: 500px;
    padding: var(--spacing-xl) var(--spacing-md);
  }
  
  .hero-content {
    padding: var(--spacing-md);
  }
  
  .hero-content h1 {
    letter-spacing: 2px;
    margin-bottom: var(--spacing-md);
  }
  
  .hero-content p {
    margin-bottom: var(--spacing-lg);
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.hero-content h1 {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-content p {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
  animation: fadeInUp 0.8s ease-out 0.6s both;
}
