/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

body {
  height: 100vh;
  margin: 0;
  background: linear-gradient(225deg, #a54343 0%, #e73535 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 20px;
  color: #fff;
}

.container {
  display: flex;
  max-width: 1200px;
  width: 100%;
  height: 90vh;
  position: relative;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}

.burger-texts {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 10;
}

h1 {
  font-size: clamp(3rem, 7vw, 8rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.03em;
}

p {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  line-height: 1.4;
  max-width: 520px;
}

button {
  align-self: start;
  padding: clamp(0.75rem, 1.5vw, 1.5rem) clamp(1.5rem, 3vw, 3rem);
  font-size: clamp(1.25rem, 2.5vw, 2.5rem);
  font-weight: 700;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 50px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: -0.02em;
  user-select: none;
  max-width: max-content;
}

button:hover {
  background: #fff;
  color: #e73535;
  border-color: #e73535;
}

.burger-texts img {
  width: 140px;
  margin-top: 1rem;
}

.hamburger-image {
  position: absolute;
  bottom: -35px;
  right: 0;
  max-width: 45vw;
  width: clamp(250px, 40vw, 850px);
  height: auto;
  object-fit: contain;
  opacity: 0.9;
  z-index: 5;
  user-select: none;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

@media (max-width: 900px) {
  .container {
    height: 100vh;
    padding: 1.5rem;
  }

  .burger-texts {
    width: 100%;
    text-align: left;
    gap: 1rem;
  }

  h1,
  p {
    max-width: 100%;
  }

  button {
    align-self: flex-start;
  }

  .burger-texts img {
    margin: 1rem 0 0 0;
  }

  .hamburger-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: clamp(250px, 80vw, 850px);
    opacity: 1;
    transform: none;
  }
}
