:root {
  --true-blue: #312783;
  --spirit-green: #58db33;
  --magenta-colour: #fc59f8;
  --sports-red: #e52f2f;
  --black-colour: #000000;
  --soft-grey: #f3f3f3;
  --neutral-bg: #F3F3F3;
  --white-colour: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Noto Serif', serif;
  overflow-x: hidden;
  max-width: 100%
}

/* Ensure placeholder text also uses Noto Serif */
::placeholder {
  font-family: 'Noto Serif', serif;
  color: #aaa; /* Optional: Adjust color for better readability */
}

/* Example style for labels and form fields in .email-form */
.email-form label {
  font-family: 'Noto Serif', serif;
  font-weight: bold;
}

.email-form input,
.email-form textarea,
.email-form button {
  font-family: 'Noto Serif', serif;
}

.hero-banner {
  background-image: url('/assets/img/hero-banner.jpg');
  background-color: var(--neutral-bg);
  background-size: cover;
  background-position: center; /* Center the background */
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-colour);
  min-height: 400px; /* Base min-height for larger screens */
  width: 100vw;
  overflow: hidden;
}

/* Adjustments for Tablets */
@media (min-width : 1025px) {
  .hero-banner {
    min-height: 800px; /* Smaller height for tablets */
  }
}

/* Adjustments for Tablets */
@media (max-width: 1024px) {
  .hero-banner {
    min-height: 300px; /* Smaller height for tablets */
  }
}

/* Adjustments for Mobile (Large Phones) */
@media (max-width: 768px) {
  .hero-banner {
    min-height: 250px;
  }
}

/* Adjustments for Small Mobile Devices */
@media (max-width: 480px) {
  .hero-banner {
    min-height: 200px;
  }
}

.hero-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0); /* Transparent overlay */
  z-index: 1;
}

.hero-content {
  z-index: 2;
  position: relative;
  text-align: center;
}

/* Hero Content Elements */
.hero-logo {
  filter: brightness(1.2);
  width: 100%;
  max-width: 250px;
  height: auto;
}

@media (max-width: 768px) {
  .hero-logo {
    max-width: 180px;
  }
}

@media (max-width: 480px) {
  .hero-logo {
    max-width: 150px;
  }
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white-colour);
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 18px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 300px;
}

/* Responsive styling for mobile screens */
@media (max-width: 768px) {
  .cta-button {
    padding: 12px 24px;
    font-size: 16px;
    margin-top: 120px;
  }
}

@media (max-width: 480px) {
  .cta-button {
    padding: 10px 20px;
    font-size: 14px;
    margin-top: 120px;
  }
}

/* Hover effect for the button */
.cta-button:hover {
  transform: translateY(-3px); /* Lift effect */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Slightly deeper shadow */
}

/* Active (click) effect */
.cta-button:active {
  transform: translateY(0); /* Reset transform */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Reduced shadow */
}

/* General Body and Container Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: var(--neutral-bg);
  color: var(--black-color);
}

.container {
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  max-width: 100%;
}

/* Header and Nav */
header {
  background-color: var(--black-colour);
  color: var(--white-colour);
  padding: 20px 0;
}

nav {
  background-color: var(--neutral-bg);
  color: var(--black-colour);
  padding: 10px;
}

/* Typography */
h1, h2, h3 {
  font-family: 'Arial', sans-serif;
  font-weight: bold;
  color: var(--black-colour);
}

p {
  color: var(--soft-grey);
  font-size: 1rem;
}

/* Accent Styles */
.stats-number {
  color: var(--magenta-colour);
  font-size: 2rem;
  font-weight: bold;
}

.stats-text {
  font-weight: bold;
  color: var(--magenta-colour);
}

/* Section Styles */
section {
  padding: 60px 0;
}

/* Features Section */
.features {
  padding: 60px 20px;
  background-color: var(--white-colour);
  border-radius: 0px;
}

.features-content {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.features-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.features-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
}

.features-text {
  flex: 1;
  text-align: left;
}

.features-text h2 {
  font-size: 32px;
  color: var(--true-blue);
  margin-bottom: 20px;
}

.features-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  margin-bottom: 15px;
  padding: 10px;
}

.features-list li strong {
  font-size: 18px;
  color: var(--true-blue);
}

.features-list li p {
  font-size: 16px;
  color: var(--black-colour);
  line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .features-content {
    flex-direction: column;
    align-items: center;
  }

  .features-text h2 {
    font-size: 28px;
    text-align: center;
  }

  .features-list li {
    padding: 15px;
  }

  .features-image img {
    max-width: 100%;
  }
}

/* Promo Video Section */
.promo-video {
  background-color: var(--neutral-bg);
  padding: 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}

.promo-video .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 800px; /* Constrain to a reasonable max width */
  padding: 0 10px; /* Add slight horizontal padding */
  margin: 0 auto; /* Center the container */
  margin-bottom: 40px;
}

.promo-video .container h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--true-blue);
  text-align: center;
}

/* Video Wrapper for Responsive Embed */
.video-wrapper {
  position: relative;
  padding-top: 56.25%; /* Maintains 16:9 aspect ratio */
  overflow: hidden;
  width: 100%;
  max-width: 100%; /* Constrain to container width */
  background: #000;
  border-radius: 10px; /* Optional: Rounded corners */
}

