/* Global Styles */
body {
  margin: 10px 10px 15px 10px;
  font-family: 'Graphik', sans-serif; /* Apply Graphik font */
  color: #333;
  background-color: #EDEEEE;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Logo Styling */
header .logo {
  width: 18px;
  height: 8.26px;
  position: relative;
  left: 16px;
}

/* Main Heading Styles */
main h1 {
  font-family: 'Graphik', sans-serif;
  font-size: 48px;
  font-weight: 48px;
  line-height: 1;
  margin: 20px 0;
}

.highlight {
  background: linear-gradient(to right, #000000, #4c086e, #8e37b9, #2002aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: bold;
  white-space: nowrap;
}

/* Subheading Styling */
.subheading {
  font-size: 18px;
  margin: 20px 0;
  color: #555;
}

/* Options Section Styling */
.options {
  margin: 30px 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 10px;
}

.options button {
  display: flex;
  justify-content: flex-start;
  max-width: 150px;
  width: 100%;
  padding: 10px 15px;
  font-size: 14px;
  text-align: left;
  color: #646464;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #EDEEEE;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.options button:hover {
  background-color: #fff;
}

/* Search Bar Styling */
.search-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  padding: 5px 10px;
}

.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  padding: 10px;
  border-radius: 25px 0 0 25px;
  color: #555;
}

.search-bar input::placeholder {
  color: #aaa;
  font-size: 14px;
}

.search-btn {
  background-color: #6f45d5;
  color: #fff;
  border: none;
  outline: none;
  padding: 10px 15px;
  border-radius: 12%;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.search-btn:hover {
  background-color: #5430a8;
}

/* Footer Styling */
footer {
  margin-top: 40px;
  font-size: 14px;
  color: #777;
}

/* Brand Section */
.brands {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background-color: #EDEEEE;
  border-radius: 10px;
  box-shadow: none;
  max-width: 1200px;
  width: 90%;
}

.brand {
  flex: 1 1 100px;
  max-width: 100px;
  text-align: center;
}

.brand img {
  justify-content: center;
  width: 80%;
  max-height: 100px;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.brand img:hover {
  filter: grayscale(0%);
}

/* Footer Text */
.footer-text {
  text-align: center;
  font-size: 14px;
  margin: 10px 20px;
  color: #646464;
}

/* Responsive Design */
@media (max-width: 1024px) {
  main h1 {
    font-size: 64px;
  }

  .options button {
    flex: 1 1 45%;
  }

  .search-bar {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  main h1 {
    font-size: 38px;
  }

  .options button {
    flex: 1 1 90%;
  }

  .search-bar {
    max-width: 350px;
  }

  .footer-text {
    font-size: 12px;
    margin: 10px 15px;
  }

  .highlight {
    font-size: 48px;
  }
}

@media (max-width: 480px) {
  main h1 {
    font-size: 12px;
  }

  .options button {
    font-size: 12px;
    padding: 8px;
  }

  .search-bar input {
    font-size: 14px;
    padding: 8px;
  }

  .search-btn {
    font-size: 14px;
    padding: 8px;
  }

  .brands {
    flex-direction: row;
  }

  .brand img {
    max-height: 100px;
  }

  .footer-text {
    font-size: 10px;
    margin: 5px 10px;
  }

  .highlight {
    font-size: 32px;
  }
}

@media (max-width: 360px) {
  .highlight {
    font-size: 24px;
  }
}
