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

/* Fonts and base styles */
body {
  font-family: 'Open Sans', sans-serif;
  background-color: #fdfdfb;
  color: #333;
  line-height: 1.8;
  font-size: 16px;
}

/* Container */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

/* Typography */
h1 {
    font-family: 'Figtree', serif;
    font-weight: 400;
    color: #fff;
}


h2 {
  font-family: 'Figtree', serif;
  color: #1d3557;
}

h1 {
  font-size: 3.14rem;
  font-weight: 700;
  letter-spacing: 1px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  color: #444;
}

a {
  color: #1d3557;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Hero */
.hero {
  position: relative;
  background-image: url('hero.jpg');
  background-size: cover;
  background-position: center;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  color: #fff;
  padding: 2rem;
}

.hero .tagline {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
  margin-top: 0.8rem;
}

/* Sections */
.section {
  padding: 3rem 0;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  background-color: #f3f3f3; /* soft light gray */
}
