/* Drumstick page fresh premium design */

body {
  background-color: #ffffff;
  color: #1e293b;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}

/* Hero Section with Image Slideshow */
.hero-slideshow {
  position: relative;
  height: 100vh;
  /* Fallback */
  height: 100svh;
  /* Mobile modern */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #ffffff;
  color: #1e293b;
  margin-top: -76px;
  padding-top: 76px;
}

.hero-slideshow .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 2s ease, transform 10s ease;
  z-index: 0;
  transform: scale(1.1) translateY(20px);
  will-change: transform, opacity;
}

.hero-slideshow .slide.active {
  opacity: 1;
  z-index: 1;
  transform: scale(1.02) translateY(0);
}

.hero-slideshow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.4) 40%,
      rgba(0, 0, 0, 0.6) 80%,
      rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}

.hero-slideshow .hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  padding: 3rem;
  animation: fadeInUp 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-slideshow .hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-slideshow .hero-subtitle {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 3rem;
  letter-spacing: 0.1em;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  color: #ffffff;
  opacity: 0;
  animation: fadeIn 1s ease-out 0.5s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.hero-contact-btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: #ffffff;
  color: #000000;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeIn 1s ease-out 1s forwards;
}

.hero-contact-btn:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.hero-contact-btn:active {
  transform: translateY(1px);
}

/* About Drumstick Section */
.about-drumstick {
  max-width: 900px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}

.about-drumstick h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #81c784;
}

.about-drumstick p {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #475569;
}

/* Export Highlights Section */
.export-highlights {
  max-width: 900px;
  margin: 0 auto 4rem;
  padding: 3rem;
  background: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  color: #1e293b;
}

.export-highlights h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  margin-bottom: 2rem;
  text-align: center;
  background: linear-gradient(45deg, #81c784, #4caf50);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.highlights-list {
  list-style: none;
  padding-left: 0;
  font-size: 1.2rem;
  line-height: 1.8;
  display: grid;
  gap: 1.5rem;
}

.highlights-list li {
  margin-bottom: 0;
  padding: 1rem 1.5rem;
  position: relative;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  transition: transform 0.3s ease, background 0.3s ease;
  display: flex;
  align-items: center;
}

.highlights-list li:hover {
  transform: translateY(-2px);
  background: #f1f5f9;
}

.highlights-list li::before {
  content: "✦";
  position: relative;
  margin-right: 1rem;
  color: #81c784;
  font-size: 1.2em;
}

/* Export Locations Section */
.export-locations {
  max-width: 900px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}

.export-locations h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  margin-bottom: 3rem;
  text-align: center;
  background: linear-gradient(45deg, #81c784, #4caf50);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.location-card {
  background: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  color: #1e293b;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 250px;
}

.location-card:hover {
  transform: translateY(-5px);
  background: #f8fafc;
}

.location-card:nth-child(4) {
  grid-column: 1 / -1;
  max-width: 500px;
  margin: 2rem auto 0;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
}

@media (max-width: 992px) {
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }

  .location-card {
    min-height: 200px;
  }

  .location-card:nth-child(4) {
    max-width: 100%;
  }
}

.location-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: #81c784;
  transition: transform 0.3s ease;
}

.location-card:hover .location-icon {
  transform: scale(1.1);
}

.location-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #ffffff, #e0e0e0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.location-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #475569;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-slideshow {
    height: 60vh;
  }

  .hero-slideshow .hero-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }

  .hero-slideshow .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-slideshow .hero-content {
    padding: 1.5rem;
  }

  .hero-contact-btn {
    padding: 0.8rem 1.6rem;
    font-size: 0.9rem;
  }

  .about-drumstick,
  .export-highlights,
  .export-locations {
    padding: 0 1rem;
  }

  .locations-grid {
    flex-direction: column;
    gap: 1.5rem;
  }

  .location-card {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-slideshow .hero-title {
    font-size: 2rem;
  }

  .hero-slideshow .hero-subtitle {
    font-size: 0.9rem;
  }
}