/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  color: #f8f9fa;
  background: #800000;
  overflow-y: scroll;
  scroll-behavior: smooth;
}

/* Foundation Page Layout */
#foundation-page {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}
.container h1 {
  text-align: center;
  font-size: 2.5rem;
  color: #ff9f1c;
  margin-bottom: 0.5rem;
  animation: fadeInDown 1s;
}
.intro-quote {
  text-align: center;
  font-style: italic;
  font-size: 1.2rem;
  color: #fbc500;
  margin-bottom: 2rem;
  animation: fadeInDown 1.2s;
}

/* Section Box Styles */
.section-box {
  background: #3a3d49;
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  border-left: 8px solid #ff9f1c;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease;
}
.section-box h2 {
  font-size: 1.8rem;
  color: #ff9f1c;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.section-box p {
  font-size: 1rem;
  line-height: 1.6;
  color: #e1e3e8;
}
.highlighted-text {
  display: inline-block;
  background: #ff5714;
  color: #ffffff;
  padding: 0.3rem 0.7rem;
  border-radius: 8px;
  margin: 0.5rem 0;
  font-weight: bold;
}

/* Animation Keyframes */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Gallery */
.gallery {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding-top: 1.5rem;
}
.gallery img {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  border: 3px solid #ff9f1c;
  transition: transform 0.3s;
}
.gallery img:hover {
  transform: scale(1.1);
  border-color: #fbc500;
}
