/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* MAIN STRUCTURE: Fixes footer cutoff */
.page-wrapper {
  min-height: 100dvh; /* fixes footer cutoff on mobile */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: env(safe-area-inset-bottom);
}

@supports not (height: 100dvh) {
  .page-wrapper {
    min-height: 100vh;
  }
}

/* Background */
body {
  background-image: url("../images/NewBethelOrganicsBackgroundCompressed.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: Arial, Helvetica, sans-serif;
  color: #ffffff;
}

/* Coming Soon Banner */
.coming-soon-banner {
  width: 100%;
  padding: 2rem 1.5rem;
}

.banner-inner {
  max-width: 500px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(3px);
  border-radius: 999px;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 1px;
}

/* LOGO */
.logo-container {
  display: flex;
  justify-content: center;
  flex-grow: 1;           /* makes it take all available middle space */
  align-items: center;    /* vertically centers the logo */
  padding: 1rem 0;        /* optional, keeps breathing room */
}

.logo-container img {
  width: 70%;
  max-width: 450px;
  height: auto;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.6));
}

/* Footer */
footer {
  width: 100%;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(3px);
}

footer a {
  color: #2E6300;
  text-decoration: none;
  font-weight: 600;
}

footer a:hover {
  text-decoration: underline;
}

/* Screen-reader only text */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 600px) {

  .logo-container img {
    width: 65%;
    max-width: 280px;
  }

  .banner-inner {
    max-width: 90%;
  }

  footer {
    font-size: 0.85rem;
    padding: 0.8rem;
  }
}
