/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fdfdfd;
  color: #222;
  line-height: 1.6;
}

a {
  color: #ff5722;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img.logo {
  max-width: 340px;
  width: 100%;
  display: block;
  margin: 0 auto 20px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.7));
  transition: transform 0.3s ease;
}


/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1f1f1f, #444) no-repeat center center;
  color: white;
  padding: 60px 20px;
  text-align: center;
  position: relative;
}

.hero {
  background: url('img/hero-bg.jpg') center center / cover no-repeat;
  color: white;
  padding: 60px 20px;
  text-align: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* Adjusted overlay for better contrast */
  z-index: 1;
}

.hero > * {
  position: relative;
  z-index: 2;
}

.btn.cta {
  background-color: #ff5722;
  color: white;
  padding: 14px 34px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1rem;
  display: inline-block;
  margin-top: 20px;
  transition: background 0.3s ease;
}

.btn.cta:hover {
  background-color: #e64a19;
}

/* Content Area */
.content {
  background-color: #ff5f1f; /* Fluorescent orange */
  padding: 60px 20px;
}


.form-section h2 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 2rem;
  color: #222;
}

.form-instructions {
  text-align: center;
  margin-bottom: 30px;
  color: #555;
  font-size: 1rem;
}

/* Form Container */
.form-container {
  background: #f4f4f4;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  max-width: 700px;
  margin: 0 auto;
}


.tryout-form .form-block {
  margin-bottom: 20px;
}

.tryout-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
}

.tryout-form input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.btn.submit-btn {
  width: 100%;
  background-color: #d42f2f;
  color: white;
  padding: 12px;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn.submit-btn:hover {
  background-color: #a62828;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  background: #efefef;
  color: #333;
}
.tagline {
  color: white;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 3rem;          /* Much bigger */
  margin-top: 30px;
  letter-spacing: 3px;
  text-align: center;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}
.tryout-date {
  color: white;
  font-weight: 900;
  font-size: 2.6rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 20px 0 10px;
  text-align: center;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
}
form {
  background: #f4f4f4;
  padding: 30px;
  border-radius: 12px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  margin-bottom: 20px;
  box-sizing: border-box;
}

form label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
  color: #333;
}

form button,
form input[type="submit"] {
  width: 100%;
  background-color: #d42f2f;
  color: white;
  padding: 14px;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover,
form input[type="submit"]:hover {
  background-color: #a62828;
}

.grecaptcha-badge {
  margin-top: 20px;
}


