/* ─── Header ─── */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: all 0.4s ease;
}

header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  height: 65px;
}

/* ─── Logo ─── */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--black);
  flex-shrink: 0;
}

.logo-text { line-height: 1.1; }
.logo-ar {
  font-family: 'Tajawal', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--gold);
}
.logo-sub {
  font-size: 10px;
  color: var(--gray);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ─── Navigation ─── */
nav {
  display: flex;
  gap: 36px;
  align-items: center;
}

nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.3s;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

nav a:hover { color: var(--gold); }
nav a:hover::after { width: 100%; }

/* ─── CTA Nav Button ─── */
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black) !important;
  padding: 10px 24px;
  border-radius: 2px;
  font-weight: 700 !important;
  transition: all 0.3s !important;
  transform: skewX(-5deg);
}
.nav-cta:hover {
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.4) !important;
  transform: skewX(-5deg) translateY(-2px) !important;
}
.nav-cta::after { display: none !important; }

/* ─── Hamburger ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
