/* === Holy Style Sheet === */
body {
    margin: 0;
    padding: 0;
    font-family: 'Georgia', serif;
    background-image: url('/static/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; /* ✨ this stops repeating */
    background-attachment: fixed; /* optional: makes it feel like it's pinned */
    color: #2e2e2e;
}

.container {
    max-width: 600px;
    margin: 12vh auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    text-align: center;
}

h1 {
    font-size: 2.2em;
    color: #222;
    margin-bottom: 15px;
}

p {
    font-size: 1.1em;
    color: #444;
}

.description {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 20px;
}

button {
    background-color: #ffd700;
    color: #000;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #ffcc00;
}

.holy-icon {
    width: 50px;
    position: absolute;
    z-index: 5;
    opacity: 0.9;
}

.top-left {
    top: 20px;
    left: 20px;
}

.bottom-right {
    bottom: 20px;
    right: 20px;
}

.cross-center {
    position: relative;
    margin-top: 25px;
    width: 300px;
    height: auto;
}

.big-cross {
    display: block;
    margin: 35px auto 60px auto;
    width: 300px;
    opacity: 0.95;
    filter:
        drop-shadow(0 0 25px gold)
        drop-shadow(2px 4px 6px rgba(0,0,0,0.4));
}

/* Centered footer with QR and copyright */
.footer-wrapper {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    z-index: 10;
    font-size: 0.9em;
    font-style: italic;
    color: white;
    text-shadow: 1px 1px 2px black;
    text-align: center;
    pointer-events: none;
}

.qr-code {
    width: 75px;
    height: auto;
    pointer-events: auto;
}

.copyright {
    margin: 0;
}

.sub-message {
    font-size: 1em;
    color: #1d5c00;
    margin-top: 10px;
    font-weight: 500;
    text-shadow: 0px 0px 3px rgba(255,255,255,0.7);
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  body {
    padding: 10px;
  }

  .container {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
  }

  form {
    flex-direction: column;
    gap: 10px;
  }

  input[type="text"],
  input[type="email"],
  button[type="submit"] {
    width: 100%;
    font-size: 16px;
  }

  h1 {
    font-size: 22px;
    text-align: center;
  }

  p.description,
  p.sub-message {
    font-size: 16px;
    text-align: center;
  }

  .big-cross {
    width: 100px;
    height: auto;
  }

  .holy-icon {
    width: 30px;
    height: auto;
  }

  .footer-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-align: center;
    font-size: 14px;
    bottom: 20px;
  }

  .qr-code {
    width: 60px;
  }

  .copyright {
    font-size: 0.85em;
  }
}

.menu-toggle {
  font-size: 30px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 2000;
  color: #333;
  background: white;
  padding: 6px 12px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.side-menu {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1999;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.98);
  overflow-x: hidden;
  transition: 0.3s ease;
  padding-top: 60px;
  box-shadow: 3px 0 15px rgba(0,0,0,0.2);
}

.side-menu a {
  display: block;
  padding: 16px 24px;
  font-size: 18px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}

.side-menu a:hover {
  background-color: #f2f2f2;
}

textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  width: 100%;
  font-size: 1em;
  margin-top: 10px;
  resize: vertical;
}
