/* ═══════════════════════════════════════════════════════
   SAFAL KISWAHILI PRIZE — RED & WHITE THEME
   Shared stylesheet for ALL pages
   ═══════════════════════════════════════════════════════ */

/* ─── 1. RESET & BASE ─── */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f9f5f5;
  color: #2d2d2d;
  padding-top: 100px; /* Offset for fixed nav on inner pages */
}

/* Home page has NO padding-top — hero fills viewport */
body.home-page {
  padding-top: 0;
  background: #fff;
}

#more { display: none; }
h1 { font-size: 2.5rem; font-weight: 700; }
span { font-size: .9rem; color: #757373; }
h6 { font-size: 1.1rem; color: rgb(24, 24, 49); }

/* ═══════════════════════════════════════════════════════
   2. NAVIGATION (Default = Inner Pages — White BG)
   ═══════════════════════════════════════════════════════ */

nav {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  transition: height 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  border-top: 3px solid #b71c1c;
}

nav > a { display: flex; align-items: center; text-decoration: none; }
nav > a > img {
  height: 70px; width: auto; object-fit: contain;
  transition: height 0.3s ease;
}

nav.scrolled {
  height: 75px;
  background: #ffffff !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1) !important;
  border-top: 3px solid #b71c1c !important;
}
nav.scrolled > a > img { height: 50px; }

/* ─── 3. NAV MENU LINKS ─── */
.navigation { display: flex; align-items: center; }

.navigation .nav-menu {
  list-style: none; display: flex; align-items: center; gap: 4px;
}

.navigation .nav-menu > li { position: relative; }

.navigation .nav-menu > li > a {
  text-decoration: none; color: #2d2d2d; font-weight: 600;
  font-size: 0.85rem; letter-spacing: 0.5px; padding: 10px 16px;
  border-radius: 6px; transition: color 0.3s, background 0.3s;
  display: flex; align-items: center; gap: 6px; white-space: nowrap;
}

.navigation .nav-menu > li > a:hover {
  color: #b71c1c; background: rgba(183,28,28,0.08);
}

.navigation .nav-menu > li > a.active-link { color: #b71c1c; }

.navigation .nav-menu > li > a .arrow {
  font-size: 0.55rem; transition: transform 0.3s ease; margin-left: 2px;
}

/* ═══════════════════════════════════════════════════════
   4. DROPDOWN MENUS
   ═══════════════════════════════════════════════════════ */

.dropdown {
  position: absolute;
  top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 230px; background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border: 1px solid rgba(183,28,28,0.06);
  border-top: 3px solid #b71c1c;
  padding: 8px 0; opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 2000; list-style: none;
}

.dropdown::before {
  content: ""; position: absolute; top: -9px; left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 6px solid #b71c1c;
}

/* Show on hover — DESKTOP ONLY */
.navigation .nav-menu > li:hover > .dropdown {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.navigation .nav-menu > li:hover > a .arrow { transform: rotate(180deg); }

/* Hover bridge */
.navigation .nav-menu > li::after {
  content: ""; position: absolute; top: 100%; left: 0;
  width: 100%; height: 12px;
}

/* Dropdown items */
.dropdown li a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 22px; font-size: 0.88rem; font-weight: 500;
  color: #444; text-decoration: none; transition: all 0.25s ease;
}

.dropdown li a:hover {
  color: #b71c1c; background: rgba(183,28,28,0.06); padding-left: 28px;
}

.dropdown li a i {
  width: 18px; text-align: center; font-size: 0.85rem;
  color: #b71c1c; opacity: 0.6; transition: opacity 0.25s ease;
}

.dropdown li a:hover i { opacity: 1; }

.dropdown li.divider { height: 1px; background: #f0e0e0; margin: 6px 18px; }

/* ═══════════════════════════════════════════════════════
   5. MENU BUTTON & CLOSE — Hidden by Default
   ═══════════════════════════════════════════════════════ */

#menu-btn {
  width: 30px; height: 30px; cursor: pointer;
  display: none; /* Shown only on mobile via media query */
}

#menu-close,
.navigation .nav-menu > .fa-times {
  display: none; /* Shown only on mobile via media query */
}

/* ═══════════════════════════════════════════════════════
   6. HOME PAGE — HERO HEADER
   ═══════════════════════════════════════════════════════ */

.header {
  min-height: 80vh; width: 100%;
  background-image: linear-gradient(rgba(183,28,28,0.7), rgba(4,9,30,0.7));
  background-position: center; background-size: cover;
  position: relative;
}

/* Nav is transparent on home hero */
.header nav {
  background: transparent; box-shadow: none; border-top-color: transparent;
}

/* Home nav links = white on transparent */
.header nav .nav-menu > li > a { color: #ffffff; }

/* Scrolled nav on home = solid white */
.header nav.scrolled .nav-menu > li > a { color: #2d2d2d; }
.header nav.scrolled .nav-menu > li > a:hover {
  color: #b71c1c; background: rgba(183,28,28,0.08);
}
.header nav.scrolled .nav-menu > li > a.active-link { color: #b71c1c; }

/* Hero text */
.text-box {
  width: 90%; color: #fff; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  text-align: center;
}
.text-box h1 {
  font-size: 50px; font-family: 'Playfair Display', serif;
  letter-spacing: 3px;
}
.text-box h2 {
  font-size: 1.5rem; font-weight: 300;
  letter-spacing: 4px; margin-top: 10px; opacity: 0.9;
}
.text-box p { margin: 10px 0 40px; font-size: 14px; color: #fff; }

.hero-btn {
  display: inline-block; text-decoration: none; color: #fff;
  border: 1px solid #fff; padding: 12px 34px; font-size: 13px;
  background: transparent; cursor: pointer; transition: all 0.3s ease;
}
.hero-btn:hover { border-color: #b71c1c; background: #b71c1c; }

/* ═══════════════════════════════════════════════════════
   7. INNER PAGES — SUB-HEADER BANNER
   ═══════════════════════════════════════════════════════ */

.sub-header {
  height: 40vh; width: 100%;
  background-image: linear-gradient(rgba(183,28,28,0.75), rgba(183,28,28,0.75)),
    url('images/2025/2025-COVER.jpg');
  background-position: center; background-size: cover;
  text-align: center; color: #fff;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  margin-top: 0; /* No extra margin — body padding-top handles offset */
}

.sub-header h1 {
  font-size: 3rem; letter-spacing: 2px;
  font-family: 'Playfair Display', serif;
  text-shadow: 0 3px 15px rgba(0,0,0,0.25);
}

/* ═══════════════════════════════════════════════════════
   8. COURSE SECTION
   ═══════════════════════════════════════════════════════ */

.course {
  width: 80%; margin: auto; text-align: center; padding-top: 100px;
}
.course h1 { font-size: 36px; font-weight: 600; color: #b71c1c; }
.course p { color: #777; font-size: 14px; font-weight: 300; line-height: 22px; padding: 10px; }

.row { margin-top: 5%; display: flex; justify-content: space-between; }

.course-col {
  flex-basis: 31%; background: #fff3f3; border-radius: 10px;
  margin-bottom: 5%; padding: 20px 12px; transition: 0.5s;
}
.course-col h3 { text-align: center; font-weight: 600; margin: 10px 0; color: #b71c1c; }
.course-col:hover { box-shadow: 0 0 20px rgba(183,28,28,0.15); }
.course-col img { width: 50%; height: fit-content; }

/* ═══════════════════════════════════════════════════════
   9. EVENTS SECTION
   ═══════════════════════════════════════════════════════ */

.events { width: 80%; margin: 80px auto; }

.title { text-align: center; margin-bottom: 30px; }
.title h1, .title h3 { color: #b71c1c; }
.title h3 { font-size: 2.5rem; }

.line { width: 100px; height: 3px; background-color: #b71c1c; margin: 10px auto; }

.rows { display: flex; flex-wrap: wrap; justify-content: space-between; }

.cols {
  flex: 0 0 calc(30.33% - 20px); margin-bottom: 100px;
  text-align: center; background-color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1); border-radius: 10px;
  overflow: hidden; transition: transform 0.3s ease;
  border-top: 3px solid #b71c1c;
}
.cols:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(183,28,28,0.12); }
.cols img { width: 100%; height: auto; }
.cols h4 { font-size: 1.5rem; color: #b71c1c; margin: 20px 0; }
.cols p { margin: 0; padding: 0 20px; color: #555; }

.ctn {
  display: inline-block; padding: 10px 20px; background-color: #b71c1c;
  color: #fff; text-decoration: none; border-radius: 5px;
  margin-bottom: 20px; transition: background-color 0.3s ease;
}
.ctn:hover { background-color: #921616; }

/* ═══════════════════════════════════════════════════════
   10. EXPLORE SECTION
   ═══════════════════════════════════════════════════════ */

.explore {
  width: 100%; height: 100vh; background-color: #b71c1c;
  display: flex; justify-content: center; align-items: center; text-align: center;
}
.explore-content {
  max-width: 600px; padding: 40px; background-color: rgba(0,0,0,0.6);
  color: #fff; border-radius: 10px; box-shadow: 0 0 20px rgba(0,0,0,0.3);
}
.explore-content h1 { font-size: 5rem; margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.explore-content .line { width: 100px; height: 3px; background-color: #fff; margin: 0 auto 20px; }
.explore-content p { font-size: 1.2rem; margin-bottom: 30px; }
.explore-content .ctn { background-color: #b71c1c; }
.explore-content .ctn:hover { background-color: #921616; }

/* ═══════════════════════════════════════════════════════
   11. TOURS / CONTAINER SECTION
   ═══════════════════════════════════════════════════════ */

.container {
  max-width: 1200px; margin: 60px auto; padding: 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.content-col { width: 48%; padding: 20px; }
.content-col h1 { font-size: 3em; color: #b71c1c; margin-bottom: 20px; }
.content-col p { font-size: 1.2em; line-height: 1.6; color: #666; }
.image-col { width: 48%; display: flex; justify-content: center; }
.image-gallery { display: grid; grid-template-columns: repeat(2,1fr); grid-gap: 20px; }
.image-gallery img {
  max-width: 100%; height: auto; border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1); transition: transform 0.3s ease;
}
.image-gallery img:hover { transform: scale(1.1); }

/* ═══════════════════════════════════════════════════════
   12. REGISTRATION SECTION
   ═══════════════════════════════════════════════════════ */

#registration {
  padding: 6vw 8vw; background: linear-gradient(to right, #b71c1c, #921616);
  color: white; width: 100%; display: flex;
  flex-direction: column; justify-content: center; align-items: center;
}
#registration .reminder { max-width: 500px; text-align: center; }
#registration .reminder h1 { margin-bottom: 20px; font-size: 2.5rem; }
#registration .reminder .time { display: flex; justify-content: space-around; margin-top: 20px; }
#registration .reminder .time .date {
  text-align: center; padding: 10px 20px;
  background: rgba(255,255,255,0.2); backdrop-filter: blur(4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15); border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18); font-size: 1.1rem;
  font-weight: 600; margin: 0 5px;
}
#registration .reminder .time .date i { margin-bottom: 10px; font-size: 2rem; }

/* ═══════════════════════════════════════════════════════
   13. ABOUT PAGE
   ═══════════════════════════════════════════════════════ */

.about-us { width: 80%; margin: auto; padding-top: 60px; padding-bottom: 80px; }
.about-text p {
  color: #444; font-size: 16px; font-weight: 300;
  line-height: 1.8; margin-bottom: 20px; text-align: justify;
}
.partners-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
  gap: 30px; margin-top: 50px;
}
.partner-card {
  background: #fff; border-radius: 10px; padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  border-top: 4px solid #b71c1c; transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex; flex-direction: column; align-items: flex-start;
}
.partner-card:hover { transform: translateY(-8px); box-shadow: 0 10px 25px rgba(183,28,28,0.12); }
.partner-card img { max-width: 160px; max-height: 80px; object-fit: contain; margin-bottom: 20px; }
.partner-card h3 { color: #b71c1c; font-size: 1.3rem; margin-bottom: 15px; }
.partner-card p { font-size: 14.5px; color: #555; line-height: 1.6; margin-bottom: 15px; }
.partner-card a { color: #b71c1c; text-decoration: none; font-weight: 600; margin-top: auto; }
.partner-card a:hover { text-decoration: underline; color: #921616; }

/* ═══════════════════════════════════════════════════════
   14. FOOTER — RED & WHITE
   ═══════════════════════════════════════════════════════ */

footer {
  position: relative; background: #b71c1c; width: 100%;
  bottom: 0; left: 0; z-index: 10;
}
footer::before {
  content: ''; position: absolute; left: 0; top: 100px;
  height: 1px; width: 100%; background: rgba(255,255,255,0.2);
}
footer .content { max-width: 1250px; margin: auto; padding: 30px 40px 40px; }
footer .content .top {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 50px;
}
.content .top .logo-details { color: rgba(255,255,255,0.7); font-size: 30px; }

.content .top .media-icons { display: flex; }
.content .top .media-icons a {
  height: 40px; width: 40px; margin: 0 8px; border-radius: 50%;
  text-align: center; line-height: 40px; color: #fff; font-size: 17px;
  text-decoration: none; transition: all 0.4s ease;
  background: rgba(255,255,255,0.15);
}
.content .top .media-icons a:hover {
  background: #fff; color: #b71c1c; transform: translateY(-3px);
}

footer .content .link-boxes { width: 100%; display: flex; justify-content: space-between; }
footer .content .link-boxes .box { width: calc(100% / 5 - 10px); }

.content .link-boxes .box .link_name {
  color: #fff; font-size: 18px; font-weight: 400;
  margin-bottom: 10px; position: relative;
}
.link-boxes .box .link_name::before {
  content: ''; position: absolute; left: 0; bottom: -2px;
  height: 2px; width: 35px; background: rgba(255,255,255,0.5);
}
.content .link-boxes .box li { margin: 6px 0; list-style: none; }
.content .link-boxes .box li a {
  color: #fff; font-size: 14px; font-weight: 400;
  text-decoration: none; opacity: 0.8; transition: all 0.4s ease;
}
.content .link-boxes .box li a:hover { opacity: 1; text-decoration: underline; padding-left: 4px; }

.content .link-boxes .input-box { margin-right: 55px; }
.link-boxes .input-box input {
  height: 40px; width: calc(100% + 55px); outline: none;
  border: 2px solid rgba(255,255,255,0.3); background: #fefeff;
  border-radius: 4px; padding: 0 15px; font-size: 15px; color: #333; margin-top: 5px;
}
.link-boxes .input-box input::placeholder { color: #AFAFB6; font-size: 16px; }
.link-boxes .input-box input[type="button"] {
  background: transparent; color: #fff; border: 2px solid #fff;
  font-size: 18px; font-weight: 500; margin: 4px 0; cursor: pointer;
  transition: all 0.4s ease;
}
.link-boxes .input-box input[type="button"]:hover { background: #fff; color: #b71c1c; }

footer .bottom-details { width: 100%; background: rgba(0,0,0,0.1); }
footer .bottom-details .bottom_text {
  max-width: 1250px; margin: auto; padding: 20px 40px;
  display: flex; justify-content: space-between;
}
.bottom-details .bottom_text span,
.bottom-details .bottom_text a {
  font-size: 14px; font-weight: 300; color: #fff; opacity: 0.8; text-decoration: none;
}
.bottom-details .bottom_text a:hover { opacity: 1; text-decoration: underline; }
.bottom-details .bottom_text a { margin-right: 10px; }

/* ═══════════════════════════════════════════════════════
   15. UTILITY CLASSES
   ═══════════════════════════════════════════════════════ */

.hidden { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.show { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════
   16. RESPONSIVE — TABLET (900px)
   ═══════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  nav { height: 80px; padding: 0 4%; }
  nav > a > img { height: 55px; }
  body { padding-top: 80px; }
  body.home-page { padding-top: 0; }
  nav.scrolled { height: 65px; }
  nav.scrolled > a > img { height: 42px; }
  .navigation .nav-menu > li > a { font-size: 0.78rem; padding: 8px 10px; }
  .row { flex-direction: column; }
  footer .content .link-boxes { flex-wrap: wrap; }
  footer .content .link-boxes .input-box { width: 40%; margin-top: 10px; }
}

/* ═══════════════════════════════════════════════════════
   17. RESPONSIVE — MOBILE (768px)
   ═══════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  nav { height: 75px; padding: 0 4%; }
  nav > a > img { height: 50px; }
  body { padding-top: 75px; }
  body.home-page { padding-top: 0; }
  nav.scrolled { height: 60px; }
  nav.scrolled > a > img { height: 38px; }

  .sub-header { height: 200px; }
  .sub-header h1 { font-size: 2.2rem; }
  .text-box h1 { font-size: 28px; }
  .text-box h2 { font-size: 1rem; letter-spacing: 2px; }

  /* ── SHOW MENU BUTTON ── */
  #menu-btn { display: block !important; }

  /* ── SLIDE-OUT MOBILE PANEL ── */
  .navigation .nav-menu {
    position: fixed !important;
    top: 0; right: -100%;
    width: 300px; height: 100vh;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    padding: 80px 0 30px;
    gap: 0;
    box-shadow: -4px 0 30px rgba(0,0,0,0.18);
    transition: right 0.35s ease;
    z-index: 3000;
    overflow-y: auto;
    display: flex;
  }

  .navigation .nav-menu.active { right: 0; }

  /* ── SHOW CLOSE BUTTON ── */
  .navigation .nav-menu > .fa-times {
    display: block !important;
    position: absolute; top: 25px; right: 25px;
    font-size: 1.4rem; cursor: pointer; color: #2d2d2d;
  }

  /* ── MOBILE NAV LINKS ── */
  .navigation .nav-menu > li {
    width: 100%; border-bottom: 1px solid #f0e8e8;
  }

  .navigation .nav-menu > li > a {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    font-size: 1rem;
    border-radius: 0;
    color: #2d2d2d !important; /* Override home hero white */
  }

  .navigation .nav-menu > li > a:hover {
    color: #b71c1c !important;
    background: rgba(183,28,28,0.05);
  }

  .navigation .nav-menu > li > a.active-link {
    color: #b71c1c !important;
  }

  /* ── MOBILE DROPDOWN ACCORDION ── */
  .navigation .nav-menu > li > .dropdown {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none;
    border: none;
    border-radius: 0;
    min-width: 100%;
    background: #fdf5f5;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .navigation .nav-menu > li > .dropdown::before { display: none; }

  .navigation .nav-menu > li > .dropdown.open { max-height: 500px; }

  .dropdown li a {
    padding: 14px 24px 14px 44px;
    font-size: 0.92rem;
    border-bottom: 1px solid rgba(183,28,28,0.04);
  }
  .dropdown li a:hover { padding-left: 50px; }
  .dropdown li.divider { margin: 4px 24px; }

  /* Arrow rotation on mobile */
  .navigation .nav-menu > li > a .arrow.rotated {
    transform: rotate(180deg) !important;
  }

  /* DISABLE desktop hover on mobile */
  .navigation .nav-menu > li:hover > .dropdown {
    max-height: 0; transform: none !important;
  }
  .navigation .nav-menu > li:hover > a .arrow {
    transform: none;
  }

  /* Events / cols responsive */
  .cols { flex: 0 0 calc(50% - 20px); }

  /* Tours responsive */
  .container { flex-direction: column; }
  .content-col, .image-col { width: 100%; }
  .image-gallery { grid-template-columns: 1fr; }

  /* About responsive */
  .about-us { width: 90%; }
  .partners-grid { grid-template-columns: 1fr; }

  /* Footer responsive */
  footer .content .link-boxes .box { width: calc(100% / 3 - 10px); }
  footer .content .link-boxes .input-box { width: 60%; }
  .content .top .media-icons a { height: 35px; width: 35px; font-size: 14px; line-height: 35px; }
  .bottom-details .bottom_text span,
  .bottom-details .bottom_text a { font-size: 12px; }
}

/* ═══════════════════════════════════════════════════════
   18. RESPONSIVE — SMALL MOBILE (576px)
   ═══════════════════════════════════════════════════════ */

@media (max-width: 576px) {
  .cols { flex: 0 0 calc(100% - 20px); }
}

/* ═══════════════════════════════════════════════════════
   19. RESPONSIVE — 520px
   ═══════════════════════════════════════════════════════ */

@media (max-width: 520px) {
  footer::before { top: 145px; }
  footer .content .top { flex-direction: column; }
  .content .top .media-icons { margin-top: 16px; }
  footer .content .link-boxes .box { width: calc(100% / 2 - 10px); }
  footer .content .link-boxes .input-box { width: 100%; }
}

/* ═══════════════════════════════════════════════════════
   20. RESPONSIVE — 480px
   ═══════════════════════════════════════════════════════ */

@media (max-width: 480px) {
  .sub-header { height: 160px; }
  .navigation .nav-menu { width: 100%; }
  #registration { padding: 10vw 4vw; }
  #registration .reminder h1 { font-size: 2rem; }
  #registration .reminder .time { flex-wrap: wrap; }
  #registration .reminder .time .date { flex: 1 1 45%; margin-bottom: 10px; }
}



/* ═══════════════════════════════════════════
   LANGUAGE SWITCHER
   ═══════════════════════════════════════════ */

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 15px;
  margin-right: 10px;
}

.lang-btn {
  background: transparent;
  border: 2px solid rgba(183, 28, 28, 0.2);
  color: #888;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.lang-btn:hover {
  border-color: #b71c1c;
  color: #b71c1c;
}

.lang-btn.active {
  background: linear-gradient(135deg, #b71c1c, #d32f2f);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 3px 12px rgba(183, 28, 28, 0.25);
}

.lang-divider {
  color: #ccc;
  font-size: 0.8rem;
  user-select: none;
}

[data-lang-content="sw"] {
  display: none;
}

@media (max-width: 768px) {
  .lang-switch {
    position: absolute;
    top: 25px;
    left: 25px;
    margin: 0;
    z-index: 2001;
  }
}
