/* Hero Section */
.order-hero {
  position: relative;
  background: url('../img/order-hero.jpg') center/cover no-repeat;
  height: 50vh;
}
.order-hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(40, 61, 82, 0.7); /* primary with opacity */
}
.order-hero .content {
  z-index: 2;
}
.order-hero h1 {
  color: var(--accent);
}
.order-hero p {
  color: #fff;
}

/* Form Section */
.order-form-section {
  background-color: #f9f9f9;
}
.card {
  border-radius: 12px;
}
.card-body h2 {
  color: var(--primary);
}

/* Labels */
.form-label {
  color: var(--primary);
}

/* Inputs, Textareas, Select */
.form-control, .form-select {
  border: 2px solid var(--accent);
  border-radius: 6px;
  transition: all 0.3s ease;
}
.form-control:focus, .form-select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 6px rgba(134, 95, 78, 0.4);
}

/* Buttons */
.btn-accent {
  background-color: var(--accent);
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
}
.btn-accent:hover {
  background-color: var(--secondary);
  color: #fff;
}

/* Payment Info */
.payment-info {
  background: #fff;
  border: 1px dashed var(--accent);
  border-radius: 8px;
  padding: 15px;
}
.payment-info h5 {
  color: var(--secondary);
}
.payment-info .highlight {
  color: var(--accent);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .order-hero {
    height: 40vh;
  }
  .order-hero h1 {
    font-size: 2rem;
  }
  .order-hero p {
    font-size: 1rem;
  }
}
