/* ============================================================
   GLOBAL FONT SETTINGS FOR CENTURION
   ============================================================ */

/* Preferred: Bahnschrift (if installed) */
@font-face {
    font-family: "Bahnschrift Web";
    src:
        local("Bahnschrift"),
        local("Bahnschrift Light"),
        local("Bahnschrift SemiBold"),
        local("Bahnschrift SemiLight");
    font-weight: normal;
    font-style: normal;
}

/* Default body font */
body {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    line-height: 1.5;
    color: #000;
    background-color: #13563b;
}

/* Headings, nav text, logo text */
h1, h2, h3, h4, h5, h6,
#globalHeader .navline .menu a,
#globalHeader h1 a,
.logo-text {
    font-family: "Bahnschrift Web", "Bahnschrift", "Segoe UI Variable", "Segoe UI", Montserrat, Arial, sans-serif;
}

/* Override IMVU forced fonts */
#globalHeader,
#globalHeader * {
    font-family: Arial, sans-serif !important;
}

#globalHeader .navline .menu a,
#globalHeader .navline li.dd a {
    font-family: "Bahnschrift Web", "Bahnschrift", Arial, sans-serif !important;
    letter-spacing: 0.5px;
}

/* ============================================================
   BEGIN base.css (merged)
   ============================================================ */

@font-face {
  font-family: Century Gothic;
  src: url(../fonts/Gothic.eot);
  src: local("Century Gothic"),
       url(../fonts/Gothic.woff) format("woff"),
       url(../fonts/Gothic.ttf) format("truetype"),
       url(../images/Gothic.svg) format("svg");
}

@font-face {
  font-family: Century Gothic;
  src: url(../fonts/Gothicb.eot);
  src: local("Century Gothic Bold"),
       url(../fonts/Gothicb.woff) format("woff"),
       url(../fonts/Gothicb.ttf) format("truetype"),
       url(../images/Gothicb.svg) format("svg");
  font-weight: 700;
}

@font-face {
  font-family: Metropolis;
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/Metropolis-Light.woff2) format("woff2");
}

@font-face {
  font-family: Metropolis;
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/Metropolis-SemiBold.woff2) format("woff2");
}

/* ============================================================
   END base.css — BEGIN standard.css
   ============================================================ */

body #globalHeader * {
  line-height: inherit;
}

#globalHeader {
  background: #fff url(../images/bg-std.png) 0 0 repeat-x;
  text-align: center;
  width: 100%;
  margin: 0;
  padding: 0;
}

#globalHeader .content {
  text-align: left;
  width: 950px;
  margin: 0 auto;
  position: relative;
  z-index: 11;
  max-width: 100%;
  width: 100%;
  padding: 0;
  box-sizing: border-box;
}

#globalHeader.takeover {
  background: none;
}

#globalHeader.takeover .content {
  background: #fff url(../images/bg-std.png) 0 0 repeat-x;
}

/* Updated Centurion logo (landscape) */
#globalHeader h1 {
  background: url(../images/logo-land.png) center center no-repeat;
  background-size: contain;
  margin: 0 auto -20px;
  position: relative;
  top: 0;
  height: 150px;
  width: 350px;
  border: 0;
  float: none;
  text-align: center;
}

#globalHeader h1 a {
  display: block;
  height: 150px;
  width: 350px;
  text-align: left;
  text-indent: -999em;
  overflow: hidden;
}

#globalHeader .mainline,
#globalHeader .navline {
  background: #4a4b42 url(../images/mainline-std.jpg) 0 0 repeat-x;
  color: #fff;
  height: 30px;
  line-height: 30px;
  position: relative;
  padding: 0 10px;
  font-size: 11px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

#globalHeader .navline {
  background: #c0beb4 url(../images/navline-std.jpg) 0 0 repeat-x;
  font-weight: 700;
  margin: 0 0 10px;
}

#globalHeader .navline .menu {
  text-transform: uppercase;
}

#globalHeader .navline ul li {
  position: relative;
  margin: 0 10px 0 0;
  z-index: 10;
}

#globalHeader .navline .menu a {
  color: #3b3d2f;
  text-decoration: none;
  display: block;
  width: auto;
  padding: 0 5px;
  font: 700 14px/30px Century Gothic, Arial, Helvetica, Tahoma, Verdana, sans-serif;
}

#globalHeader .navline li.dd a {
  padding: 0 13px 0 5px;
  background: url(../images/dropdown-arrow.gif) right center no-repeat;
}

#globalHeader .navline li:hover a,
#globalHeader .navline a:hover {
  background: #666;
  color: #fff;
}

#globalHeader .dd ul {
  position: absolute;
  left: -999em;
  text-transform: none;
  min-width: 150px;
  padding: 10px 0;
  background: #333 url(../images/dropdown.jpg) 0 0 repeat-x;
  box-shadow: 4px 4px #00000080;
}

#globalHeader .dd ul li {
  float: none;
  display: block;
  margin: 0;
}

#globalHeader .dd ul a,
#globalHeader li.dd:hover ul a {
  padding: 0 10px;
  min-width: 150px;
  background: transparent;
  font: 13px/24px Arial, Helvetica, Tahoma, Verdana, sans-serif;
}

#globalHeader .dd ul a:hover,
#globalHeader li.dd:hover ul a:hover {
  background: #edd8a4;
  color: #333;
  text-decoration: none;
}

#globalHeader li.dd:hover ul {
  left: 0;
  top: 30px;
}

#globalHeader #locale {
  display: flex;
  gap: 10px;
}

/* ============================================================
   NAVBAR CENTERING
   ============================================================ */

#globalHeader .navline ul.menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    float: none;
    width: 100%;
}

#globalHeader .navline ul.menu > li {
    float: none !important;
}

/* ============================================================
   REMOVE BULLETS FROM NAVBAR LIST ITEMS
   ============================================================ */

#globalHeader .navline ul,
#globalHeader .navline ul li {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0;
    padding: 0;
}

#globalHeader .navline ul li::before {
    content: none !important;
}

/* ============================================================
   HERO SECTION
   ============================================================ */

#landing-main {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}


.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 12px;
    box-shadow: 0px 4px 0px #00000080;
}

/* Make hero non-interactive */
.hero,
.hero img,
.hero-text {
    pointer-events: none;
    user-select: none;
}

.hero img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #edd8a4;
    text-shadow: 2px 2px 4px #000;
}

.hero-text h2 {
    font-size: 60px;
    font-weight: 700;
    margin: 0;
}

.hero-text p {
    font-size: 20px;
    margin-top: 8px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
    width: 100%;
    background: #fff url(../images/bg-std.png) 0 0 repeat-x;
    padding: 20px 40px;
    margin-top: 40px;
    text-align: center;
    box-sizing: border-box;
}

.site-footer p {
    color: white;
    font-weight: bold;
    font-family: Arial, sans-serif;
    font-size: 12px;
    line-height: 1.4;
    margin: 0;
}

/* ============================================================
   UNIVERSAL CONTENT CARD (used across all subpages)
   ============================================================ */

.content-card {
    width: 98%;
    max-width: 1800px;
    margin: 40px auto;
    background: #000000;
    border-radius: 12px;
    overflow: hidden;
    box-sizing: border-box;
}

.content-titlebar {
    background: #000000;
    padding: 20px;
    text-align: center;
}

.content-titlebar h2 {
    margin: 0;
    padding: 0;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
}

.content-body {
    background: #edd8a4;
    padding: 30px;
    color: #2a2525;
    font-size: 18px;
    line-height: 1.6;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}
