/* Modern Sections 2025 Style */

/* Common Modern Elements */
.section-badge,
.section-badge-light {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 50px;
  color: #ff6b35;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-badge-light {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.modern-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.modern-text {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 30px;
}

.text-white-70 {
  color: rgba(255, 255, 255, 0.7);
}

/* About Modern Section */
.about-modern {
  padding: 100px 0;
  background: #ffffff;
}

.image-stack {
  position: relative;
  width: 100%;
  height: 600px;
}

.image-stack-item {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-stack-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-stack-item-top {
  width: 70%;
  height: 70%;
  top: 0;
  left: 0;
  z-index: 2;
}

.image-stack-item-bottom {
  width: 60%;
  height: 60%;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.experience-badge {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
  z-index: 3;
}

.experience-number {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
}

.experience-text {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.features-list {
  margin: 30px 0;
}

.feature-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: #fff8f3;
  transform: translateX(10px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #1a1a1a;
}

.feature-content p {
  font-size: 15px;
  color: #666;
  margin: 0;
}

/* Menu Modern Section */
.menu-modern {
  padding: 100px 0;
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
}

.menu-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(247, 147, 30, 0.05) 0%, transparent 50%);
}

.food-card {
  background: #1a1a1a;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.food-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
  border-color: rgba(255, 107, 53, 0.3);
}

.food-card-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  z-index: 2;
}

.food-card-badge.hot {
  background: linear-gradient(135deg, #ff3535, #ff6b35);
}

.food-card-badge.new {
  background: linear-gradient(135deg, #35ff6b, #6bff35);
  color: #0a0a0a;
}

.food-card-img {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.food-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.food-card:hover .food-card-img img {
  transform: scale(1.15);
}

.food-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.food-card:hover .food-card-overlay {
  opacity: 1;
}

.food-card-content {
  padding: 25px;
}

.food-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.food-card-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.food-rating {
  font-size: 14px;
  color: #ffd700;
}

.food-card-content > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.food-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.food-price {
  font-size: 28px;
  font-weight: 900;
  color: #ff6b35;
}

.btn-add-cart {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border: none;
  border-radius: 50%;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-add-cart:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.5);
}

/* Why Choose Modern */
.why-choose-modern {
  padding: 100px 0;
  background: linear-gradient(135deg, #fff8f3 0%, #ffffff 100%);
}

.feature-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  height: 100%;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff6b35, #f7931e);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 107, 53, 0.2);
}

.icon-circle {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #fff8f3, #ffe8d6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
}

.feature-card:hover .icon-circle {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  transform: scale(1.1) rotate(10deg);
}

.feature-card h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.feature-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.feature-number {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 48px;
  font-weight: 900;
  color: rgba(255, 107, 53, 0.1);
  transition: all 0.4s ease;
}

.feature-card:hover .feature-number {
  color: rgba(255, 107, 53, 0.3);
  transform: scale(1.2);
}

/* Stats Row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 80px;
  padding: 60px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 56px;
  font-weight: 900;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 16px;
  color: #666;
  font-weight: 600;
}

/* CTA Modern */
.cta-modern {
  position: relative;
  padding: 120px 0;
  background: #0a0a0a;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(247, 147, 30, 0.15) 0%, transparent 50%);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-icon {
  font-size: 80px;
  margin-bottom: 30px;
  display: inline-block;
}

.cta-title {
  font-size: 52px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-text {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
}

.btn-outline-light {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn-outline-light:hover {
  background: #ffffff;
  color: #ff6b35;
}

.cta-features {
  display: flex;
  gap: 60px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 600;
}

.cta-feature i {
  font-size: 24px;
  color: #ff6b35;
}

/* Responsive */
@media (max-width: 768px) {
  .modern-title {
    font-size: 32px;
  }
  
  .image-stack {
    height: 400px;
  }
  
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 40px 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-features {
    flex-direction: column;
    gap: 20px;
  }
}
