/* Reset / base */
* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
  color: #222;
}

/* Logo */
.logo-header {
  position: fixed;
  top: 1rem;
  left: 0;
  z-index: 10;
}

/* Logo badge flush left, rounded right */
.logo-badge {
  padding: 0.85rem 1.25rem;
  min-height: 70px;
  background: #ffffff;
  border-radius: 0 16px 16px 0;
  border: 1px solid #e0e0e0;
  border-left: none;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 0.75rem;
  color: #666;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* If using an image */
.logo-badge img,
.logo-badge {
  max-height: clamp(40px, 10vw, 90px);
}

/* Mobile spacing */
@media (max-width: 480px) {
  .logo-header {
    top: 0.5rem;
  }

  .logo-badge {
    padding: 0.5rem 1rem;
    border-radius: 0 12px 12px 0;
  }
}


/* Jumbotron */
.jumbotron {
  min-height: 70vh;
  padding: 2rem;
  background-image: url("site-under-construction.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* Dark overlay */
.jumbotron::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.jumbotron-title {
  position: relative;
  font-family: 'Overpass', sans-serif;
  font-size: clamp(2rem, 5vw, 6rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-shadow: 0 6px 16px rgba(4, 47, 66, 0.842);

}

/* Contact section */
.contact-section {
  padding: 3rem 1rem;
  background-color: #f5f7fa;
}

.contact-section h2 {
  font-family: 'Overpass', sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-section p {
  font-size: 1.1rem;
}

.contact-section a {
  color: #0d6efd;
  text-decoration: none;
}

.contact-section a:hover {
  text-decoration: underline;
}

/* Mobile tweaks */
@media (max-width: 480px) {
  .logo-header {
    top: 0.5rem;
    left: 0.5rem;
  }
}

/* Footer */
.site-footer {
  padding: 1rem;
  background-color: #ffffff;
  border-top: 1px solid #e5e5e5;
}

.site-footer small {
  color: #777;
  font-size: 0.85rem;
}
