:root {
  --gold: #c9a23f;
  --gold-dark: #9c7c24;
  --brown: #3d2f0f;
  --bg-light: #fffdf7;
  --bg-mid: #f3ead3;
  --bg-dark: #efe3c1;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Cairo', sans-serif;
  color: var(--brown);
}

/* BACKGROUND */
.page-bg {
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.85), transparent 60%),
    linear-gradient(180deg, var(--bg-light), var(--bg-mid), var(--bg-dark));
}

/* CONTAINER */
.container {
  max-width: 420px;
  margin: auto;
  padding: 12px;
}

/* HEADER */
.header {
  position: relative;
  text-align: center;
  padding: 30px 16px;
  border-radius: 26px;
  background: linear-gradient(180deg, #f7f2e3, rgba(255,255,255,0.55));
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  margin-bottom: 22px;
}

/* FLOAT ICONS */
.float-icon { position: absolute; top: 14px; z-index: 10; }
.float-icon.left { left: 14px; }
.float-icon.right { right: 14px; }

.float-main {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #dcbf70, #9c7c24);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

.float-icon.active .float-main {
  box-shadow: 0 0 0 3px rgba(201,162,63,0.4);
}

.float-icons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: 0.3s;
}

.float-icon.active .float-icons {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.float-icons a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.18);
  text-decoration: none;
}

.float-icons a i {
  color: var(--gold-dark);
  transition: 0.3s;
}

.float-icons a:hover {
  background: linear-gradient(135deg, #caa63a, #b08d2f);
}

.float-icons a:hover i { color: #fff; }

/* LOGO */
.logo-3d { width: 200px; margin: 0 auto -8px; }
.logo-3d img { width: 100%; }

/* TEXT */
.brand-en { font-size: 30px; font-weight: 800; color: var(--gold-dark); }
.brand-ar { font-size: 24px; font-weight: 700; color: var(--gold-dark); }
.tagline { font-size: 11px; letter-spacing: 4px; color: #6e5a2a; }

/* VIDEOS */
.video-circles {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 20px 0;
}

.circle-video {
  width: 200px;
  height: 230px;
  border-radius: 18px;
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.circle-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* MENU */
.menu-header { text-align: center; margin: 10px 0 24px; }
.menu-title { font-size: 20px; letter-spacing: 3px; color: var(--gold-dark); }
.menu-divider {
  position: relative;
  width: 120px;
  height: 10px;
  margin: 10px auto 0;
}

.menu-divider::before,
.menu-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 45%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold));
}

.menu-divider::after {
  right: 0;
  background: linear-gradient(to left, transparent, var(--gold));
}

.menu-divider span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, #e7c96b, #9c7c24);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* GRID */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(64px, 1fr));
  gap: 16px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255,255,255,0.45);
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.category-item { text-align: center; cursor: pointer; }
.category-link{
  text-decoration: none !important;
  color: inherit !important;
}

.category-link:visited,
.category-link:hover,
.category-link:active,
.category-link:focus{
  text-decoration: none !important;
  color: inherit !important;
}

/* 🔷 FLAT-TOP HEXAGON (ظاهر من الأول) */
.category-circle{
  width:72px;
  height:72px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  color:var(--gold-dark);

  /* 👇 الدائرة */
  border-radius:50%;
  background:#f8f2e4;
  border:2px solid var(--gold);

  transition:0.3s ease;
}

/* HOVER */
.category-item:hover .category-circle{
  background:linear-gradient(135deg,#caa63a,#9c7c24);
  color:#fff;
  transform:translateY(-4px) scale(1.08);
}

/* BORDER HEXAGON */


/* INNER FILL */



/* HOVER = CHANGE FILL ONLY */
.category-item:hover .category-circle::after {
  background: linear-gradient(135deg, #caa63a, #9c7c24);
}

.category-item:hover .category-circle {
  color: #fff;
  transform: translateY(-4px) scale(1.08);
}



.category-item p {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #5a4a1c;
}

/* CROISSANT */
.croissant-icon svg { transform: scale(1.15); }

/* FOOTER */
.footer-brand {
  margin-top: 50px;
  padding: 40px 20px 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(243,234,211,0.9));
  border-top: 1px solid rgba(201,162,63,0.4);
}
.footer-divider {
  position: relative;
  width: 140px;
  height: 10px;
  margin: 0 auto 20px;
}

.footer-divider::before,
.footer-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 45%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold));
}

.footer-divider::after {
  right: 0;
  background: linear-gradient(to left, transparent, var(--gold));
}

.footer-divider span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  background: radial-gradient(circle, #e7c96b, #9c7c24);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.footer-inner { text-align: center; }

.footer-logo img { width: 160px; margin-bottom: 12px; }

.footer-company-ar {
  font-size: 16px;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 14px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-item {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: #6e5a2a;
}

.footer-item i { color: var(--gold); }

.footer-copy {
  margin-top: 18px;
  font-size: 12px;
  letter-spacing: 1px;
  color: #8b7534;
}

/* DESKTOP */
@media (min-width: 768px) {
  .container { max-width: 1100px; padding: 30px; }
  .header { padding: 50px 40px; }
  .video-circles { gap: 40px; }
  .circle-video { width: 500px; height: 450px; }
  .category-grid { grid-template-columns: repeat(5, 1fr); padding: 30px; }
  .footer-info { flex-direction: row; justify-content: center; gap: 30px; }
}
