/* ==========================================
   DORA CHICKEN - PREMIUM DESIGN POLISH
   Elevated Spacing, Motion, and Typography
   ========================================== */

/* Enhanced base spacing and typography */
:root {
  --spacing-xs: 8px;
  --spacing-sm: 12px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 48px;
  --spacing-3xl: 64px;
  --spacing-4xl: 80px;
  --spacing-5xl: 96px;
}

/* Hero section premium styling */
.hero {
  padding: 120px 20px 80px;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  z-index: 10;
  max-width: 900px;
  text-align: center;
}

.hero-title {
  font-size: clamp(36px, 6vw, 80px);
  line-height: 1.15;
  margin: var(--spacing-xl) 0;
  font-weight: 800;
  letter-spacing: -1.5px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-subtitle {
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.8;
  margin: var(--spacing-lg) 0;
  opacity: 0.95;
  letter-spacing: 0.3px;
  font-weight: 500;
}

.hero-description {
  font-size: clamp(15px, 1.6vw, 18px);
  margin: var(--spacing-lg) 0 var(--spacing-xl) 0;
  opacity: 0.9;
  font-weight: 300;
  line-height: 1.7;
}

/* Premium button design */
.btn {
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(79, 5, 6, 0.25);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: 0.8px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 6px;
}

.btn-primary {
  background: var(--yellow);
  color: var(--burgundy);
}

.btn-primary:hover {
  box-shadow: 0 12px 32px rgba(255, 222, 89, 0.4);
  transform: translateY(-4px);
  background: var(--yellow-light);
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-primary:hover::after {
  left: 100%;
}

/* Enhanced card hover effects */
.product-card,
.overview-card,
.value-card,
.location-card {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

.product-card:hover,
.overview-card:hover,
.value-card:hover,
.location-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  transform: translateY(-10px);
}

/* Premium section spacing */
.product-overview,
.products-showcase,
.products-catalog,
.product-details,
.location-section,
.contact-section,
.our-story,
.mission-vision,
.our-values {
  padding: var(--spacing-5xl) var(--spacing-lg);
}

.section-title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  margin-bottom: var(--spacing-lg);
  letter-spacing: -1px;
  line-height: 1.1;
}

.section-description {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.8;
  margin: var(--spacing-md) 0 var(--spacing-xl) 0;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Enhanced hero images with motion */
.chicken-image {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.chicken-image:hover {
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  transform: translateY(-8px);
}

/* Premium accent line */
.accent-line {
  width: 4px;
  height: 50px;
  background: linear-gradient(180deg, var(--burgundy), var(--yellow));
  margin-bottom: var(--spacing-lg);
  border-radius: 4px;
  opacity: 0.95;
  box-shadow: 0 4px 12px rgba(79, 5, 6, 0.2);
}

/* Enhanced form styling */
.form-group {
  margin-bottom: var(--spacing-lg);
}

.form-group label {
  font-weight: 700;
  display: block;
  margin-bottom: var(--spacing-sm);
  color: var(--burgundy);
  letter-spacing: 0.5px;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e8e8e8;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-size: 1rem;
  background: white;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--burgundy);
  box-shadow: 0 0 0 4px rgba(79, 5, 6, 0.12);
  transform: translateY(-2px);
}

/* Premium map container */
.map-container {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
  margin: var(--spacing-3xl) 0;
  transition: all 0.4s ease;
}

.map-container:hover {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.map {
  width: 100%;
  height: 550px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.map-pin {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.25));
}

.map-pin:hover {
  transform: scale(1.3);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.35));
}

.pin-tooltip {
  background: var(--burgundy);
  color: white;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-15px);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.map-pin:hover .pin-tooltip {
  opacity: 1;
  transform: translateY(-28px);
}

/* Premium animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 6px 20px rgba(255, 222, 89, 0.3);
  }
  50% {
    box-shadow: 0 10px 32px rgba(255, 222, 89, 0.5);
  }
}

/* Premium contact styling */
.contact-channel {
  margin: var(--spacing-lg) 0;
  padding: var(--spacing-lg);
  background: rgba(79, 5, 6, 0.08);
  border-left: 5px solid var(--burgundy);
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-channel:hover {
  background: rgba(79, 5, 6, 0.12);
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(79, 5, 6, 0.12);
}

.contact-channel h3 {
  color: var(--burgundy);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: var(--spacing-sm);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.contact-detail {
  margin: var(--spacing-sm) 0;
  color: #555;
  font-size: 0.95rem;
}

.contact-detail a {
  color: var(--burgundy);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.contact-detail a:hover {
  color: var(--yellow);
  text-decoration: underline;
}

/* Success message premium styling */
.success-message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  background: white;
  padding: var(--spacing-3xl);
  border-radius: 16px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-align: center;
  max-width: 420px;
  border-top: 5px solid var(--yellow);
}

.success-message.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.success-message i {
  font-size: 3.5rem;
  color: #4caf50;
  margin-bottom: var(--spacing-lg);
}

.success-message h3 {
  color: var(--burgundy);
  margin: var(--spacing-lg) 0;
  font-size: 1.8rem;
  font-weight: 800;
}

.success-message p {
  color: #666;
  margin: var(--spacing-md) 0 var(--spacing-lg) 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 968px) {
  .hero-title {
    font-size: clamp(28px, 5vw, 52px);
  }

  .section-title {
    font-size: clamp(28px, 3.5vw, 42px);
  }

  .product-overview,
  .products-showcase,
  .products-catalog,
  .product-details,
  .location-section,
  .contact-section,
  .our-story,
  .mission-vision,
  .our-values {
    padding: var(--spacing-4xl) var(--spacing-lg);
  }

  .map {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(24px, 4.5vw, 36px);
  }

  .section-title {
    font-size: clamp(24px, 3vw, 32px);
  }

  .product-overview,
  .products-showcase,
  .products-catalog,
  .product-details,
  .location-section,
  .contact-section {
    padding: var(--spacing-3xl) var(--spacing-lg);
  }

  .btn {
    padding: 14px 32px;
    font-size: 0.9rem;
  }

  .map {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 12px 24px;
    font-size: 0.85rem;
  }

  .product-overview,
  .products-showcase,
  .products-catalog,
  .product-details,
  .location-section,
  .contact-section {
    padding: var(--spacing-xxl) var(--spacing-md);
  }

  .map {
    height: 300px;
  }
}

/* Premium scroll to top button */
.scroll-top {
  box-shadow: 0 6px 20px rgba(79, 5, 6, 0.3);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scroll-top:hover {
  box-shadow: 0 12px 32px rgba(79, 5, 6, 0.45);
  transform: translateY(-4px);
}

.scroll-top.show {
  animation: slideInUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Progress bar premium styling */
.progress-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--burgundy) 0%, var(--yellow) 100%);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(79, 5, 6, 0.4);
}
