/* Reset */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}

/* Background image */
body {
  background: url("Sunrise_Over_Beach_v02_reduced.jpg") no-repeat center top fixed;
  background-size: cover;
  font-family: "Arial", sans-serif;
  overflow: hidden;
}

/* Overlay for readability */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.15), rgba(0,0,0,0.4));
  z-index: 1;
}

/* Logo placement */
.content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
  padding-top: 10vh; /* positions logo near top-center */
}

.logo {
  width: 320px;
  max-width: 80%;
  height: auto;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.3));
}
