:root{
  --bg:#0b0a09;
  --gold:#d4af37;
  --text:#e8dcc6;
  --muted:#b9a98f;

  --font-head:'Playfair Display',serif;
  --font-body:'Inter',sans-serif;
}

/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:var(--bg);
  color:var(--text);
  font-family:var(--font-body);
}
/* ================= GLOBAL CONTAINER ================= */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

/* ================= FLOATING NAV ================= */
.floating-nav{
  position:fixed;
  top:24px;
  right:80px;
  z-index:1200;
}

.nav-links{
  display:flex;
  gap:26px;
  padding:12px 22px;
  background:rgba(11,10,9,.55);
  backdrop-filter:blur(16px);
  border:1px solid rgba(212,175,55,.25);
  border-radius:18px;
}

.nav-links a{
  color:var(--muted);
  text-decoration:none;
  font-size:14px;
}

.nav-links a:hover{
  color:var(--gold);
}

.nav-contact{
  padding:6px 14px;
  border:1px solid var(--gold);
  border-radius:20px;
  color:var(--gold);
  margin-right:18px; /* space for translator */
}

/* ================= LOGO (LEFT – SAFE) ================= */

.brand-logo{
  position: fixed;          /* NOT absolute */
  top: 32px;
  left: 80px;
  z-index: 4000;            /* higher than nav */
}

.brand-logo img{
  height: 150px;
  width: auto;
  display: block;
  pointer-events: auto;
}

/* ================= ABOUT HERO (BROWN / GOLD) ================= */

/* ================= ABOUT HERO ================= */

.about-hero {
  position: relative;
  min-height: 70vh;
  padding: 160px 0 120px;
  background:
    radial-gradient(
      circle at top center,
      rgba(255, 102, 0, 0.22),
      transparent 60%
    ),
    linear-gradient(
      to bottom,
      #2a1a12 0%,
      #160f0c 70%,
      #0b0a09 100%
    );
  overflow: hidden;
}

/* no overlay – no image */
.about-hero-overlay {
  display: none;
}

/* content wrapper */
.about-hero-content {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

/* eyebrow — TEXT ONLY */
.about-hero-eyebrow {
  display: block;
  margin-bottom: 22px;
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b89b6a; /* soft cocoa-gold */
}

/* headline — PURE TYPOGRAPHY */
.about-hero h1 {
  font-family: var(--font-head);
  font-size: 54px;
  font-weight: 600;
  line-height: 1.15;
  color: #e4d1b0; /* warm beige, NOT yellow */
  margin-bottom: 28px;
}

/* subtitle */
.about-hero p {
  font-size: 16px;
  line-height: 1.9;
  color: #c8b6a2;
  max-width: 720px;
  margin: 0 auto;
}

/* divider — subtle, elegant */
.about-hero-divider {
  width: 160px;
  height: 1px;
  margin: 54px auto 0;
  background: linear-gradient(
    to right,
    transparent,
    rgba(184,155,106,0.6),
    transparent
  );
}
/* ================= FIX HERO → CONFERENCE GAP ================= */

/* Reduce forced height */
.about-hero {
  min-height: unset;
}

/* Tighten bottom spacing */
.about-hero {
  padding-bottom: 60px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .about-hero {
    padding: 120px 0 100px;
  }

  .about-hero h1 {
    font-size: 40px;
  }
}

@media (max-width: 600px) {
  .about-hero h1 {
    font-size: 34px;
  }

  .about-hero p {
    font-size: 15px;
  }
}

/* ================= CONFERENCE INTRO ================= */

.conference-intro {
  padding: 70px 0 80px;
  background: linear-gradient(
    to bottom,
    #0f0b09 0%,
    #0b0a09 100%
  );
}

/* GRID */
.conference-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

/* TEXT */
.conference-copy h2 {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 16px;
}

.conference-copy .lead {
  font-size: 16px;
  line-height: 1.8;
  color: #e0d3bc;
  max-width: 520px;
  margin-bottom: 14px;
}

.conference-copy p {
  font-size: 15px;
  line-height: 1.8;
  color: #cbbda6;
  max-width: 520px;
}

/* IMAGE */
.conference-visual {
  display: flex;
  justify-content: flex-end;
}

.conference-border {
  padding: 2px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(212,175,55,0.9),
    rgba(212,175,55,0.3)
  );
}

.conference-border img {
  width: 100%;
  max-width: 420px;
  display: block;
  border-radius: 18px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .conference-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .conference-visual {
    justify-content: center;
  }

  .conference-copy h2 {
    font-size: 32px;
  }
}
/* ================= CONFERENCE OBJECTIVES ================= */

.conference-objectives {
  padding: 90px 0 100px;
  background: linear-gradient(
    to bottom,
    #0b0a09 0%,
    #120c08 100%
  );
}

/* CONTAINER */
.conference-objectives .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* SECTION HEAD */
.conference-objectives .section-head {
  margin-bottom: 48px;
}

.conference-objectives h2 {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 500;
  color: var(--gold);
}

/* OBJECTIVES GRID */
.objectives-list {
  list-style: none;
  padding: 0;
  margin: 0;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* CARD */
.objectives-list li {
  position: relative;
  padding: 28px 26px 28px 34px;

  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.045),
    rgba(255,255,255,0.015)
  );

  border-radius: 22px;
  border: 1px solid rgba(212,175,55,0.25);

  font-size: 15px;
  line-height: 1.75;
  color: #d8ccb6;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* GOLD ACCENT DOT */
