/* Modern Hero with Flying Burger */

.hero-modern {
  position: relative;
  min-height: 100vh;
  background: #0a0a0a;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(247, 147, 30, 0.1) 0%, transparent 50%);
  z-index: 1;
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.float-burger {
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
  animation: floatBurger 6s ease-in-out infinite !important;
}

@keyframes floatBurger {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-30px) rotate(2deg);
  }
  50% {
    transform: translateY(-15px) rotate(-2deg);
  }
  75% {
    transform: translateY(-25px) rotate(1deg);
  }
}

.float-element {
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
  opacity: 0.9;
}

/* Hero Content */
.hero-content-modern {
  position: relative;
  z-index: 3;
  max-width: 700px;
  padding: 60px 0;
}

.hero-badge {
  display: inline-block;
  color: #ff6b35;
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease;
}

.hero-title {
  font-size: 72px;
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeInUp 1s ease 0.2s both;
}

.gradient-text {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  animation: gradientShift 3s ease infinite;
  background-size: 200% 200%;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  line-height: 1.6;
  animation: fadeInUp 1s ease 0.4s both;
}

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

.hero-buttons .btn {
  padding: 18px 40px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.hero-buttons .btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.hero-buttons .btn:hover::before {
  width: 400px;
  height: 400px;
}

.hero-buttons .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

.hero-buttons .btn i {
  transition: transform 0.3s ease;
}

.hero-buttons .btn:hover i {
  transform: translateX(5px);
}

/* Decorative Elements */
.hero-modern::before {
  content: '🍕';
  position: absolute;
  font-size: 200px;
  opacity: 0.03;
  left: -50px;
  bottom: -50px;
  z-index: 1;
  animation: rotate 30s linear infinite;
}

.hero-modern::after {
  content: '🍔';
  position: absolute;
  font-size: 150px;
  opacity: 0.03;
  right: -30px;
  top: 50%;
  z-index: 1;
  animation: rotate 25s linear infinite reverse;
}

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

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

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .float-burger {
    width: 400px !important;
    right: 5% !important;
  }
  
  .hero-title {
    font-size: 60px;
  }
}

@media (max-width: 768px) {
  .hero-modern {
    min-height: 80vh;
  }
  
  .float-burger {
    width: 300px !important;
    right: -10% !important;
    top: 30% !important;
    opacity: 0.5;
  }
  
  .float-element {
    display: none;
  }
  
  .hero-title {
    font-size: 42px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-buttons .btn {
    padding: 15px 30px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
  }
  
  .float-burger {
    width: 250px !important;
  }
}
