: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;
  }
}

/* ================= ABOUT ORGANIZER ================= */
/* ================= ABOUT ORGANIZER ================= */

.about-organizer {
  padding: 140px 0;
}

/* container balance */
.organizer-grid {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 80px;
  align-items: center;
}

/* LEFT TEXT */
.organizer-text {
  text-align: left;
}

.organizer-text h2 {
  font-family: var(--font-head);
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 32px;
}

.organizer-text p {
  font-size: 15px;
  line-height: 1.9;
  color: #c8b6a2;
  margin-bottom: 22px;
  max-width: 520px;
}

/* RIGHT IMAGE */
.organizer-image {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

/* image itself */
.organizer-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* GOLD EDGE */
.organizer-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;

  background:
    linear-gradient(
      to bottom right,
      rgba(212,175,55,0.28),
      rgba(212,175,55,0.08) 45%,
      transparent 75%
    );

  box-shadow:
    inset 0 0 0 1px rgba(212,175,55,0.45),
    0 40px 80px rgba(0,0,0,0.6);

  pointer-events: none;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .organizer-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .organizer-text {
    text-align: center;
  }

  .organizer-text p {
    margin-left: auto;
    margin-right: auto;
  }
}
/* ================= ABOUT EXPO ================= */

.about-expo{
  /* page spacing */
  padding: 90px 0 80px;
}

.about-expo-inner{
  /* ✅ controlled width like your screenshot needs */
  width: min(1160px, calc(100% - 160px));
  margin: 0 auto;

  /* ✅ light-brown premium background */
  background: linear-gradient(
    135deg,
    #4a3022 0%,
    #3b251a 48%,
    #2a1912 100%
  );

  border-radius: 18px;
  border: 1px solid rgba(212,175,55,0.22);

  /* ✅ size control */
  padding: 48px 52px 34px;
  box-shadow: 0 35px 90px rgba(0,0,0,0.55);
  position: relative;
  overflow: hidden;
}

/* subtle glow (not yellow) */
.about-expo-inner::before{
  content:"";
  position:absolute;
  inset:-40% -30% auto -30%;
  height: 360px;
  background: radial-gradient(circle at 30% 30%,
    rgba(212,175,55,0.10),
    transparent 60%
  );
  pointer-events:none;
}

/* top layout: text left, image right */
.about-expo-top{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* TEXT */
.about-block h2{
  font-family: var(--font-head);
  font-size: 34px;
  line-height: 1.2;
  color: #e6c67a;
  margin: 0 0 16px;
  text-align: left;
}

.about-block p{
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.9;
  color: #e9ddc9;
  margin: 0 0 14px;
  text-align: left;
  max-width: 560px; /* keeps it tidy */
}

.about-block strong{
  color: #f1dfb8;
  font-weight: 600;
}

/* IMAGE + GOLDEN EDGE COVER */
.about-image{
  justify-self: end;
  width: 100%;
  max-width: 430px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;

  /* gold edge */
  border: 1px solid rgba(212,175,55,0.55);
  box-shadow: 0 24px 70px rgba(0,0,0,0.55);
}

.about-image img{
  display: block;
  width: 100%;
  height: 260px;          /* ✅ controlled height */
  object-fit: cover;
  transform: scale(1.02);
  filter: contrast(1.03) saturate(1.05);
}

/* subtle inner gold shine */
.about-image::after{
  content:"";
  position:absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(212,175,55,0.10),
      transparent 35%,
      rgba(0,0,0,0.18)
    );
  pointer-events:none;
}

/* ✅ STATS inside same panel */
.expo-metrics{
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(212,175,55,0.16);

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;

  position: relative;
  z-index: 1;
}

/* each stat */
.metric-item{
  text-align: left;
}

.metric-value{
  display:block;
  font-family: var(--font-head);
  font-size: 22px;
  color: #e6c67a;
  letter-spacing: 0.2px;
  margin-bottom: 6px;
}

