/* Import Balgin font (you’ll drop the font files into /fonts) */
@font-face {
  font-family: "Balgin";
  src: url("fonts/Balgin-Regular.ttf") format("truetype");
  font-weight: normal;
}
@font-face {
  font-family: "Balgin";
  src: url("fonts/Balgin-Bold.ttf") format("truetype");
  font-weight: bold;
}

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

/* Logo */
.logo {
  width: 96px;   /* 1 inch */
  height: 96px;  /* 1 inch */
  object-fit: contain;
  position: absolute;
  top: 20px;
  left: 20px;
}
.logo-link {
  display: inline-block;
}

/* Landing Page */
body.landing {
  background-color: black;
  color: white;
  font-family: "Balgin", sans-serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.landing-text {
  font-size: 100px;
  font-weight: normal;
}

/* Button */
.nav-btn {
  margin-top: 30px;
  font-family: "Balgin", sans-serif;
  font-size: 16px;
  color: white;
  text-decoration: none;
  border: 1px solid white;
  padding: 8px 16px;
  border-radius: 5px;
}
.nav-btn:hover {
  background-color: white;
  color: black;
}

/* About Us Page */
body.about {
  background-color: black;
  color: white;
  font-family: "Balgin", sans-serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}

.about-title {
  font-size: 56px;
  margin-bottom: 20px;
}

.about-text {
  font-size: 22px;
  max-width: 800px;
  margin: 10px 0;
}