/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* GLOBAL */
html, body {
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: "Georgia", serif;
  color: #e39a45;
  background: #000;
}

/* BACKGROUND */
.bg-image {
  background: url("bg.jpg") center / cover no-repeat fixed;
}

/* PAGE */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* NAV */
.nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 20px;
  gap: 14px;
}

.logo-box img {
  width: 56px;
  height: auto;
  display: block;
  background: transparent;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.nav-links a {
  color: #e39a45;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
}

/* BACK BUTTON */
.back-btn {
  position: fixed;
  top: 12px;
  left: 12px;
  color: #e39a45;
  text-decoration: none;
  font-size: 14px;
  z-index: 10;
}

/* MAIN */
.center {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

.content {
  max-width: 760px;
  width: 100%;
  text-align: left;
}

/* HEADINGS */
h1 {
  font-size: 42px;
  margin-bottom: 24px;
  line-height: 1.2;
}

h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

h3 {
  font-size: 22px;
  margin: 26px 0 10px;
}

/* TEXT */
p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 16px;
}

ul {
  margin-left: 18px;
  margin-bottom: 20px;
}

li {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 8px;
}

/* FOOTER */
footer {
  text-align: center;
  font-size: 12px;
  padding: 18px;
  opacity: 0.8;
}

/* ===== ABOUT PAGE LAYOUT FIX ===== */

.about-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

.about-image {
  flex: 0 0 320px;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border: 6px solid #ffffff;
  box-sizing: border-box;
}

.about-name {
  margin-top: 16px;
  color: #f28c28;
  font-size: 16px;
  text-align: center;
}

.about-text {
  flex: 1;
  color: #f28c28;
  font-size: 18px;
  line-height: 1.6;
}

/* ========================= */
/* MOBILE FIX (CRITICAL)     */
/* ========================= */
@media (max-width: 768px) {

  .logo-box img {
    width: 44px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 18px;
  }

  p, li {
    font-size: 15px;
  }

  .center {
    padding: 24px 16px;
  }

  .nav-links {
    gap: 12px;
  }

/* ===== MOBILE FIX ===== */

@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .about-image {
    flex: none;
  }

  .about-text {
    font-size: 16px;
  }
}

