
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #1c1e2f;
  scroll-behavior: smooth;
}

.hero {
  background: linear-gradient(rgba(28,30,47,0.8), rgba(28,30,47,0.8)), url('../img/hero.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  background: #d4af37;
  color: #1c1e2f;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 4px;
}

section {
  padding: 60px 20px;
  max-width: 960px;
  margin: 0 auto;
}

h2 {
  color: #1c1e2f;
  margin-bottom: 20px;
}

.about, .contact {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.portrait {
  max-width: 300px;
  border-radius: 10px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

footer {
  background: #1c1e2f;
  color: #f0f0f0;
  text-align: center;
  padding: 40px 20px;
  font-size: 14px;
}

input, textarea, button {
  display: block;
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

button {
  background: #1c1e2f;
  color: white;
  font-weight: bold;
  cursor: pointer;
}
