: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);
}

/* ================= 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
  );
}

/* ================= 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;
  }
}

/* ================= WHO SHOULD EXHIBIT ================= */

.exhibit-why {
  position: relative;
  padding: 120px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay */
.exhibit-why::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

.exhibit-who {
  position: relative;
  z-index: 1;
}

.exhibit-who .container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* Head */
.exhibit-who h2 {
  font-size: 42px;
  color: #d4af37;
  margin-bottom: 16px;
}

.exhibit-who p {
  font-size: 15px;
  color: #d8ccb6;
  max-width: 640px;
  margin: 0 auto 60px;
  line-height: 1.9;
}

/* Grid */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.who-item {
  padding: 22px;
  font-size: 14px;
  color: #e6c67a;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 18px;
  transition: all 0.25s ease;
}

.who-item:hover {
  transform: translateY(-4px);
  border-color: rgba(212,175,55,0.6);
  background: rgba(255,255,255,0.07);
}

/* Responsive */
@media (max-width: 900px) {
  .who-grid {
    grid-template-columns: 1fr;
  }
}
/* ================= WHY EXHIBIT ================= */

.why-exhibit {
  padding: 120px 0;
  background: linear-gradient(
    to bottom,
    #0b0a09 0%,
    #120c08 50%,
    #0b0a09 100%
  );
}

/* Section head */
.why-exhibit .section-head {
  text-align: center;
  margin-bottom: 70px;
}

.why-exhibit .section-head h2 {
  font-size: 40px;
  font-weight: 500;
  color: #d4af37;
  letter-spacing: 0.3px;
}

/* Cards container */
.why-cards {
  max-width: 1100px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Individual card */
.why-card {
  padding: 36px 32px;
  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.28);

  transition: all 0.3s ease;
}

/* Card hover */
.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.55);
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.07),
    rgba(255,255,255,0.03)
  );
}

/* Card title */
.why-card h3 {
  font-size: 18px;
  font-weight: 500;
  color: #e6c67a;
  margin-bottom: 14px;
}

/* Card text */
.why-card p {
  font-size: 14px;
  line-height: 1.85;
  color: #d8ccb6;
}

/* Responsive */
@media (max-width: 900px) {
  .why-cards {
    grid-template-columns: 1fr;
  }
}
/* ================= EXHIBITION SECTORS ================= */

.exhibit-sectors {
  padding: 120px 0;
  background: linear-gradient(
    to bottom,
    #0b0a09,
    #140e0a,
    #0b0a09
  );
}

/* LAYOUT */
.sectors-layout {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

/* VISUAL */
.sectors-visual img {
  width: 100%;
  height: auto;
  border-radius: 26px;

  border: 1px solid rgba(212,175,55,0.35);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

/* TEXT */
.sectors-text h2 {
  font-size: 42px;
  font-weight: 500;
  color: #d4af37;
  margin-bottom: 16px;
}

.sectors-text .intro {
  font-size: 15px;
  color: #cfc2a8;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

/* SECTOR BLOCK */
.sector-block {
  margin-bottom: 28px;
  padding-left: 18px;
  border-left: 2px solid rgba(212,175,55,0.35);
}

.sector-block h3 {
  font-size: 17px;
  font-weight: 500;
  color: #e6c67a;
  margin-bottom: 6px;
}

.sector-block p {
  font-size: 14px;
  line-height: 1.7;
  color: #d0c4ab;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .sectors-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .sectors-text h2 {
    text-align: center;
  }

  .sectors-text .intro {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}
/* ================= EXHIBITOR PACKAGES ================= */

.exhibit-packages {
  padding: 120px 0;
  background: linear-gradient(
    to bottom,
    #0b0a09 0%,
    #120c08 50%,
    #0b0a09 100%
  );
}

.exhibit-packages .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
}

/* SECTION HEAD */
.exhibit-packages .section-head {
  text-align: center;
  margin-bottom: 60px;
}

.exhibit-packages .section-head h2 {
  font-size: 36px;
  font-weight: 500;
  color: #d4af37;
  margin-bottom: 16px;
}

.exhibit-packages .section-head p {
  font-size: 15px;
  color: #d8ccb6;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

/* PACKAGES ROW */
.packages-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 36px;
}

/* PACKAGE ITEM */
.package-item {
  padding: 26px 20px;
  text-align: center;

  font-size: 14px;
  font-weight: 500;
  color: #e6c67a;

  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.05),
    rgba(255,255,255,0.015)
  );

  border-radius: 18px;
  border: 1px solid rgba(212,175,55,0.35);

  transition: all 0.25s ease;
}

/* HOVER */
.package-item:hover {
  transform: translateY(-4px);
  border-color: rgba(212,175,55,0.6);
  box-shadow: 0 12px 30px rgba(212,175,55,0.15);
}

/* NOTE */
.packages-note {
  text-align: center;
  font-size: 13px;
  color: #bfae8e;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .packages-row {
    grid-template-columns: 1fr;
  }

  .exhibit-packages .container {
    padding: 0 40px;
  }
}
/* ================= EXHIBITOR CTA ================= */

.exhibit-cta {
  padding: 120px 0;
  background: linear-gradient(
    135deg,
    #1a120c 0%,
    #2a1a10 50%,
    #1a120c 100%
  );

  border-top: 1px solid rgba(212,175,55,0.25);
}

.exhibit-cta .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

/* TITLE */
.exhibit-cta h2 {
  font-size: 40px;
  font-weight: 500;
  color: #d4af37;
  margin-bottom: 18px;
}

/* TEXT */
.exhibit-cta p {
  font-size: 15px;
  color: #d8ccb6;
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.85;
}

/* CTA BUTTON */
.exhibit-cta .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 15px 38px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;

  color: #0b0a09;
  text-decoration: none;

  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.9);

  background: linear-gradient(
    135deg,
    #e6c67a,
    #c9a23a,
    #b8922e
  );

  box-shadow:
    0 8px 22px rgba(212,175,55,0.25),
    inset 0 1px 0 rgba(255,255,255,0.35);

  transition: all 0.25s ease;
}

/* HOVER */
.exhibit-cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 34px rgba(212,175,55,0.35),
    inset 0 1px 0 rgba(255,255,255,0.45);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .exhibit-cta h2 {
    font-size: 32px;
  }

  .exhibit-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;
}