/* ========================= */
/* RESET                     */
/* ========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ========================= */
/* FORCE GLOBAL BACKGROUND   */
/* ========================= */

/* Apply background to html (cannot be covered) */
html {
  height: 100%;
  background: url("luxury-bg.png") no-repeat center center fixed;
  background-size: cover;
}

/* Make body transparent */
body {
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: "Georgia", serif;
  color: #e39a45;
  background: transparent;
}

/* Dark overlay for readability */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}

/* Make sure content sits above overlay */
.page,
.nav,
.center,
footer {
  position: relative;
  z-index: 1;
}

/* ========================= */
/* PAGE STRUCTURE            */
/* ========================= */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ========================= */
/* NAVIGATION                */
/* ========================= */
.nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 20px;
  gap: 14px;
}

.logo-box img {
  width: 56px;
  height: auto;
  display: block;
}

.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 CONTENT              */
/* ========================= */
.center {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

.content {
  max-width: 760px;
  width: 100%;
}

/* ========================= */
/* TYPOGRAPHY                */
/* ========================= */
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;
}

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                */
/* ========================= */
.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;
}

.about-name {
  margin-top: 16px;
  font-size: 16px;
  text-align: center;
}

.about-text {
  flex: 1;
  font-size: 18px;
  line-height: 1.6;
}

/* ========================= */
/* MOBILE                    */
/* ========================= */
@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;
  }

  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .about-image {
    flex: none;
  }

  .about-text {
    font-size: 16px;
  }
}