: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 ================= */
.brand-logo{
  position:absolute;
  top:40px;
  left:80px;
  z-index:3000;   /* ⬅️ أعلى من النص */
}

.brand-logo img{
  height:250px;          /* 🔥 BIG START SIZE */
  width:auto;
  transition:height .35s ease;
}

/* Fixed state (after scroll) */
.brand-logo.fixed{
  position:fixed;
  top:24px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.45);
}

.brand-logo.fixed img{
  height:100px;          
}

/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* background image */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* dark overlay using pseudo-element */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1;
}

/* content above image */
.hero-inner {
  position: relative;
  z-index: 2;
}

.hero{
  min-height:100vh;
  padding:320px 80px 120px 80px; /* space for 250px logo */
}

.hero-inner{
  max-width:720px;
   position:relative;
  z-index:10;
  padding-top:1px; 
}

.hero h1{
  font-family:var(--font-head);
  font-size:64px;
  line-height:1.1;
}

.hero-description{
  margin-top:24px;
  font-size:16px;
  color:var(--muted);
}

.hero-meta{
  margin-top:28px;
  color:var(--gold);
  letter-spacing:.4px;
}

.hero-meta .sep{
  margin:0 8px;
  opacity:.6;
}
/* =========================
   WHY THIS EXPO – FIXED
========================= */

.why-expo {
  padding: 140px 0;
  background: #0b0a09;
}

/* العنوان */
.why-expo h2 {
  text-align: center;
  font-size: 44px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
}

.why-subtitle {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 90px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}

.why-structure {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(520px, 620px) minmax(320px, 1fr);
  grid-template-rows: auto auto;
  column-gap: 100px;
  row-gap: 80px;
  align-items: center;
}


/* ===== الصورة الوسط ===== */
.why-center {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  justify-content: center;
  align-items: center;
    transform: scale(1.05);
}


.why-center img {
  width: 100%;
  max-width: 580px;   /* 👈 increase this (480–600px sweet spot) */
  height: auto;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65);
   outline: 1px solid rgba(212, 175, 55, 0.25);
}

/* غطاء ناعم للحواف */
.why-center::after {
  content: "";
  position: absolute;
  inset: -20px;
  background: radial-gradient(
    circle,
    rgba(0,0,0,0) 40%,
    rgba(11,10,9,0.85) 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* ===== الكروت ===== */
.why-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 20px;
  padding: 28px 30px;
  max-width: 420px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

/* العناوين داخل الكرت */
.why-item h3 {
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 600;
}

/* النص */
.why-item p {
  font-size: 14px;
  line-height: 1.7;
  color: #d0d0d0;
}

/* ===== اليسار ===== */
.why-item.left {
  grid-column: 1;
  justify-self: end;
  text-align: right;
}

/* ===== اليمين (نفس مكان اليسار لكن mirrored) ===== */
.why-item.right {
  grid-column: 3;
  justify-self: start;
  text-align: left;
}

/* الصفوف */
.why-item.top {
  grid-row: 1;
}

.why-item.bottom {
  grid-row: 2;
}

/* ================= WHO SHOULD ATTEND ================= */

.who-attend {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  color: #fff;
}

/* background image */
.who-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* dark overlay */
.who-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 9, 8, 0.85),
    rgba(10, 9, 8, 0.92)
  );
  z-index: 1;
}

/* content wrapper */
.who-content {
  position: relative;
  z-index: 2;
}

/* header */
.who-header {
  max-width: 760px;
  margin: 0 auto 90px;
  text-align: center;
}

.who-header h2 {
  margin-bottom: 16px;
  color: var(--gold);
}

.who-header p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
}

/* cards layout */
.who-cards {
  display: flex;
  justify-content: center;
  gap: 56px;
}

/* CARD — FIXED PROPORTIONS */
.who-card {
  width: 300px;          /* wider */
  min-height: 520px;     /* less tall */

  padding: 56px 32px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(212,175,55,0.28);
  border-radius: 28px;

  backdrop-filter: blur(14px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.55);

  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}

/* center card emphasis */
.who-card:nth-child(2) {
  transform: translateY(-22px);
  box-shadow: 0 45px 100px rgba(0,0,0,0.75);
  border-color: rgba(212,175,55,0.55);
}

.who-card:hover {
  transform: translateY(-18px);
  border-color: rgba(212,175,55,0.75);
  box-shadow: 0 40px 90px rgba(212,175,55,0.18);
}

/* card title */
.who-card h3 {
  color: var(--gold);
  font-size: 19px;
  margin-bottom: 24px;
  letter-spacing: .4px;
}

/* list */
.who-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.who-card li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 14px;

  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

.who-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* floating accents */
.float {
  position: absolute;
  width: 90px;
  pointer-events: none;
  z-index: 2;
  opacity: 0.85;
}

.float.coffee {
  top: 160px;
  left: 90px;
}

.float.chocolate {
  bottom: 180px;
  right: 110px;
}

