body {
  margin: 0;
  background-color: #de8d53;
}

.page {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
}

/* Header */
header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  align-items: center;
}

.header-title {
  font-family: "Clarkson", Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  color: #ffffff;
  margin: 0;

}

.header-title h1 {
  margin: 0;
}

.header-links {
  display: flex;
  gap: 0;
  height: 100%;
}

.header-links a {
  font-family: "Clarkson", Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 2rem;
  min-width: 2.5em;
  white-space: nowrap;
}

.header-links a:first-child {
  background-color: #0c79d6;
  color: #ffffff;
}

.header-links a:last-child {
  background-color: #ffffff;
  color: #de8d53;
}

@media (min-width: 768px) {
  header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-left: 10rem;
    padding-right: 10rem;
  }
}

/* Main Content */
.content {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
}

.signup-form {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.signup-form h2 {
  font-family: "Clarkson", Helvetica, sans-serif;
  color: #de8d53;
  margin-top: 0;
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  font-family: "Clarkson", Helvetica, sans-serif;
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: bold;
}

.form-group input {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  font-family: "Clarkson", Helvetica, sans-serif;
  box-sizing: border-box;
}

.form-group input:focus {
  outline: none;
  border-color: #0c79d6;
}

.submit-btn {
  width: 100%;
  padding: 0.75rem;
  background-color: #0c79d6;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-family: "Clarkson", Helvetica, sans-serif;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #0a65b5;
}

.coming-soon-container {
  text-align: center;
  animation: fadeIn 1.5s ease-in;
  overflow: hidden;
  width: 100%;
}

.coming-soon-text {
  font-family: "Clarkson", Helvetica, sans-serif;
  font-size: 4rem;
  margin-bottom: 2rem;
  color: #ffffff;
  white-space: nowrap;
  display: inline-block;
  animation: scrollText 10s linear infinite;
}

.animated-image img {
  max-width: 400px;
  width: 100%;
  height: auto;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scrollText {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media (min-width: 768px) {
  .content {
    padding: 4rem 1rem;
  }
}

/* Footer */
footer {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 1rem;
}

.footer-social {
  font-family: "Clarkson", Helvetica, sans-serif;
  font-size: 1rem;
  color: #ffffff;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-info {
  font-family: "Clarkson", Helvetica, sans-serif;
  font-size: 1rem;
  color: #ffffff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.footer-etc {
  font-family: "Clarkson", Helvetica, sans-serif;
  font-size: 1rem;
  color: #ffffff;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}

.footer-icons {
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  
}

.footer-icons.facebook {
  background-image: url('icons/facebook_blue.svg');
}

.footer-icons.twitter {
  background-image: url('icons/twitter_blue.svg');
}

.footer-icons.youtube {
  background-image: url('icons/youtube_blue.svg');
}

.footer-icons.court {
  background-image: url('icons/court_blue.svg');
  width: 48px;
  height: 48px;
}

.footer-icons.ball {
  background-image: url('icons/ball_blue.svg');
}

@media (min-width: 768px) {
  footer {
    flex-direction: row;
    justify-content: space-between;
  }
  
  footer > * {
    flex: 1;
  }
}