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

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  font-weight: 600;
  border-bottom: 1px solid #eee;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.search {
  font-size: 1.2rem;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  text-align: center;
  color: white;
}

.hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.hero-text h1 {
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
}

.hero-text p {
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

/* Nav Section */
.nav-section {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  text-align: center;
  padding: 2rem 1rem;
  background: #fafafa;
}

.nav-item {
  flex: 1;
  margin: 0 1rem;
}

.nav-item h2 {
  font-size: 1.2rem;
  margin-top: 0.5rem;
  font-weight: 500;
}

.icon {
  font-size: 2rem;
}

.bio {
  margin-top: 1rem;
}

.bio img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 0.5rem;
}

.bio p {
  font-size: 0.9rem;
  color: #444;
  padding: 0 0.5rem;
}

/* Call to Action */
.cta {
  margin-top: 1rem;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 4px;
  background-color: #6a6;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cta:hover {
  background-color: #588;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: #333;
  color: #fff;
  margin-top: 2rem;
}
