:root {
  --bg-color: #0f0f0f;
  --text-color: #f0f0f0;
  --accent-color: #ff9f1c; /* Cheeseburger orange/gold */
  --secondary-color: #2ec4b6; /* Fresh vibe */
  --font-main: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Playfair Display", serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-main);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

header {
  padding: 2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent-color);
  text-transform: uppercase;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
  position: relative;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  width: 100%;
}

.hero-content {
  z-index: 2;
}

h1 {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #fff, #bbb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

p.tagline {
  font-size: 1.25rem;
  color: #888;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.cta-button {
  display: inline-block;
  background-color: var(--accent-color);
  color: #000;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 159, 28, 0.2);
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.hero-image:hover img {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

footer {
  text-align: center;
  padding: 2rem;
  color: #444;
  font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
    padding-top: 6rem;
  }

  h1 {
    font-size: 3.5rem;
  }

  p.tagline {
    margin: 0 auto 2rem auto;
  }

  .hero-image img {
    transform: none;
  }
}
