/* =====================
   NASIR TODAY — STYLE
   ===================== */

/* ---------- CSS RESET ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
               Inter, Roboto, Helvetica, Arial, sans-serif;
  background: #ffffff;
  color: #1c1c1c;
  line-height: 1.6;
}

/* ---------- GLOBAL ---------- */
.container {
  width: 92%;
  max-width: 1200px;
  margin: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3 {
  line-height: 1.3;
  margin-bottom: 0.6em;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 1.6rem;
}

p {
  margin-bottom: 1em;
}

/* ---------- HEADER ---------- */
.site-header {
  background: #0B1C2D;
  color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
}

.logo-text {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.logo-text .dot {
  color: #C9A227;
}

/* ---------- NAV ---------- */
nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: #ffffff;
  font-size: 0.95rem;
  opacity: 0.9;
}

nav a:hover {
  opacity: 1;
}

.nav-highlight {
  color: #C9A227;
  font-weight: 600;
}

/* ---------- MOBILE MENU ---------- */
.menu-toggle {
  display: none;
  font-size: 1.6rem;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
}

@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: #0B1C2D;
    flex-direction: column;
    padding: 20px;
    display: none;
  }

  nav.open {
    display: flex;
  }

  nav a {
    padding: 10px 0;
    font-size: 1rem;
  }

  .menu-toggle {
    display: block;
  }
}

/* ---------- HERO ---------- */
.hero {
  background: linear-gradient(
      rgba(11, 28, 45, 0.75),
      rgba(11, 28, 45, 0.75)
    ),
    url("assets/hero-nasir.jpg") center/cover no-repeat;
  color: #ffffff;
  padding: 90px 0 80px;
}

.hero-content {
  max-width: 700px;
}

.tagline {
  font-size: 1.2rem;
  font-weight: 500;
  color: #E5E5E5;
}

.hero-intro {
  margin-top: 15px;
  font-size: 1.05rem;
  color: #F1F1F1;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-right: 10px;
  margin-top: 15px;
}

.btn.primary {
  background: #C9A227;
  color: #0B1C2D;
}

.btn.secondary {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.btn.outline {
  border: 1px solid #0B1C2D;
  color: #0B1C2D;
}

.btn:hover {
  opacity: 0.9;
}

/* ---------- SECTIONS ---------- */
section {
  padding: 60px 0;
}

/* ---------- LATEST UPDATES ---------- */
.latest-updates {
  background: #F7F9FB;
}

.updates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.update {
  background: #ffffff;
  padding: 18px;
  border-radius: 8px;
  border-left: 5px solid #ccc;
}

.update h3 {
  font-size: 1rem;
}

.update .meta {
  font-size: 0.8rem;
  color: #777;
  margin-bottom: 6px;
}

.status {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 6px;
}

/* Status colours */
.confirmed {
  border-color: #2E7D32;
}

.developing {
  border-color: #C9A227;
}

.unconfirmed {
  border-color: #9E9E9E;
}

/* ---------- COMMUNITY ---------- */
.community-board ul {
  list-style: none;
  padding-left: 0;
}

.community-board li {
  padding: 8px 0;
  font-size: 1rem;
}

/* ---------- CULTURE ---------- */
.culture-preview {
  background: #ffffff;
}

/* ---------- ETHICS STRIP ---------- */
.ethics-strip {
  background: #0B1C2D;
  color: #ffffff;
  padding: 25px 0;
  font-size: 0.9rem;
}

.ethics-strip a {
  color: #C9A227;
  font-weight: 600;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: #081623;
  color: #BFC7CE;
  padding: 30px 0;
  font-size: 0.85rem;
}

.footer-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.site-footer a {
  color: #C9A227;
}