:root {
  --brand: #2d6df6;
  --brand-2: #2dc8f6;
  --dark: #0f172a;
  --muted: #64748b;
  --bg: #0b1022;
  --card: #0f1530;
  --radius: 1.25rem;
  --radius-full: 999px;
  --transition: all 1s ease;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: bold;
  background: #89672d;
  color: #fff;
}
.img-logo {
  width: 70px;
  height: auto;
}
.text-logo {
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
}
/* ====== NAVBAR ====== */
.navbar {
  position:sticky !important;
  top:0;
  right:0;
  z-index: 1000;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  background-color: rgba(35, 155, 182, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

/* Logo */
.navbar img {
  position: relative;
  top: 5px;
  right: 210px;
  width: 60px;
  height: auto;
}
@media (max-width: 992px) {
  .navbar img {
    display: block;
    position: absolute;
    right: 180px;
    margin-inline-end: 0.75rem;
  }
}

/* Brand text */
.navbar-brand {
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff !important;
  margin-inline-end: 4.5rem;
}

/* Links */
.navbar-nav .nav-link {
  font-weight: 500;
  color: #f0f4f8 !important;
  transition: var(--transition);
  border-radius: var(--radius);
  padding: 0.5rem 1rem;
}

.navbar-nav .nav-link:hover {
  color:#f9b43a !important;
}

/* Dropdown */
.dropdown-menu {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.dropdown-item {
  font-weight: 500;
  color: #222;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  transition: var(--transition);
}

.dropdown-item:hover {
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  color: #fff !important;
}

/* Submenu RTL fix */
.dropdown-submenu {
  position: relative;
}
.dropdown-submenu > .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: -0.25rem;
}
@media (min-width: 992px) {
  .dropdown-submenu:hover > .dropdown-menu {
    display: block;
  }
}

/* Navbar when scrolled */
.navbar.scrolled {
  background: rgba(0, 0, 0, 0.285) !important;
}

/* Toggler */
.navbar-toggler {
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler-icon {
  filter: invert(1);
}

.top-section {
  margin-top: 50px;
}
.join-card {
  background: #ae7e2b;
  border-radius: 20px;
  overflow: hidden;
}
.google-btn {
  background: #7c320c;
  color: #fff;
  border-radius: 30px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  margin-bottom: 25px;
  transition: 0.3s;
  width: 100%;
}
.google-btn:hover {
  background: #572208;
}
.form-control {
  background: transparent;
  border: 1px solid #7c320c;
  border-radius: 25px;
  padding: 10px 15px;
}
.form-control:focus {
  background: transparent;
  box-shadow: 0px 2px 25px 2px #7c320c;
}
.btn-create {
  width: 100%;
  border-radius: 25px;
  padding: 10px;
  background: #7c320c;
  border: none;
  transition: 0.3s;
}
.btn-create:hover {
  background: #572208;
}
label,
h6 {
  color: #f1e9dc;
}
select.form-control {
  background-color: #fff;
  color: #000;
}
.form-label {
  color: #453c2a !important;
}
a {
  color: black;
}
