/* assets/style.css */

/* Global font & wallpaper background */
body {
  font-family: 'Titillium Web', sans-serif;
  background: url('assets/wallpaper.jpg') no-repeat center center fixed;
  background-size: cover;
  margin: 0;
  padding: 0;
}

/* Hero section full-width */
.vantac-form-section {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
}

.vantac-form-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

/* Overlay container */
.vantac-form-overlay {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Stats bar */
.vantac-stats {
  text-align: center;
  font-size: 1.2rem;
  margin: 30px auto;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

/* Title */
.vantac-form-title {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 1.2em;
  color: #0073aa;
}

/* Form wrapper */
.vantac-form-wrapper {
  font-family: 'Titillium Web', sans-serif;
}

/* Single field */
.vantac-field {
  margin-bottom: 1.5em;
  transition: transform 0.3s ease;
}

.vantac-field:hover {
  transform: translateY(-2px);
}

/* Labels */
.vantac-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5em;
  color: #333;
}

/* Inputs */
.vantac-field input {
  width: 100%;
  padding: 0.75em;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.vantac-field input:focus {
  border-color: #0073aa;
  box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.2);
  outline: none;
}

/* File input styling */
.vantac-field input[type="file"] {
  padding: 0.3em;
  background: #fff;
}

/* Submit button */
.vantac-form-wrapper .button {
  display: inline-block;
  background: #0073aa;
  color: #fff;
  padding: 0.8em 2em;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s ease, transform 0.2s ease;
  margin-top: 0.5em;
}

.vantac-form-wrapper .button:hover {
  background: #005f8d;
  transform: translateY(-2px);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .vantac-form-overlay {
    padding: 30px 20px;
  }
  .vantac-form-title {
    font-size: 2.2rem;
  }
  .vantac-stats {
    font-size: 1rem;
  }
}
