:root {
  --bg: #f4f4e8;
  --text: #0a0a0a;
  --blue: #b7ccff;
  --orange: #ffb347;
  --card: #ffffff;
}

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

body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  letter-spacing: -0.01em;
}

/* Top bar */
.top-bar {
  display: flex;
  justify-content: space-between;
  padding: 24px 40px;
  font-weight: 500;
}

.logo {
  font-size: 20px;
  font-weight: 700;
}

.location {
  font-size: 14px;
  border: 1px solid #000;
  padding: 6px 12px;
  border-radius: 999px;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  padding: 60px 40px;
  align-items: center;
}

.hero-text h1 {
  font-size: 64px;
  line-height: 1.05;
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.highlight {
  padding: 6px 14px;
  border-radius: 6px;
  display: inline-block;
  font-weight: 600;
}

.highlight.blue {
  background: var(--blue);
}

.highlight.orange {
  background: var(--orange);
}

.hero-text p {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
  font-weight: 400;
}

/* CTA */
.cta {
  padding: 14px 28px;
  border-radius: 12px;
  border: 2px solid #000;
  background: var(--card);
  font-weight: 600;
  cursor: pointer;
}

 /*Image card */
.hero-image {
  /*background: #5f7f8c;*/
  border-radius: 28px;
  padding: 0px;
  display: flex;
  justify-content: center;
}

.logo img {
  height: 32px;       /* adjust as needed */
  width: auto;
  display: block;
}

.hero-image img {
  width: 100%;
  max-width: 360px;
  border-radius: 20px;
  object-fit: cover;
}

/* Bottom nav */
.nav {
  display: flex;
  gap: 24px;
  justify-content: center;
  padding: 40px;
}

.nav-btn {
  padding: 12px 20px;
  border-radius: 12px;
  border: 1.5px solid #000;
  background: #fff;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  color: #000;

  box-shadow:
    0 2px 0 #000,
    0 6px 14px rgba(0, 0, 0, 0.12);

  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 3px 0 #000,
    0 10px 20px rgba(0, 0, 0, 0.16);
}

.nav-btn:active {
  transform: translateY(0);
  box-shadow:
    0 1px 0 #000,
    0 4px 8px rgba(0, 0, 0, 0.12);
}
/* Responsive */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 48px;
  }

  .hero-text p {
    margin: 0 auto 32px;
  }
}
