.banner-header {
  position: relative;
  background-image: url('../asset/New-Banner.png'); /* Latte art background */
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 2rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-overlay {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4); /* Overlay for contrast */
  z-index: 0;
}

.banner-container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  max-width: 1000px;
  width: 100%;
}

.logo-block {
  flex: 0 0 auto;
  text-align: right;
  padding-right: 2rem;
}

.logo-block img {
  height: 2in;
  width: auto;
  display: block;
  margin: 0 auto;
}

.logo-caption {
  font-size: 0.9rem;
  text-align: center;
  color: #eee;
  margin-top: 0.5rem;
}

.text-block {
  flex: 1;
  text-align: left;
}

.text-block h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
  line-height: 1.3;
}

.text-block .tagline {
  font-size: 1.25rem;
  font-style: italic;
  color: #ddd;
  margin-top: 0.5rem;
}

/* 🤝 Site Footer Styles
   Used in: All pages
   Purpose: End-of-page statement of values
---------------------------------------------------------- */

footer {
  background-color: var(--eggshell);
  color: var(--text-dark);
  padding: 1.5rem 1.25rem;
  text-align: center;
  font-size: 1rem;
  border-top: 2px solid rgba(0, 0, 0, 0.05);
}

/* 🔗 Social Links Inline Below Footer Text (Emoji-Based) */
footer .social-links {
  margin-top: 0.75rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

footer .social-links a {
  font-size: 1.5rem;
  transition: opacity 0.3s ease;
}

footer .social-links a:hover {
  opacity: 0.7;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