.objectives-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 30px;

  width: 8px;
  height: 8px;
  border-radius: 50%;

  background: linear-gradient(
    135deg,
    #e6c67a,
    #b8922e
  );
}

/* HOVER (SUBTLE) */
.objectives-list li:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .objectives-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .conference-objectives {
    padding: 70px 0 80px;
  }

  .conference-objectives h2 {
    font-size: 30px;
  }

  .objectives-list {
    grid-template-columns: 1fr;
  }
}
/* ===== FORCE CENTER CONFERENCE HEADLINE ===== */
.conference-overview .section-head {
  text-align: center !important;
}

.conference-overview .section-head h2 {
  display: block;
  margin: 0 auto 14px auto !important;
}

.conference-overview .section-head p {
  display: block;
  margin: 0 auto !important;
  max-width: 760px;
}
/* ================= KEY DISCUSSION THEMES ================= */

.conference-themes {
  padding: 90px 0 100px;
  background: linear-gradient(
    to bottom,
    #0b0a09 0%,
    #120c08 100%
  );
}

/* Section head stays consistent */
.conference-themes .section-head {
  text-align: center;
  margin-bottom: 50px;
}

.conference-themes .section-head h2 {
  font-size: 38px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 14px;
}

.conference-themes .section-head p {
  font-size: 15px;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* TABLE WRAPPER */
.themes-table-wrap {
  max-width: 1000px;
  margin: 0 auto;
}

/* TABLE BASE */
.themes-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.25);
}

/* HEADER */
.themes-table thead {
  background: rgba(212,175,55,0.08);
}

.themes-table th {
  text-align: left;
  padding: 18px 26px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
}

/* BODY ROWS */
.themes-table td {
  padding: 22px 26px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  vertical-align: top;
}

/* GOLD SEPARATORS (NO HEAVY BORDERS) */
.themes-table tr:not(:last-child) td {
  border-bottom: 1px solid rgba(212,175,55,0.18);
}

/* FIRST COLUMN (THEME NAME) */
.themes-table td:first-child {
  width: 32%;
  font-weight: 500;
  color: #e6c67a;
}

/* ROW HOVER — SUBTLE, PREMIUM */
.themes-table tbody tr:hover {
  background: rgba(212,175,55,0.06);
  transition: background 0.25s ease;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .themes-table thead {
    display: none;
  }

  .themes-table,
  .themes-table tbody,
  .themes-table tr,
  .themes-table td {
    display: block;
    width: 100%;
  }

  .themes-table tr {
    padding: 18px 20px;
  }

  .themes-table td {
    padding: 10px 0;
    border: none;
  }

  .themes-table td:first-child {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .themes-table tr:not(:last-child) {
    border-bottom: 1px solid rgba(212,175,55,0.18);
  }
}
/* ================= WHO SHOULD ATTEND ================= */

.conference-attendees {
  padding: 90px 0 100px;
  background: linear-gradient(
    to bottom,
    #0b0a09 0%,
    #120c08 100%
  );
}

/* GRID */
.attendees-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE */
.attendees-media {
  display: flex;
  justify-content: flex-start;
}

.attendees-frame {
  padding: 2px;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(212,175,55,0.85),
    rgba(212,175,55,0.25)
  );
}

.attendees-frame img {
  display: block;
  width: 100%;
  max-width: 440px;
  border-radius: 20px;
}

/* TEXT */
.attendees-text .section-head {
  margin-bottom: 14px;
}

.attendees-text h2 {
  font-size: 36px;
  font-weight: 500;
  color: var(--gold);
}

.attendees-intro {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 26px;
}

/* LIST */
.attendees-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.attendees-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text);
}

/* GOLD DOT */
.attendees-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .attendees-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .attendees-media {
    justify-content: center;
  }

  .attendees-text h2 {
    font-size: 32px;
  }
}
/* ================= CONFERENCE CTA ================= */

.conference-cta {
  padding: 110px 0 120px;
  background: linear-gradient(
    to bottom,
    #0b0a09 0%,
    #140d09 45%,
    #0b0a09 100%
  );
  text-align: center;
  position: relative;
}

/* subtle top divider */
.conference-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(212,175,55,0.6),
    transparent
  );
}

/* heading */
.conference-cta h2 {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 18px;
}

/* text */
.conference-cta p {
  max-width: 620px;
  margin: 0 auto 34px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
}

/* CTA button */
.conference-cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

/* gold primary */
.conference-cta .btn-primary {
  background: linear-gradient(
    135deg,
    #e6c67a,
    #c9a23a,
    #b8922e
  );
  color: #0b0a09;
  border: 1px solid rgba(212,175,55,0.9);
  box-shadow:
    0 8px 22px rgba(212,175,55,0.28),
    inset 0 1px 0 rgba(255,255,255,0.35);
}

.conference-cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 30px rgba(212,175,55,0.38),
    inset 0 1px 0 rgba(255,255,255,0.45);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .conference-cta {
    padding: 90px 0 100px;
  }

  .conference-cta h2 {
    font-size: 34px;
  }

  .conference-cta p {
    font-size: 14px;
  }
}
/* ================= Footer================= */

.site-footer {
  padding: 40px 20px;
  background: #0b0a09; /* same as site background */
  border-top: 1px solid rgba(212, 175, 55, 0.25);
}

.footer-flex {
  display: flex;
  flex-direction: column;   /* stack vertically */
  align-items: center;      /* center horizontally */
  text-align: center;
  gap: 8px;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
  color: #bdbdbd;
  line-height: 1.6;
}

.site-footer strong {
  color: #ffffff;
  font-weight: 500;
}
