/* ===== HERO HEADING ===== */
#about-hero h1.section-heading {
  font-size: 4.5rem;
  font-weight: 800;
  text-align: center;
  margin: 0 auto 2.5rem auto;
  color: #ffffff;  /* pure white text */
  text-shadow: 0 0 10px #00bfff,
               0 0 20px #8a2be2,
               0 0 30px #ff6a00,
               0 0 40px #ffcc00,
               0 0 50px #00fff7,
               0 0 60px #ff1493;
  animation: heroHeadingGlow 6s infinite alternate;
}

@keyframes heroHeadingGlow {
  from { text-shadow: 0 0 8px #00bfff,
                     0 0 16px #8a2be2,
                     0 0 24px #ff6a00; }
  to   { text-shadow: 0 0 12px #ffcc00,
                     0 0 24px #00fff7,
                     0 0 36px #ff1493; }
}

/* ===== HERO TAGLINE ===== */
#about-hero .hero-tagline {
  display: block;
  margin: 1rem auto 3rem auto;
  text-align: center;
  font-size: 2.5rem;
  color: #ffffff;         /* plain white */
  text-shadow: none;      /* no glow */
  animation: none;        /* no animation */
}

.beer-mug-container {
  display: flex;
  justify-content: center;
  margin: 2rem auto;
}

.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 HEADING ===== */
.about-heritage h2.section-heading {
  font-size: 4rem;
  font-weight: 800;
  text-align: center;
  margin: 0 auto 2rem auto;
  color: #ffffff;  /* pure white text */
  text-shadow: 0 0 12px rgba(138,43,226,0.4),   /* subtle violet glow */
               0 0 24px rgba(138,43,226,0.6),
               0 0 36px rgba(138,43,226,0.8);   /* stronger violet edge */
  animation: heritageVioletGlow 6s infinite alternate;
}

@keyframes heritageVioletGlow {
  from { text-shadow: 0 0 10px rgba(138,43,226,0.3),
                     0 0 20px rgba(138,43,226,0.5); }
  to   { text-shadow: 0 0 16px rgba(138,43,226,0.5),
                     0 0 32px rgba(138,43,226,0.7); }
}

/* ===== HERITAGE PARAGRAPHS ===== */
.about-heritage p {
  max-width: 900px;
  margin: 1.5rem auto;
  font-size: 1.5rem;
  line-height: 2;
  color: #ffffff;  /* pure white text */
  text-align: center;
  text-shadow: 0 0 6px rgba(255,255,255,0.3),
               0 0 12px rgba(255,255,255,0.5); /* subtle white glow */
  animation: heritageParagraphGlow 4s infinite alternate;
}

@keyframes heritageParagraphGlow {
  from { text-shadow: 0 0 5px rgba(255,255,255,0.2),
                     0 0 10px rgba(255,255,255,0.4); }
  to   { text-shadow: 0 0 8px rgba(255,255,255,0.4),
                     0 0 16px rgba(255,255,255,0.6); }
}

/* First letter styling */
.about-heritage p::first-letter {
  font-size: 2rem;
  font-weight: bold;
  color: #8a2be2;              /* violet */
  text-shadow: 0 0 12px #8a2be2,
               0 0 24px rgba(138,43,226,0.9);
  animation: firstLetterPulse 3s infinite alternate;
}

@keyframes firstLetterPulse {
  from { text-shadow: 0 0 8px #8a2be2, 0 0 16px #8a2be2; }
  to   { text-shadow: 0 0 14px #8a2be2, 0 0 28px #c0c0c0; }
}

/* ===== VALUES SECTION ===== */
.about-values {
  padding: 4rem 2rem;
  text-align: center;
  color: #ffffff;
}

/* ===== VALUES HEADING ===== */
.about-values .section-heading {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: #ffffff;  /* pure white text */
  text-shadow: 0 0 12px rgba(138,43,226,0.4),   /* subtle violet glow */
               0 0 24px rgba(138,43,226,0.6),
               0 0 36px rgba(138,43,226,0.8);   /* stronger violet edge */
  animation: valuesHeadingGlow 6s infinite alternate;
}

@keyframes valuesHeadingGlow {
  from { text-shadow: 0 0 10px rgba(138,43,226,0.3),
                     0 0 20px rgba(138,43,226,0.5); }
  to   { text-shadow: 0 0 16px rgba(138,43,226,0.5),
                     0 0 32px rgba(138,43,226,0.7); }
}

/* Grid Layout */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

/* Value Cards */
.value-card {
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(138,43,226,0.4);   /* violet border */
  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: cardPulse 12s infinite;
}

.value-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(138,43,226,0.6); /* violet glow */
}

/* Card Titles */
.value-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #ffffff, #c0c0c0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 15px #8a2be2,
               0 0 30px #8a2be2;
  animation: cardTitleGlow 8s infinite alternate;
}

@keyframes cardTitleGlow {
  from { text-shadow: 0 0 12px #8a2be2, 0 0 24px #8a2be2; }
  to   { text-shadow: 0 0 20px #8a2be2, 0 0 40px #c0c0c0; }
}

/* Card Lists */
.value-card ul {
  list-style-type: none;
  padding: 0;
  color: #ffffff;   /* plain white text */
  font-size: 1rem;
  line-height: 1.6;
  text-shadow: none;
  animation: none;
}

/* Card Pulse Animation */
@keyframes cardPulse {
  0%   { box-shadow: 0 0 15px #8a2be2; }
  50%  { box-shadow: 0 0 25px #c0c0c0; }
  100% { box-shadow: 0 0 15px #8a2be2; }
}

/* ===== WHY CHOOSE US ===== */
.about-why {
  padding: 4rem 2rem;
  text-align: center;
  color: #ffffff;
}

/* ===== WHY CHOOSE US HEADING ===== */
.about-why .section-heading {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: #ffffff;  /* pure white text */
  text-shadow: 0 0 12px rgba(138,43,226,0.4),   /* subtle violet glow */
               0 0 24px rgba(138,43,226,0.6),
               0 0 36px rgba(138,43,226,0.8);   /* stronger violet edge */
  animation: whyHeadingGlow 6s infinite alternate;
}

@keyframes whyHeadingGlow {
  from { text-shadow: 0 0 10px rgba(138,43,226,0.3),
                     0 0 20px rgba(138,43,226,0.5); }
  to   { text-shadow: 0 0 16px rgba(138,43,226,0.5),
                     0 0 32px rgba(138,43,226,0.7); }
}

/* List Layout */
.why-list {
  max-width: 800px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

/* List Items */
.why-list li {
  position: relative;
  padding-left: 2rem;
  margin: 1.2rem 0;
  font-size: 1.2rem;
  color: #ffffff;       /* plain white text */
  text-align: left;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
  text-shadow: none;    /* no glow */
  animation: none;      /* no animation */
}

.why-list li.why-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Lightning Icon */
.why-list li::before {
  content: "⚡";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.4rem;
  color: #ff9800;   /* orange lightning */
  text-shadow: 0 0 8px rgba(255,152,0,0.8);
}

/* ===== CALL TO ACTION ===== */
.about-cta {
  background: linear-gradient(135deg, #0a0a0f, #12123a);
  padding: 4rem 2rem;
  text-align: center;
  color: #ffffff;
}

/* ===== CALL TO ACTION HEADING ===== */
.about-cta h2 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #ffffff;  /* pure white text */
  text-shadow: 0 0 12px rgba(138,43,226,0.4),   /* subtle violet glow */
               0 0 24px rgba(138,43,226,0.6),
               0 0 36px rgba(138,43,226,0.8);   /* stronger violet edge */
  animation: ctaHeadingGlow 6s infinite alternate;
}

@keyframes ctaHeadingGlow {
  from { text-shadow: 0 0 10px rgba(138,43,226,0.3),
                     0 0 20px rgba(138,43,226,0.5); }
  to   { text-shadow: 0 0 16px rgba(138,43,226,0.5),
                     0 0 32px rgba(138,43,226,0.7); }
}

/* CTA Paragraph */
.about-cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #ffffff;         /* plain white */
  text-shadow: none;
  animation: none;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  background: radial-gradient(circle, #8a2be2, #c0c0c0); /* violet → silver */
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 0 20px #8a2be2;
  transition: all 0.4s ease;
  animation: ctaPulse 12s infinite;
}

.cta-button:hover {
  background: radial-gradient(circle, #c0c0c0, #8a2be2); /* silver → violet */
  box-shadow: 0 0 35px #8a2be2;
  transform: scale(1.1);
}

/* CTA Button Pulse Animation */
@keyframes ctaPulse {
  0%   { box-shadow: 0 0 15px #8a2be2; }
  50%  { box-shadow: 0 0 25px #c0c0c0; }
  100% { box-shadow: 0 0 15px #8a2be2; }
}

/* Heritage paragraph fade-in */
.about-heritage p {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-heritage p.scroll-visible {
  opacity: 1;
  transform: translateY(0);
}
