/* EZOrder Page Styles - Enhanced */
/* Global Styles */
body {
  font-family: 'Lora', serif;
  background-color: #FFF5E1;
  color: #333;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
}

/* Hero Section */
.ezorder-hero-section {
  background: url('images/ezorder-hero.jpg') center/cover no-repeat;
  padding: 120px 20px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.ezorder-hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}
.ezorder-hero-section .container {
  position: relative;
  z-index: 1;
}
.ezorder-hero-section h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease-in-out;
}
.ezorder-hero-section p {
  font-size: 1.5rem;
  animation: fadeInUp 1.2s ease-in-out;
}

/* About & Order Form Sections */
.ezorder-about-section, .order-form-section {
  padding: 80px 20px;
  text-align: center;
  background: #FF6F00;
  color: #fff;
  border-radius: 15px;
  margin: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.order-form-section form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.order-form-section input,
.order-form-section select,
.order-form-section textarea {
  padding: 12px;
  font-size: 1rem;
  border: 2px solid #4CAF50;
  border-radius: 8px;
  outline: none;
  transition: all 0.3s;
}

.order-form-section input:focus,
.order-form-section select:focus,
.order-form-section textarea:focus {
  border-color: #FF6F00;
}

.order-form-section button {
  background: #8B0000;
  color: #fff;
  padding: 15px;
  font-size: 1.2rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.order-form-section button:hover {
  background: #4CAF50;
  transform: scale(1.05);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
