/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #111;
  color: #f5f5f5;
  line-height: 1.6;
}

header {
  text-align: center;
  padding: 50px 20px;
}

.logo img {
  width: 160px;
  height: auto;
  margin-bottom: 20px;
}

header h1 {
  font-size: 2.5rem;
  color: #FFD700;
  margin-bottom: 10px;
}

header .tagline {
  font-size: 1.2rem;
  color: #ccc;
}

.form-section {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 20px;
  background: #222;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.form-section h2 {
  font-size: 2rem;
  color: #FFD700;
  margin-bottom: 20px;
}

.form-section p {
  margin-bottom: 30px;
  color: #bbb;
  font-size: 1rem;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  color: #ddd;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: none;
  border-radius: 4px;
  background: #333;
  color: #fff;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border: 1px solid #FFD700;
}

.form-group textarea {
  resize: vertical;
}

.required {
  color: #eabe31; /* golden hue for required asterisks */
}

button {
  display: inline-block;
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  background: #FFD700;
  color: #111;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 10px;
}

button:hover {
  background: #e5c100;
}

footer {
  text-align: center;
  padding: 20px;
  color: #777;
  font-size: 0.9rem;
}

/* Video container keeps the embedded YouTube video in a vertical (9:16) aspect ratio and responsive */
.video-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 30px;
  /* For a vertical video (9:16 aspect ratio) we set padding-top based on 16/9 to maintain ratio:
     height will be 177.78% of the width. */
  padding-top: 177.78%;
  overflow: hidden;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Style for file input: visually consistent with other inputs */
input[type="file"] {
  color: #ddd;
  background: #333;
  border: none;
  border-radius: 4px;
  padding: 10px;
  font-size: 0.95rem;
}
input[type="file"]::-webkit-file-upload-button {
  background: #FFD700;
  color: #111;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  margin-right: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}
input[type="file"]::-webkit-file-upload-button:hover {
  background: #e5c100;
}

@media (max-width: 600px) {
  header h1 {
    font-size: 2rem;
  }
  .form-section {
    padding: 30px 15px;
  }
}