@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@900&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: #fff;
  color: #111;
  line-height: 1.6;
}

a {
  color: #FF00FF;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #E600E6;
  text-decoration: underline;
}

.homepage {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.video-container {
  position: relative;
  width: 51vw;
  max-width: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio (9/16 = 0.5625) */
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.content-section {
  padding: 3rem 2rem;
  background: #fff;
  position: relative;
  z-index: 1;
}

h1 {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  margin-bottom: 1rem;
}

h2 {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 400;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #333;
}

.content {
  font-size: 1.2rem;
  color: #444;
}

/* Contact Form Styling */
form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: #FF00FF;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

button[type="submit"] {
  background: #FF00FF;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

button[type="submit"]:hover {
  background: #E600E6;
  transform: translateY(-2px);
}

/* Footer Styling */
.contact-footer {
  background: #f8f9fa;
  padding: 4rem 2rem;
  border-top: 1px solid #e9ecef;
}

.footer-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.footer-content h2 {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 400;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #333;
}

.footer-content form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: flex;
  justify-content: center;
}

.footer-content input[type="text"],
.footer-content input[type="email"],
.footer-content textarea {
  width: 100%;
  max-width: 400px;
  padding: 1rem 1.5rem;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.footer-content input[type="text"]:focus,
.footer-content input[type="email"]:focus,
.footer-content textarea:focus {
  border-color: #FF00FF;
  box-shadow: 0 0 0 3px rgba(255, 0, 255, 0.1);
}

.footer-content button[type="submit"] {
  background: #FF00FF;
  color: white;
  border: none;
  padding: 1rem 3rem;
  border-radius: 12px;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-content button[type="submit"]:hover {
  background: #E600E6;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 0, 255, 0.3);
}

.form-message {
  margin-top: 2rem;
  font-size: 0.95rem;
  color: #666;
  font-style: italic;
  text-align: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.form-message.hidden {
  opacity: 0;
  transform: translateY(-10px);
  display: none;
}

.form-message.visible {
  opacity: 1;
  transform: translateY(0);
  display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .homepage {
    min-height: 100vh;
  }
  
  .video-container {
    max-height: 50vh;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .content {
    font-size: 1.1rem;
  }
  
  .content-section {
    padding: 2rem 1.5rem;
  }
  
  .contact-footer {
    padding: 3rem 1.5rem;
  }
  
  .footer-content h2 {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
  }
  
  .footer-content form {
    gap: 1.2rem;
  }
}

@media (max-width: 480px) {
  .video-container {
    max-height: 40vh;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .content {
    font-size: 1rem;
  }
  
  .content-section {
    padding: 1.5rem 1rem;
  }
  
  .contact-footer {
    padding: 2.5rem 1rem;
  }
  
  .footer-content h2 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
  
  .footer-content input[type="text"],
  .footer-content input[type="email"],
  .footer-content textarea {
    padding: 0.9rem 1.2rem;
    font-size: 0.95rem;
  }
  
  .footer-content button[type="submit"] {
    padding: 0.9rem 2.5rem;
    font-size: 1rem;
  }
}
