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

/* Base */
body {
  font-family: 'Outfit', sans-serif;
  color: #fff;
  overflow-x: hidden;
}

/* ================= BACKGROUNDS ================= */

/* Mobile first (default) */
body.home {
  background: url("ngp.png") no-repeat center center/cover;
  min-height: 100vh;
}

/* Desktop */
@media (min-width: 1024px) {
  body.home {
    background: url("ngp.png") no-repeat center center/cover;
  }
}

/* Contact page */
body.contact-page {
  background: url("pg.png") no-repeat center center/cover;
  min-height: 100vh;
}

/* Payment page */
body.payment-page {
  background: url("pg.png") no-repeat center center/cover;
  min-height: 100vh;
}

/* Overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

/* ================= LANDING ================= */

.hero {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 20px;
}

.bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bottom-text {
  font-size: 16px;
  color: #ddd;
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(0,0,0,0.8);
}

/* Button */
.btn {
  padding: 12px 28px;
  border: 1px solid #fff;
  text-decoration: none;
  color: #fff;
  transition: 0.3s ease;
  font-size: 14px;
  background: rgba(0,0,0,0.4);
}

.btn:hover {
  background: #fff;
  color: #000;
}

/* ================= CONTACT ================= */

.form-container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* Form */
form {
  width: 100%;
  max-width: 420px;
  padding: 25px;
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
}

form h2 {
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

/* Inputs */
input, textarea {
  margin: 8px 0;
  padding: 12px;
  border: none;
  outline: none;
  background: #1a1a1a;
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
}

textarea {
  resize: none;
  height: 110px;
}

/* Button */
button {
  margin-top: 10px;
  padding: 12px;
  background: #fff;
  color: #000;
  border: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 6px;
  transition: 0.3s ease;
}

button:hover {
  background: #ccc;
}

/* Status */
#status {
  margin-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #aaa;
}

/* Direct Contact */
.direct-contact {
  margin-top: 25px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 13px;
  color: #ccc;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.direct-contact a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.direct-contact a:hover {
  color: #888;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 480px) {
  .bottom-text {
    font-size: 14px;
  }

  .btn {
    padding: 10px 22px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  form {
    max-width: 90%;
  }
}

@media (min-width: 1200px) {
  .bottom-text {
    font-size: 18px;
  }

  .btn {
    font-size: 15px;
  }
}

/* ================= ANIMATIONS ================= */

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.bottom-content, .form-container form {
  animation: fadeIn 1s ease-out forwards;
}