/* Body text uses Poppins */
body, p {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #212f3f;
}

/* Headings and button use Yeseva One */
h1, h2, .btn {
  font-family: 'Yeseva One', serif;
}

/* Hero section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
  background-color: #f0f0f0;
  width: 100%;
  box-sizing: border-box;
}

.hero-content {
  flex: 1;             /* takes remaining space */
  max-width: 50%;      /* optional limit */
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.hero-image {
  max-width: 40%;
  height: auto;
  border-radius: 10px;
  margin-left: auto;   /* pushes image to the right */
  display: block;
}

/* Info section */
.info-section {
  padding: 50px;
  text-align: center;
}

.info-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.info-section p {
  font-size: 1rem;
  margin-bottom: 20px;
}

/* Button styling */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #595630;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
}

.btn:hover {
  background-color: #595630;
}
