/* ===== HERO HEADING (Molten Glow Override) ===== */
#about-hero .section-heading {
  display: block;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 6rem;
  font-weight: 900;
  text-transform: uppercase;
  padding: 0.5rem 2rem;
  border-radius: 12px;
  background: linear-gradient(90deg, #ff6a00, #ffcc00, #ff6a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 25px rgba(255,140,0,0.9),
               0 0 50px rgba(255,200,0,0.8);
  animation: heroGlowMolten 3s infinite alternate;
}
@keyframes heroGlowMolten {
  from { text-shadow: 0 0 20px rgba(255,140,0,0.7),
                     0 0 40px rgba(255,200,0,0.6); }
  to   { text-shadow: 0 0 30px rgba(255,140,0,0.9),
                     0 0 60px rgba(255,200,0,0.8); }
}

/* ===== HERO TAGLINE ===== */
#about-hero .hero-tagline {
  display: block;
  margin: 1rem auto 3rem auto;
  text-align: center;
  font-size: 2.5rem;
  color: #fff;
  text-shadow: 0 0 10px rgba(255,255,255,0.6),
               0 0 20px rgba(255,255,255,0.4);
  animation: heroGlowWhite 3s infinite alternate;
}
@keyframes heroGlowWhite {
  from { text-shadow: 0 0 8px rgba(255,255,255,0.4),
                     0 0 16px rgba(255,255,255,0.3); }
  to   { text-shadow: 0 0 12px rgba(255,255,255,0.6),
                     0 0 24px rgba(255,255,255,0.5); }
}

/* ===== BEER MUG IMAGE ===== */
.beer-mug {
  width: 300px;
  filter: drop-shadow(0 0 25px rgba(0,191,255,0.9));
  transition: transform 0.4s ease;
}
.beer-mug:hover { transform: rotate(-3deg) scale(1.05); }

/* ===== HERITAGE SECTION ===== */
.about-heritage p {
  max-width: 900px;
  margin: 1.5rem auto;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #fff;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}
.about-heritage p.flowing-visible { opacity: 1; transform: translateY(0); }
.about-heritage p::first-letter {
  font-size: 1.6rem;
  font-weight: bold;
  color: #00bfff;
  text-shadow: 0 0 10px #8a2be2;
}

/* ===== VALUES SECTION ===== */
.about-values { padding: 4rem 2rem; text-align: center; color: #fff; }
.about-values .section-heading { font-size: 2.5rem; margin-bottom: 2rem; animation: vibrantGlow 10s infinite; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2.5rem; max-width: 1000px; margin: 0 auto; }
.value-card {
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(0,191,255,0.4);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 0 20px rgba(138,43,226,0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: neonPulse 12s infinite;
}
.value-card:hover { transform: scale(1.05); box-shadow: 0 0 30px rgba(0,191,255,0.6); }
.value-card h3 { font-size: 1.4rem; margin-bottom: 1rem; animation: vibrantGlow 8s infinite; }
.value-card ul { list-style-type: none; padding: 0; color: #d1d1e9; font-size: 1rem; line-height: 1.6; }

/* ===== WHY CHOOSE US ===== */
.about-why { padding: 4rem 2rem; text-align: center; color: #fff; }
.about-why .section-heading { font-size: 2.5rem; margin-bottom: 2rem; animation: vibrantGlow 10s infinite; }
.why-list { max-width: 800px; margin: 0 auto; list-style: none; padding: 0; }
.why-list li {
  position: relative;
  padding-left: 2rem;
  margin: 1.2rem 0;
  font-size: 1.2rem;
  color: #d1d1e9;
  text-align: left;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}
.why-list li.why-visible { opacity: 1; transform: translateY(0); }
.why-list li::before {
  content: "⚡";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.4rem;
  color: #ff9800;
  text-shadow: 0 0 8px rgba(255,152,0,0.8);
  animation: neonPulse 12s infinite;
}

/* ===== CALL TO ACTION ===== */
.about-cta { background: linear-gradient(135deg, #0a0a0f, #12123a); padding: 4rem 2rem; text-align: center; color: #fff; }
.about-cta h2 { font-size: 2.5rem; margin-bottom: 1rem; animation: vibrantGlow 10s infinite; }
.about-cta p { font-size: 1.2rem; margin-bottom: 2rem; color: #d1d1e9; }
.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  background: radial-gradient(circle, #00bfff, #8a2be2);
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(0,191,255,0.8);
  transition: all 0.4s ease;
  animation: neonPulse 12s infinite;
}
.cta-button:hover { background: radial-gradient(circle, #8a2be2, #00bfff); box-shadow: 0 0 35px rgba(138,43,226,0.9); transform: scale(1.1); }

/* ===== ANIMATIONS ===== */
@keyframes vibrantGlow {
  0% { text-shadow: 0 0 10px #00bfff; }
  50% { text-shadow: 0 0 20px #8a2be2; }
  100% { text-shadow: 0 0 10px #00bfff; }
}
@keyframes neonPulse {
  0%   { box-shadow: 0 0 15px #00bfff; }
  25%  { box-shadow: 0 0 20px #8a2be2; }
  50%  { box-shadow: 0 0 25px #c0c0c0; }
  75%  { box-shadow: 0 0 20px #00ffff; }
  100% { box-shadow: 0 0 15px #00bfff; }
}
