/* Color Scheme inspired by new palette */
:root {
  --primary-color: #5046e5; /* Green from the image */
  --secondary-color: #008080; /* Teal */
  --background-color: rgb(2, 2, 13); /* Dark Blue */
  --text-color: #fff; /* White */
  --input-bg-color: #ffffff; /* White */
  --button-bg-color: var(--primary-color);
  --button-hover-bg-color: #342c97; /* Darker Blue */
  --footer-bg-color: #141137; /* Soft Blue */
  --footer-text-color: #fff; /* White */
}

body {
  font-family: "Inter", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  margin: 0;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  background-image: radial-gradient(
    circle at 50% 0%,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 44%
  );
}

h1 {
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--text-color);
  text-align: center;
}

h2 {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: white;
  font-weight: 800;
}
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

.logo {
  text-align: center;
  margin-bottom: 2rem;
}

.logo img {
  width: 200px;
  height: auto;
}

.content {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.contact-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--primary-color);
}

.search-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 48px;
  position: relative;
}

#search-input {
  width: 100%;
  max-width: 400px;
  padding: 15px;
  font-size: 18px;
  border: 1px solid var(--primary-color);
  border-radius: 30px 0 0 30px;
  outline: none;
  background-color: var(--input-bg-color);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  caret-color: var(--primary-color);
}

#search-input:focus,
.search-box:hover #search-input {
  border-color: var(--secondary-color);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#search-button {
  padding: 15px 25px;
  font-size: 18px;
  border-radius: 0 30px 30px 0;
  background-color: var(--button-bg-color);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  background-image: radial-gradient(
    76% 151% at 52% -52%,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  outline: none;
  border: none;
}

#search-button:hover,
.search-box:hover #search-button {
  background-color: var(--button-hover-bg-color);
}

footer {
  width: 100%;
  background-color: var(--footer-bg-color);
  color: var(--footer-text-color);
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links li {
  margin: 0 15px;
}

.footer-links a {
  color: var(--footer-text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary-color);
}

@media (max-width: 600px) {
  .container {
    padding: 1rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .content {
    padding: 1rem;
  }

  .search-box {
    flex-direction: column;
  }

  #search-input,
  #search-button {
    width: 100%;
    max-width: none;
    border-radius: 30px;
    margin: 5px 0;
  }
}
