/* ===== HERO ===== */
.about-hero {
  background: url("../img/about-hero.jpg") center/cover no-repeat;
  text-align: center;
  padding: 120px 20px;
  position: relative;
  width: 100%;
}
.about-hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(40, 61, 82, 0.7);
}
.about-hero .container {
  position: relative;
  z-index: 2;
}
.about-hero h1 {
  font-size: 3rem;
  font-weight: 700;
   color: var(--accent) !important;
}
.about-hero p {
  font-size: 1.2rem;
  margin-top: 10px;
   color: #fff !important;
}

.about-section .btn-primary {
 background: var(--primary);
  color: #fff;
  padding: 12px 28px;
  border-radius: 4px;
  border: none;
  font-weight: 600;
  text-decoration: none;
}

.about-section .btn-primary:hover {
 background: var(--secondary);
  color: #fff;
}



/* ===== FULL WIDTH SECTIONS ===== */
.about-section,
.order-section,
.faq-section {
  width: 100%;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
}


/* ===== SECTION HEADINGS & TEXT ===== */
.about-section h2,
.order-section h2,
.faq-section h2 {
  color: #283d52;
  font-weight: 700;
  margin-bottom: 20px;
}
.about-section p,
.order-section p {
  color: #555;
  line-height: 1.7;
}

/* ===== RESPONSIBLE DRINKING (CENTERED) ===== */
.order-section {
  text-align: center;
}
.order-section h2 {
  text-align: center;
}
.order-section p {
  text-align: center;
  margin: 0 auto;
  max-width: 800px;
  color: #555;
  line-height: 1.7;
}

/* ===== FAQ ACCORDION ===== */
.accordion-button {
  background: #283d52;
  color: #fff;
  font-weight: 500;
}
.accordion-button:not(.collapsed) {
  background: #865f4e;
  color: #fff;
}
.accordion-body {
  background: #f9f9f9;
  color: #333;
  border-left: 3px solid #c4956d;
  padding: 15px 20px;
}

/* FAQ Chevron Icon Color Override */
.accordion-button::after {
  filter: invert(1); /* makes it white */
}
.accordion-button:not(.collapsed)::after {
  filter: invert(1); /* keep white when open */
}


/* ===== HOW TO ORDER ===== */
.how-to-order h2 {
  color: #283d52;
  font-weight: 700;
}

.step-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.step-icon {
  font-size: 2.2rem;
  background: var(--accent, #c4956d);
  color: #fff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-card h5 {
  font-weight: 600;
  color: #283d52;
}

.step-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .about-hero h1 {
    font-size: 2.2rem;
  }
  .about-section .row,
  .order-section .row {
    text-align: center;
  }
  .about-section img,
  .order-section img {
    max-width: 80%;
  }
}
