body {
  background: #f4ede7;
  color: #222;
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar {
  width: 100vw;
  background: none;
  padding: 40px 0 0 0;
  display: flex;
  justify-content: center;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 60px;
  padding: 0;
  margin: 0;
}

.nav-list li a {
  text-decoration: none;
  color: #222;
  font-weight: bold;
  font-size: 1.25rem;
  letter-spacing: 1px;
}

.nav-list li a.active {
  color: #bdb6ae;
  border-bottom: 2px solid #bdb6ae;
  padding-bottom: 5px;
}

.hero {
  max-width: 90vw;
  margin: 0 auto;
  background: #f4ede7;
  border: 2px solid #bdb6ae;
  border-radius: 4px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  box-sizing: border-box;
  padding: 40px 40px 40px 40px;
  gap: 0;
}

.hero-content {
  flex: 1 1 350px;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 40px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 0 0 20px 0;
  letter-spacing: 1px;
}

.hero-content p {
  font-size: 1.5rem;
  margin: 0 0 10px 0;
  font-weight: 400;
}

.hero-content .logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
}

.hero-content .handle {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 30px 0 10px 0;
}

.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.social-icons a {
  color: #222;
  font-size: 2rem;
  transition: color 0.2s;
}

.social-icons a:hover {
  color: #bdb6ae;
}

.hero-image {
  flex: 1 1 350px;
  min-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  max-height: 400px;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    padding: 20px;
  }
  .hero-content {
    padding-right: 0;
    margin-bottom: 30px;
  }
} 