.metric-label{
  display:block;
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(233,221,201,0.85);
  line-height: 1.4;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1100px){
  .about-expo-inner{
    width: min(1000px, calc(100% - 80px));
    padding: 42px 36px 30px;
  }

  .about-expo-top{
    grid-template-columns: 1fr;
  }

  .about-image{
    justify-self: start;
    max-width: 520px;
  }

  .expo-metrics{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px){
  .about-expo-inner{
    width: calc(100% - 32px);
    padding: 34px 18px 26px;
  }

  .about-block h2{
    font-size: 28px;
  }

  .about-image img{
    height: 220px;
  }

  .expo-metrics{
    grid-template-columns: 1fr;
  }
}
/* ================================
   WHAT THE EXPO DELIVERS – SECTION
   ================================ */

.expo-delivers {
  position: relative;
  padding: 110px 0 90px;
  background: url("images/expo-bg.jpg") center / cover no-repeat;
}

/* dark + gold overlay */
.expo-delivers::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(212,175,55,0.18), transparent 55%),
    linear-gradient(to bottom, rgba(8,6,5,0.85), rgba(8,6,5,0.95));
  z-index: 0;
}

.expo-delivers-inner {
  position: relative;
  z-index: 1;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 28px;
}

/* -------- TEXT BLOCK -------- */

.expo-delivers .about-block {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: left; /* IMPORTANT */
}

.expo-delivers h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  color: #e3c37a;
  text-align: center;
  margin-bottom: 22px;
}

.expo-delivers p {
  font-family: "Inter", sans-serif;
  font-size: 15.5px;
  line-height: 1.8;
  color: rgba(235,220,195,0.92);
  margin-bottom: 14px;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.about-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  font-size: 15px;
  color: rgba(235,220,195,0.9);
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d4af37;
  box-shadow: 0 0 12px rgba(212,175,55,0.5);
}

/* -------- HIGHLIGHT CARDS -------- */

.delivery-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.highlight-item {
  background: rgba(18, 14, 11, 0.65);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 18px;
  padding: 26px 20px;
  text-align: center;
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.highlight-item:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.45);
}

.highlight-number {
  display: block;
  font-size: 13px;
  letter-spacing: 2px;
  color: rgba(212,175,55,0.7);
  margin-bottom: 10px;
}

.highlight-text {
  font-size: 15px;
  font-weight: 500;
  color: #f1e6d3;
  line-height: 1.5;
}

/* -------- RESPONSIVE -------- */

@media (max-width: 1000px) {
  .delivery-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .delivery-highlights {
    grid-template-columns: 1fr;
  }

  .expo-delivers h2 {
    font-size: 34px;
  }
}
/* =========================================
   COFFEE & CHOCOLATE IN LIBYAN CULTURE
   ========================================= */

.culture-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

/* background image holder */
.culture-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.culture-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* dark + warm overlay */
.culture-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(210,170,120,0.25), transparent 55%),
    linear-gradient(to bottom, rgba(10,7,5,0.82), rgba(10,7,5,0.94));
}

/* content layer */
.culture-content {
  position: relative;
  z-index: 1;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 30px;
}

/* text block */
.culture-content .about-block {
  max-width: 700px;
}

.culture-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  color: #e2c27a;
  margin-bottom: 22px;
}

.culture-content p {
  font-family: "Inter", sans-serif;
  font-size: 15.5px;
  line-height: 1.9;
  color: rgba(240,225,200,0.92);
  margin-bottom: 16px;
}

/* subtle gold divider under title */
.culture-content h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 2px;
  margin-top: 14px;
  background: linear-gradient(to right, #d4af37, transparent);
}

/* responsive */
@media (max-width: 768px) {
  .culture-section {
    padding: 90px 0;
  }

  .culture-content h2 {
    font-size: 32px;
  }
}
 
/* ===== WHY NOW CTA (SAFE VERSION) ===== */

.cta-why-now {
  width: 100%;
  padding: 100px 0;
  background: linear-gradient(135deg, #4b2e1e 0%, #1a0f08 75%);
}

.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

/* TEXT */
.cta-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  color: #d4af37;
  margin-bottom: 26px;
}

.cta-text p {
  font-family: "Inter", sans-serif;
  font-size: 15.5px;
  line-height: 1.9;
  color: #e6d9c6;
  margin-bottom: 18px;
  max-width: 520px;
}

/* BUTTONS */
.cta-buttons {
  margin-top: 34px;
  display: flex;
  gap: 18px;
}

.cta-btn {
  padding: 14px 34px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  transition: all 0.25s ease;
}

.cta-btn.primary {
  background: #d4af37;
  color: #1a0f08;
}

.cta-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212,175,55,0.35);
}

.cta-btn.secondary {
  border: 1px solid #d4af37;
  color: #d4af37;
}

.cta-btn.secondary:hover {
  background: rgba(212,175,55,0.15);
}

/* IMAGE */
.cta-visual {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.55);
  border: 1px solid rgba(212,175,55,0.5);
}

.cta-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* ================= 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;
}