.catering-hero{
  position:relative;
  height:50vh;
  background-image:url('/images/catering_single.webp');
  background-size:cover;
  background-position:center;
  display:flex;
  justify-content:center;
  align-items:center;
}
.catering-container {
  max-width: 900px;
  margin: 40px auto;
}

.catering-container h1 {
  margin-bottom: 20px;
  font-size: 32px;
  color: var(--primary-red-color);
}

.catering-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-top: 10px;
}

.cateringFormDeclaration {
    margin-top: 20px;
    /* padding-top: 50px; */

}

.catering-form input,
.catering-form select,
.catering-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  font-size: 14px;
  width: 100%;
}

.radio-group {
  display: flex;
  /* flex-direction: column; */
  gap: 5px;
}
.radio-group label {
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-right: 10px;
}

.radio-group input:checked + span {
  font-weight: bold;
}
.time-group {
  display: flex;
  gap: 10px;
}

.time-group select {
  flex: 1;
}

textarea {
  min-height: 120px;
  resize: none;
}
.error-text {
  color: var(--secondary-red-color);
}

/* =========================
MAIN WRAPPER
========================= */

.catering-order-wrapper {
    width: 95%;
    margin: 40px auto;
}

/* =========================
CARD STYLE
========================= */

.catering-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 18px 24px;
    margin-bottom: 24px;
    border-radius: 14px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.4);
}

/* =========================
IMAGE
========================= */

.catering-image img {
    width: 180px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
}

/* =========================
TEXT CONTENT
========================= */

.catering-content {
    flex: 1;
    text-align: center;
}

.catering-content h2 {
    font-size: 2rem;
    margin-bottom: 5px;
    color: #000;
}

.catering-content h3 {
    color: #8b1e1e;
    font-size: 1.4rem;
}

/* =========================
BUTTON
========================= */

.btn-green {
    display: inline-block;

    background: #15803d;
    color: white;

    padding: 14px 28px;

    border-radius: 10px;

    text-decoration: none;

    font-size: 1.1rem;
    font-weight: 600;

    transition: 0.3s ease;

    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.btn-green:hover {
    transform: translateY(-3px);
}

/* =========================
EZCATER
========================= */

.ezcater-card {
    justify-content: space-around;
}

.ezcater-info {
    text-align: center;
}

.ezcater-info img {
    width: 100%;
    margin: 10px 0;
}

.ezcater-info h4 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.ezcater-info h3 {
    color: #000;
    font-size: 1.3rem;
}

/* =========================
RESPONSIVE
========================= */

/* Responsive */
@media (max-width: 600px) {
  .time-group {
    flex-direction: column;
  }
  .catering-card {
        flex-direction: column;
        text-align: center;
    }

    .catering-image img {
        width: 100%;
        max-width: 300px;
        height: auto;
    }

    .btn-green {
        width: 100%;
        max-width: 300px;
    }

    .ezcater-card {
        gap: 25px;
    }
}