/* Catering Page Styles - Work in Progress Design */

/* Catering Hero Section */
.catering-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 6rem 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.catering-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.catering-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Work in Progress Badge */
.work-in-progress-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 0.8rem 1.5rem;
  margin-bottom: 2rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulse 2s infinite;
}

.badge-icon {
  font-size: 1.2rem;
  animation: rotate 3s linear infinite;
}

.badge-text {
  color: white;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
}

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

.catering-hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: #f9eed9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  font-weight: 500;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #f0f0f0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  max-width: 600px;
  margin: 0 auto;
}

/* Coming Soon Section */
.coming-soon-section {
  padding: 5rem 0;
  background: var(--light-background);
}

.coming-soon-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.coming-soon-icon {
  margin-bottom: 2rem;
}

.coming-soon-icon .icon {
  font-size: 4rem;
  display: inline-block;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.coming-soon-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-weight: 700;
}

.coming-soon-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--light-text);
  margin-bottom: 3rem;
}

/* Features Preview */
.features-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--box-shadow-sm);
  transition: var(--transition);
  border-top: 4px solid var(--accent-color);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-md);
  border-top-color: var(--primary-color);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--primary-color);
  font-weight: 600;
}

.feature-item p {
  color: var(--light-text);
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background: white;
}

.contact-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contact-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-weight: 700;
}

.contact-content > p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--light-text);
  margin-bottom: 3rem;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2.5rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  cursor: pointer;
  font-family: var(--button-font);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-height: 60px;
  min-width: 200px;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-buttons .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.cta-buttons .btn:hover::before {
  left: 100%;
}

.cta-email {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.cta-email:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(44, 85, 48, 0.4);
}

.cta-call {
  background: var(--accent-color);
  color: white;
  border-color: var(--accent-color);
}

.cta-call:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(139, 168, 136, 0.4);
}

.btn-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.btn-text {
  font-weight: 600;
}

/* Contact Info */
.contact-info {
  background: var(--light-background);
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid var(--accent-color);
  max-width: 500px;
  margin: 0 auto;
}

.contact-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(44, 85, 48, 0.1);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-label {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1rem;
}

.contact-value {
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 500;
}

/* Expectations Section */
.expectations-section {
  padding: 5rem 0;
  background: var(--light-background);
}

.expectations-content {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.expectations-content h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--primary-color);
  font-weight: 700;
}

.expectations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.expectation-item {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: var(--box-shadow-sm);
  transition: var(--transition);
  border-left: 4px solid var(--accent-color);
  text-align: center;
}

.expectation-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-md);
  border-left-color: var(--primary-color);
}

.expectation-icon {
  margin-bottom: 1.5rem;
}

.expectation-icon span {
  font-size: 3rem;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.expectation-item h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-weight: 600;
}

.expectation-item p {
  color: var(--light-text);
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .catering-hero {
    padding: 4rem 0;
  }
  
  .catering-hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .work-in-progress-badge {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }
  
  .coming-soon-content h2,
  .contact-content h2,
  .expectations-content h2 {
    font-size: 2rem;
  }
  
  .features-preview,
  .expectations-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
    min-width: auto;
    padding: 1.5rem 2rem;
    font-size: 1rem;
  }
  
  .contact-info {
    padding: 1.5rem;
  }
  
  .contact-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    text-align: left;
  }
  
  .feature-item,
  .expectation-item {
    padding: 2rem 1.5rem;
  }
  
  .coming-soon-section,
  .contact-section,
  .expectations-section {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  .catering-hero {
    padding: 3rem 0;
  }
  
  .catering-hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .work-in-progress-badge {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
  
  .coming-soon-content h2,
  .contact-content h2,
  .expectations-content h2 {
    font-size: 1.8rem;
  }
  
  .coming-soon-icon .icon {
    font-size: 3rem;
  }
  
  .expectation-icon span {
    font-size: 2.5rem;
  }
  
  .cta-buttons .btn {
    padding: 1.2rem 1.5rem;
    font-size: 0.95rem;
    min-height: 55px;
  }
  
  .btn-icon {
    font-size: 1.1rem;
  }
  
  .feature-item,
  .expectation-item {
    padding: 1.5rem 1rem;
  }
  
  .feature-item h3,
  .expectation-item h3 {
    font-size: 1.2rem;
  }
  
  .contact-info {
    padding: 1rem;
  }
  
  .contact-label,
  .contact-value {
    font-size: 0.9rem;
  }
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
  .work-in-progress-badge,
  .badge-icon,
  .coming-soon-icon .icon,
  .expectation-icon span {
    animation: none;
  }
  
  .cta-buttons .btn:hover {
    transform: none;
  }
  
  .feature-item:hover,
  .expectation-item:hover {
    transform: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .work-in-progress-badge {
    background: rgba(0, 0, 0, 0.8);
    border-color: white;
  }
  
  .cta-buttons .btn {
    border-width: 4px;
  }
  
  .contact-info {
    border-width: 3px;
  }
}

/* Focus states for accessibility */
.cta-buttons .btn:focus {
  outline: 3px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
}

.contact-item:focus-within {
  background: rgba(44, 85, 48, 0.05);
  border-radius: 8px;
  padding: 0.8rem;
  margin: 0 -0.8rem;
}
