:root {
  --red: #ff1d25;
  --dark-black: #1a1a1a;
  --orange: #f7931e;
  --light-gray: #f2f2f2;
  --bright-orange: #fb0b3b;
  --orange-red: #ff3000;
  --gray: #b3b3b3;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  max-width: 100vw;
  height: 100%;
  font-family: "Oxygen", sans-serif;
  font-weight: 700; /* Bold */
  font-style: normal;
  background-color: hsla(0, 100%, 50%, 1);
  background-image: radial-gradient(
      at 40% 20%,
      hsla(357, 100%, 55%, 1) 0px,
      transparent 50%
    ),
    radial-gradient(at 80% 0%, hsla(32, 93%, 54%, 1) 0px, transparent 50%),
    radial-gradient(at 0% 50%, hsla(348, 96%, 51%, 1) 0px, transparent 50%),
    radial-gradient(at 80% 50%, hsla(340, 0%, 70%, 1) 0px, transparent 50%),
    radial-gradient(at 0% 100%, hsla(22, 0%, 94%, 1) 0px, transparent 50%),
    radial-gradient(at 80% 100%, hsla(32, 93%, 54%, 1) 0px, transparent 50%);
  background-attachment: fixed;
  color: var(--light-gray);
}

.hero {
  min-height: 100vh;
  background-image: url("assets/halftoned_1715806761.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  flex-direction: row;
  text-align: center;
}

.right img {
  width: 50%; /* You can adjust the size of your logo as needed */
  z-index: 1000;
}

.left {
  background-color: var(--dark-black);
  height: 100%;
  min-height: 100vh;
  color: var(--light-gray);
  flex: 0 0 45%; /* 40% width */
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  padding: 80px 48px;
  gap: 32px;
}

.left h1 {
  font-size: 3rem;
  text-transform: uppercase;
  text-align: start;
}

.left h2 {
  text-align: start;
  font-weight: 100;
}

.right {
  flex: 0 0 55%; /* 60% width */
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-button {
  background: var(--dark-black);
  color: var(--light-gray);
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s;
  border: 8px solid var(--light-gray);
  text-decoration: none;
}

.cta-button:hover {
  background: var(--dark-black);
}

.chip {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
  color: var(--orange-red);
}

.chip img {
  background-color: var(--orange-red);
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chip h3 {
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.highlight {
  color: var(--orange);
}

.highlight2 {
  color: var(--red);
}

@media (max-width: 1250px) {
  .left {
    flex: 0 0 60%;
  }

  .left h1 {
    font-size: 2rem;
  }

  .right {
    flex: 0 0 40%; /* 60% width */
  }
}

@media (max-width: 700px) {
  .hero {
    flex-direction: column-reverse;
    background-size: contain;
  }

  .left {
    flex: auto;
    padding: 32px;
    height: min-content;
    min-height: none;
  }

  .right {
    flex: auto;
    height: 100vh;
  }
}
