

.custom-navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);

  width: 90%;
  max-width: 1200px; /* optional: keeps it nice on big screens */

  padding: 16px 3px;

   background: rgba(27, 54, 5, 0.86);
  border-radius: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  z-index: 1000;
}

.custom-footer {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);

  width: 90%;
  max-width: 1200px;
  padding: 16px 3px;

    background: rgba(27, 54, 5, 0.86);
  border-radius: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  z-index: 1000;
}

.footer-social-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.2rem; /* ~20% bigger */
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.footer-social-link:hover {
  text-decoration: none;
  transform: scale(1.1);
  opacity: 0.9;
}

/* Brand colors for each social icon */
.footer-social-link .bi-instagram {
  color: #E4405F;
}

.footer-social-link .bi-facebook {
  color: #1877F2;
}

.footer-social-link .bi-tiktok {
  color: #69C9D0;
}

.footer-social-link .bi-snapchat {
  color: #FFFC00;
}

.footer-social-link .bi-telegram {
  color: #0088cc;
}

.footer-social-link .bi-youtube {
  color: #FF0000;
}


.custom-navbar .navbar-brand {
  font-weight: 500;
}

.lang-flag {
  width: 36px;
  height: auto;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lang-flag:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}


.hero-cover {
  position: absolute;
  width: 100%;
  min-height: 100vh;
    inset: 0;

  height: 100svh; /* Safari-safe viewport height */
  display: block;

  object-fit: cover;       /* crop if needed */
  object-position: center; /* centered crop */

  /* very light filter (slightly dim for readability) */
  filter: blur(3px) opacity(0.7);
    z-index: -1;
}



.fustat-body {
    font-family: "Fustat", sans-serif;
}

.noto-sans-body {
    font-family: "Noto Sans", sans-serif;
}

h1, h2, h3 {
  color: #000;
  text-shadow: 0 3px 14px rgba(22, 49, 1, 0.55);
}

h1 {
  font-size: clamp(1.6rem, 3.6vw, 3rem);
  font-weight: 900;
  line-height: 1.25;
}

h2 {
  font-size: clamp(1.4rem, 3.4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.25;
}


h3 {
 font-size: clamp(1.2rem, 2.8vw, 2.2rem);
  font-weight: 600;
  line-height: 1.05;
  font-family: "IBM Plex Sans Arabic", sans-serif;
}


h4 {
  font-size: clamp(1.2rem, 3.4vw, 2.2rem);
  color: #070600; /* yellowish */
  text-shadow: 0 0px 20px rgb(236, 212, 0);
  font-weight: 400;
  line-height: 1.25;
  font-family: "IBM Plex Sans Arabic", sans-serif;
}


.logo {
  width: 200px;
  filter: invert();
}

.home-showcase {
  margin-top: 110px;
  margin-bottom: 110px;
}

.showcase-slide {
  height: clamp(220px, 52vh, 560px);
  object-fit: cover;
  object-position: center;
}

.content-card {
  background: rgba(255, 255, 255, 0.55);
  border-radius: 18px;
  backdrop-filter: blur(2px);
}

.placeholder-copy {
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  font-weight: 600;
  color: #1a1a1a;
}

.contact-outline-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 0.45rem 0.9rem;
  border: 2px solid #070600;
  border-radius: 999px;
  background: transparent;
  color: #070600;
  text-decoration: none;
  line-height: 1.2;
}

.contact-outline-btn:hover,
.contact-outline-btn:focus {
  color: #070600;
  text-decoration: none;
  background: transparent;
}

.food-marquee-wrap {
  height: 140px;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.45);
  padding: 8px;
  position: relative;
}

.food-marquee-inner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  animation: none;
}

.food-marquee-track {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  min-width: max-content;
  gap: 8px;
  will-change: transform;
}

.food-marquee-track:first-child {
  animation: foodTrackA 32s linear infinite;
}

.food-marquee-track:last-child {
  animation: foodTrackB 32s linear infinite;
}

.food-thumb {
  width: 160px;
  height: 120px;
  object-fit: cover;
  border-radius: 14px;
  flex-shrink: 0;
}

@keyframes foodTrackA {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes foodTrackB {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes logoGlow {
  0% {
    filter: drop-shadow(0 0 5px rgba(255, 230, 0, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 25px rgba(255, 230, 0, 0.9));
  }
  100% {
    filter: drop-shadow(0 0 5px rgba(255, 230, 0, 0.4));
  }
}

html, body {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}