/* responsive */
@media (max-width: 1100px) {
  .who-cards {
    flex-direction: column;
    align-items: center;
    gap: 42px;
  }

  .who-card:nth-child(2) {
    transform: none;
  }

  .who-attend {
    padding: 120px 0;
  }
}
/* stagger cards for visual rhythm */
.who-card:nth-child(1) {
  transform: translateY(40px);
}

.who-card:nth-child(2) {
  transform: translateY(0);
  border-color: rgba(212,175,55,0.55);
  box-shadow: 0 50px 120px rgba(212,175,55,0.15);
}

.who-card:nth-child(3) {
  transform: translateY(40px);
}
.who-attend::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(212,175,55,0.08),
    transparent 65%
  );
  z-index: 1;
}

/* ================= EXHIBITION SECTORS ================= */

.expo-sectors {
  padding: 160px 0;
  background: #0b0b0b; /* clean black */
  color: #ffffff;
}

/* ---------- HEADER ---------- */

.sectors-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 120px;
}

.sectors-header h2 {
  font-size: 46px;
  font-weight: 600;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
  color: #ffffff;
}

.sectors-header h2::after {
  content: "";
  display: block;
  width: 90px;
  height: 3px;
  margin: 28px auto 0;
  background: #d4af37; /* pure gold */
  border-radius: 2px;
}

.sectors-header p {
  font-size: 15px;
  line-height: 1.8;
  color: #bcbcbc;
  margin-top: 22px;
}

/* ---------- HONEYCOMB ---------- */

.honeycomb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 22px;
  max-width: 980px;
  margin: 0 auto;
}

/* ---------- HEX ---------- */

.hex {
  position: relative;
  width: 190px;
  height: 110px;
  margin: 55px 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #161616; /* cool charcoal */
  border: 1px solid rgba(212, 175, 55, 0.35);

  color: #d4af37;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-align: center;

  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

/* top & bottom */
.hex::before,
.hex::after {
  content: "";
  position: absolute;
  width: 0;
  border-left: 95px solid transparent;
  border-right: 95px solid transparent;
}

.hex::before {
  bottom: 100%;
  border-bottom: 55px solid #161616;
}

.hex::after {
  top: 100%;
  border-top: 55px solid #161616;
}

/* ---------- HOVER ---------- */

.hex:hover {
  background: #1d1d1d;
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
  color: #ffffff;
}

.hex:hover::before {
  border-bottom-color: #1d1d1d;
}

.hex:hover::after {
  border-top-color: #1d1d1d;
}

/* ---------- STAGGER ---------- */

.honeycomb .hex:nth-child(even) {
  margin-top: 110px;
}
.expo-sectors {
  position: relative;
  padding: 160px 0;
  overflow: hidden;
  color: #fff;
}

/* background image */
.expo-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* dark overlay */
.expo-sectors::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1;
}

/* content above */
.expo-sectors .container {
  position: relative;
  z-index: 2;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 768px) {
  .hex {
    width: 160px;
    height: 92px;
  }

  .hex::before,
  .hex::after {
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
  }

  .hex::before {
    border-bottom: 46px solid #161616;
  }

  .hex::after {
    border-top: 46px solid #161616;
  }

  .honeycomb .hex:nth-child(even) {
    margin-top: 92px;
  }
}

/* ================= EXPO VISION ================= */

.expo-vision {
  padding: 160px 0;
  background: #0f0d0b; /* slightly lighter than pure black */
  color: #fff;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

/* IMAGE */
.vision-image img {
  width: 70%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.65);
}

/* TEXT */
.vision-content h2 {
  font-size: 42px;
  color: var(--gold);
  margin-bottom: 28px;
  line-height: 1.2;
}

.vision-content p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 22px;
  max-width: 560px;
}

/* KEYWORDS */
.vision-keywords {
  display: flex;
  gap: 18px;
  margin-top: 34px;
}

.vision-keywords span {
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 10px 18px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.05);
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .vision-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .vision-content {
    text-align: center;
  }

  .vision-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .vision-keywords {
    justify-content: center;
    flex-wrap: wrap;
  }
}
/* ===== VISION IMAGE FRAME ===== */

.vision-image {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
}

/* image itself */
.vision-image img {
  width: 100%;
  display: block;
  border-radius: 22px;
}

/* GOLD BORDER */
.vision-image::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1.5px;
  background: linear-gradient(
    135deg,
    rgba(212,175,55,0.9),
    rgba(255,215,120,0.6),
    rgba(212,175,55,0.9)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}

/* SOFT GOLD GLOW */
.vision-image::after {
  content: "";
  position: absolute;
  inset: -12px;
  background: radial-gradient(
    circle at center,
    rgba(212,175,55,0.18),
    transparent 70%
  );
  z-index: 0;
  pointer-events: none;
}

/* ================= CLEAN CTA (NO IMAGE) ================= */

.cta-section {
  padding: 140px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0b0a09; /* same as site background */
}

/* CTA box */
.cta-card {
  max-width: 900px;
  width: 100%;
  padding: 80px 40px;
  text-align: center;

  background: radial-gradient(
    circle at top,
    rgba(212,175,55,0.18),
    rgba(11,10,9,0.95)
  );

  border-radius: 28px;
  border: 1px solid rgba(212,175,55,0.35);

  box-shadow:
    0 0 0 1px rgba(212,175,55,0.05),
    0 30px 80px rgba(0,0,0,0.6);
}

