/* styles.css */

@font-face {
  font-family: "Kestia";
  src:
    url("fonts/kestia/kestia-regular.woff2") format("woff2"),
    url("fonts/kestia/kestia-regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: Helvetica, sans-serif;
  font-weight: lighter;
  background-color: black;
  color: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
}

.logo {
  font-family: "Kestia", Helvetica, sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.08em;
}

nav a {
  font-family: "Kestia", Helvetica, sans-serif;
  font-weight: normal;
  text-decoration: none;
  margin-left: 1.5rem;
  font-size: 2rem;
  color: white !important;
}

nav a:hover {
  text-decoration: underline;
  color: white !important;
}

main {
  flex: 1;
}

footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.85rem;
  color: #aaa;
  font-family: "Kestia", Helvetica, sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

.banner-container {
  width: 100%;
  height: 100vh;       /* always fill viewport height */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* cover container while keeping aspect ratio */
  object-position: center; /* always show central part of image */
  display: block;
}


.content {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.content h1 {
  font-family: "Kestia", Helvetica, sans-serif;
  font-weight: normal;
  /* margin-bottom: 1.5rem; increased gap */
  margin-top: 3rem; /* added top margin for extra spacing */
  font-size: 2.5rem;
}

.content h2 {
  font-family: Helvetica, sans-serif;
  font-weight: lighter;
  /* margin-bottom: 0.1rem; */
  margin-top: 0.5rem;
  font-size: 1.5rem;
}

.content p {
  font-family: Helvetica, sans-serif;
  font-weight: lighter;
  line-height: 1.7;
  color: #ddd;
}