/* Responsive iframe */
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Adjustments for Smaller Screens */
@media (max-width: 768px) {
  .promo-video .container {
    padding: 0 15px; /* Add extra padding on smaller screens */
  }

  .video-wrapper {
    margin-right: 10px; /* Add right margin if needed for spacing */
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .promo-video .container {
    padding: 0 10px; /* Narrower padding on very small screens */
  }

  .video-wrapper {
    margin-right: 5px; /* Adjust as needed */
    max-width: 85%;
  }
}
/* Carousel Section */
.carousel {
  background-color: var(--neutral-bg);
  padding: 20px;
  border-radius: 20px;
}

.carousel img {
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.carousel-item h3 {
  font-size: 24px;
  margin-top: 15px;
  font-weight: bold;
  color: var(--black-colour);
}

.carousel-item p {
  font-size: 20px;
  margin-top: 10px;
  color: var(--soft-grey);
}

.slick-slide img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--box-shadow--card);
  transition: transform 0.3s ease;
}

.slick-slide img:hover {
  transform: scale(1.05);
}

.slick-dots li button:before,
.slick-prev:before,
.slick-next:before {
  color: var(--black-colour);
}

.slick-prev, .slick-next {
  font-size: 0;
}

.slick-prev:before, .slick-next:before {
  font-size: 24px;
}

/* UX Tester Section */
.ux-tester {
  background-color: var(--white-colour);
  padding: 20px;
  border-radius: 0px;
}

.ux-tester h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: var(--true-blue);
}

.ux-tester p {
  font-size: 18px;
  color: var(--black-colour);
  text-align: left;
}

/* Email Form */
.email-form {
  text-align: left;
}

.email-form input {
  padding: 15px;
  font-size: 16px;
  width: 300px;
  border-radius: 0px;
  margin-bottom: 20px;
  border: 1px solid var(--true-blue);
  margin-right: 10px;
}

.email-form button {
  padding: 15px 30px;
  font-size: 16px;
  border-radius: 20px;
  border: none;
  background-color: var(--white-colour);
  color: var(--black-colour);
  cursor: pointer;
}

/* Footer */
footer {
  padding: 20px 0;
  background-color: var(--black-colour);
  color: var(--white-colour);
}

footer p {
  margin: 0;
}

/* What is */
/* Explainer Section */
.explainer {
  padding: 20px 20px;
  background-color: var(--white-colour);
}

.explainer h2 {
  font-size: 32px;
  color: var(--true-blue);
  text-align: center;
  margin-bottom: 30px;
  text-align: left;
}

.explainer-content {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.explainer-text {
  flex: 1;
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
}

.explainer-text p {
  margin-bottom: 15px;
  color: var(--black-colour);
}

.explainer-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.explainer-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .explainer-content {
    flex-direction: column;
  }

  .explainer h2 {
    font-size: 28px;
  }

  .explainer-text, .explainer-image {
    flex: none;
    width: 100%;
  }

  .explainer-image img {
    max-width: 100%;
  }
}

/* Questions Section */
.questions {
  background-color: var(--neutral-bg);
  padding: 40px 20px;
  border-radius: 12px;
}

.questions h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--true-blue);
  text-align: center;
}

.questions ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.questions li {
  margin-bottom: 20px;
  padding: 20px;
  background-color: var(--white-colour);
  border: 1px solid var(--soft-grey);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  text-align: left;
}

.questions li:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.questions li strong {
  font-size: 18px;
  color: var(--true-blue);
  display: block;
  margin-bottom: 10px;
}

.questions li p {
  font-size: 16px;
  color: var(--black-colour);
  line-height: 1.5;
}

.questions li strong:before {
  content: "Q: ";
  font-weight: bold;
}

.questions li p:before {
  content: "A: ";
  font-weight: bold;
}

@media (max-width: 768px) {
  .questions h2 {
    font-size: 28px;
  }

  .questions li {
    padding: 15px;
  }

  .questions li strong {
    font-size: 16px;
  }

  .questions li p {
    font-size: 14px;
  }
}

* Centering the UX Tester Section */
.ux-tester {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh; /* Takes full viewport height to center vertically */
  padding: 40px 20px;
  background-color: var(--neutral-bg);
}

.ux-tester .container {
  max-width: 600px;
  background-color: var(--white-colour);
  border-radius: 0px;
  padding: 30px 20px; /* Adding padding to create space within the container */
  text-align: center;
}

.ux-tester h2 {
  font-size: 28px;
  color: var(--true-blue);
  margin-bottom: 15px;
}

.ux-tester p {
  font-size: 16px;
  color: var(--black-colour);
  margin-bottom: 20px;
}

.email-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left; /* Aligns labels and input fields to the left */
  margin-top: 50px;
  padding: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.email-form div {
  display: flex;
  flex-direction: column;
}

.email-form label {
  font-weight: bold;
  margin-bottom: 5px;
}

.email-form input,
.email-form textarea {
  padding: 12px;
  box-sizing: border-box; /* Includes padding and border in width calculation */
  font-size: 1rem;
  border-radius: 0px;
  width: 100%;
}

.email-form textarea {
  resize: vertical; /* Allows vertical resizing */
}

/* Style for the email form submit button */
.email-form button {
  padding: 15px 30px;
  font-size: 1rem;
  background-color: var(--true-blue); /* Primary button color */
  color: var(--white-colour);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Hover effect for the button */
.email-form button:hover {
  transform: translateY(-3px); /* Lift effect */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Slightly deeper shadow */
}

/* Active (click) effect */
.email-form button:active {
  transform: translateY(0); /* Reset transform */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Reduced shadow */
}