/* headline */
.cta-card h2 {
  font-size: 40px;
  margin-bottom: 20px;
  line-height: 1.25;
  color: #ffffff;
}

/* text */
.cta-card p {
  font-size: 16px;
  color: #cfcfcf;
  max-width: 620px;
  margin: 0 auto 42px;
  line-height: 1.7;
}

/* button */
.cta-btn {
  display: inline-block;
  padding: 16px 48px;
  font-size: 15px;
  letter-spacing: 0.6px;
  text-decoration: none;

  color: #0b0a09;
  background: linear-gradient(
    135deg,
    #d4af37,
    #b9962f
  );

  border-radius: 999px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.5);
}

/* responsive */
@media (max-width: 768px) {
  .cta-card {
    padding: 60px 24px;
  }

  .cta-card h2 {
    font-size: 32px;
  }
}
/* ================= 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;
}
/* ================= MOBILE FIX (LOGO + NAV + HERO) — FORCE OVERRIDE ================= */
@media (max-width: 768px) {

  /* LOGO: center it on top */
  .brand-logo{
    position: fixed !important;
    top: 14px !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    z-index: 4000 !important;
    margin: 0 !important;
  }

  .brand-logo img{
    height: 78px !important;
    width: auto !important;
  }

  /* NAV: center under logo, wrap items */
  .floating-nav{
    position: fixed !important;
    top: 102px !important;          /* below logo */
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    z-index: 3500 !important;
    width: calc(100% - 24px) !important;
    display: flex !important;
    justify-content: center !important;
  }

  .nav-links{
    width: 100% !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 10px 12px !important;
    border-radius: 14px !important;
  }

  .nav-links a{
    font-size: 13px !important;
    line-height: 1.2 !important;
  }

  .nav-contact{
    margin-right: 0 !important;
    padding: 6px 12px !important;
  }

  /* HERO: add top space so it doesn't sit under fixed logo+nav */
  .about-hero{
    padding-top: 190px !important;   /* IMPORTANT clearance */
    padding-bottom: 60px !important;
    min-height: unset !important;
  }

  .about-hero h1{
    font-size: 32px !important;
    line-height: 1.25 !important;
  }

  .about-hero p{
    font-size: 15px !important;
  }

  .about-hero-divider{
    margin-top: 28px !important;
    width: 120px !important;
  }
}

/* extra small phones */
@media (max-width: 420px) {
  .brand-logo img{ height: 70px !important; }
  .floating-nav{ top: 96px !important; }
  .nav-links{ gap: 8px !important; }
  .about-hero{ padding-top: 180px !important; }
}

/* ===============================
   HEX CONTENT STACKING
   =============================== */

.hex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px; /* space between title & button */
}

/* ===============================
   HEX TITLE (NO CHANGE IN COLOR)
   =============================== */

.hex span {
  color: #d6b36a;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

/* ===============================
   HEX BUTTON (UNDER TITLE)
   =============================== */

.hex-btn {
  padding: 4px 14px;
  font-size: 11px;
  font-family: inherit;
  color: #d6b36a;
  background: transparent;
  border: 1px solid rgba(214, 179, 106, 0.6);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.hex-btn:hover {
  background: rgba(214, 179, 106, 0.12);
  border-color: #d6b36a;
}

/* ===============================
   SECTOR CARD OVERLAY
   =============================== */

.sector-card-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 4, 3, 0.85);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.sector-card-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ===============================
   SECTOR CARD
   =============================== */

.sector-card {
  position: relative;
  background: linear-gradient(180deg, #141210 0%, #0c0a08 100%);
  border: 1px solid rgba(214, 179, 106, 0.25);
  border-radius: 18px;
  max-width: 420px;
  width: 90%;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
  animation: cardIn 0.35s ease;
}

@keyframes cardIn {
  from {
    transform: translateY(20px) scale(0.96);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* ===============================
   CARD IMAGE
   =============================== */

.sector-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* ===============================
   CARD CONTENT
   =============================== */

.sector-card-content {
  padding: 22px 24px 26px;
}

.sector-card-title {
  color: #d6b36a;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.sector-card-text {
  color: #cfc6b2;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ===============================
   EXAMPLES LIST
   =============================== */

.sector-card-examples {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sector-card-examples li {
  font-size: 13px;
  color: #b9a98f;
  padding-left: 16px;
  position: relative;
  margin-bottom: 6px;
}

.sector-card-examples li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #d6b36a;
}

/* ===============================
   CLOSE BUTTON
   =============================== */

.sector-card-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  color: #d6b36a;
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
}

.sector-card-close:hover {
  opacity: 1;
}

/* ===============================
   MOBILE OPTIMIZATION
   =============================== */

@media (max-width: 600px) {
  .sector-card-img {
    height: 160px;
  }

  .sector-card-title {
    font-size: 18px;
  }
}
