/* 
 * Hero Section Redesign Styles
 * Professional Assignment Help Theme
 */

:root {
  --hero-orange: var(--accent);
  --hero-orange-hover: var(--accent-strong);
  --hero-bg: var(--bg-page);
  --hero-text-dark: var(--primary-text);
  --hero-text-muted: var(--muted-text);
  --hero-card-shadow: var(--shadow-soft);
  --hero-glass: rgba(255, 255, 255, 0.85);
}

.hero {
  background: linear-gradient(180deg, var(--hero-bg) 0%, #FFFFFF 100%);
  padding: 80px 0 0;
  overflow: hidden;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFF0E6;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero-badge .group-icon {
  display: flex;
  align-items: center;
}

.hero-badge span {
  font-size: 14px;
  font-weight: 600;
  color: var(--hero-orange);
}

/* Typography */
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--hero-text-dark);
  margin-bottom: 24px;
}

.hero-title .highlight {
  color: var(--hero-orange);
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--hero-text-muted);
  margin-bottom: 32px;
  max-width: 540px;
}

/* Features */
.hero-features {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-feature-icon {
  width: 40px;
  height: 40px;
  background: #FFEBD6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hero-orange);
  font-size: 20px;
}

.hero-feature-text strong {
  display: block;
  font-size: 15px;
  color: var(--hero-text-dark);
}

.hero-feature-text span {
  font-size: 13px;
  color: var(--hero-text-muted);
}

/* CTAs */
.hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 48px;
}

.btn-hero-primary {
  background: var(--hero-orange);
  color: #fff;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(255, 102, 0, 0.2);
}

.btn-hero-primary:hover {
  background: var(--hero-orange-hover);
  transform: translateY(-2px);
}

.btn-hero-secondary {
  border: 1px solid #E2E8F0;
  background: #fff;
  color: var(--hero-text-dark);
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  border-color: var(--hero-orange);
  color: var(--hero-orange);
}

.play-icon {
  width: 24px;
  height: 24px;
  background: var(--hero-orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* Rating Card */
.hero-rating-card {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--hero-card-shadow);
  display: inline-block;
  max-width: 400px;
}

.rating-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 16px;
}

.rating-item {
  text-align: center;
}

.rating-item strong {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
}

.rating-stars {
  color: #FFB800;
  margin-bottom: 4px;
}

.rating-value {
  font-size: 14px;
  font-weight: 700;
}

.rating-footer {
  font-size: 14px;
  color: var(--hero-text-muted);
  text-align: center;
}

.rating-footer .excellent {
  color: var(--hero-orange);
  font-weight: 700;
}

/* Right Column & Floating Cards */
.hero-image-col {
  position: relative;
}

.hero-main-img {
  width: 100%;
  border-radius: 30px;
  position: relative;
  z-index: 1;
}

.floating-card {
  position: absolute;
  background: var(--hero-glass);
  backdrop-filter: blur(10px);
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: var(--hero-card-shadow);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.floating-card-1 {
  top: 10%;
  left: -20px;
}

.floating-card-2 {
  bottom: 30%;
  left: -10px;
  animation-delay: 1s;
}

.floating-card-3 {
  bottom: 10%;
  right: -20px;
  animation-delay: 2s;
}

.fc-icon {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hero-orange);
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.fc-content strong {
  display: block;
  font-size: 16px;
  color: var(--hero-text-dark);
}

.fc-content span {
  font-size: 13px;
  color: var(--hero-text-muted);
}

/* Bottom Feature Bar */
.hero-bottom-bar {
  background: #FFF5EE;
  padding: 40px 0;
  margin-top: 60px;
}

.hbb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.hbb-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hbb-icon {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hero-orange);
  font-size: 24px;
}

.hbb-content strong {
  display: block;
  font-size: 16px;
  color: var(--hero-text-dark);
}

.hbb-content span {
  font-size: 14px;
  color: var(--hero-text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 48px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-image-col {
    display: flex;
    justify-content: center;
  }
  .hero-main-img {
    max-width: 500px;
  }
  .hbb-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-features {
    flex-direction: column;
    gap: 16px;
  }
  .hbb-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
  }
  .floating-card {
    display: none;
  }
}

/* Header Overrides */
.next-btn--accent {
  background: var(--hero-orange) !important;
  color: #fff !important;
  padding: 10px 24px !important;
}

.next-btn--accent:hover {
  background: var(--hero-orange-hover) !important;
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.2) !important;
}

.site-brand__monogram {
  background: var(--hero-orange) !important;
}

.site-header-next {
  background: rgba(255, 255, 255, 0.95) !important;
  border-bottom: none !important;
}

.next-nav__menu > li > .menu-link:hover {
  color: var(--hero-orange) !important;
}
