/* Global styles */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Playfair Display', serif;
  color: #fff;
}

/* Background image */
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('./images/polaroids-background.jpg') no-repeat center center fixed;
  background-size: cover;
  filter: brightness(0.7);
  z-index: 0;
}

/* Overlay for subtle darkening */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3));
  z-index: 1;
}

/* Centered content */
.content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 0 1rem;
}

h1 {
  font-size: 4rem;
  margin: 0;
  letter-spacing: 2px;
}

p {
  font-size: 1.5rem;
  margin-top: 1rem;
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 600px) {
  h1 { font-size: 2.5rem; }
  p { font-size: 1.2rem; }
}
