/* ================= Navbar ================= */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(234, 179, 8, 0.25);
}

/* Logo / Title */
/* ================= Competition Image ================= */
.competition-image {
  width: 90px;
  height: 90px;
  margin-bottom: 25px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(234, 179, 8, 0.25);
  box-shadow: 0 12px 25px rgba(0,0,0,0.35);
}

.competition-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay خفيف */
.competition-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.1),
    rgba(0,0,0,0.35)
  );
}


/* Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #f8fafc;
  font-size: 14px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #eab308;
}

/* underline hover */
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: #eab308;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Toggle button (mobile) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: #eab308;
  cursor: pointer;
}


/* ================= Floating Contact Button ================= */
.contact-fab {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 50;
}

/* Main Button */
.fab-main {
  background: linear-gradient(135deg, #6b8e23, #556b2f);
  color: #fff;
  border: none;
  padding: 14px 18px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.fab-main:hover {
  transform: scale(1.05);
}

/* Menu */
.fab-menu {
  position: absolute;
  bottom: 60px;
  right: 0;
  width: 160px;
  height: 160px;
  pointer-events: none;
}

/* Items */
.fab-item {
  position: absolute;
  width: 45px;
  height: 45px;
  background: #1b2d1b;
  color: #eab308;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Half circle positions */
.fab-item:nth-child(1) { bottom: 0; right: 60px; }
.fab-item:nth-child(2) { bottom: 40px; right: 40px; }
.fab-item:nth-child(3) { bottom: 60px; right: 0; }
.fab-item:nth-child(4) { bottom: 80px; right: -20px; }

/* Active State */
.contact-fab.active .fab-menu {
  pointer-events: auto;
}

.contact-fab.active .fab-item {
  opacity: 1;
  transform: scale(1);
}
