/* ==========================================================================
   DiasporaFest - Premium Styling
   ========================================================================== */

/* --- CSS Variables (Color Palette & Tokens) --- */
:root {
  /* Colors - Premium Palette */
  --primary: #A6192E;        /* Rosso Vino/Bordeaux */
  --primary-hover: #8B1527;
  --secondary: #F2A900;      /* Oro/Giallo Sole */
  --accent: #0033A0;         /* Blu Royal/Classic */
  
  /* Backgrounds */
  --bg-light: #F8F9FA;
  --bg-white: #FFFFFF;
  --bg-dark: #1A1A24;
  --bg-darker: #12121A;
  
  /* Text */
  --text-dark: #2C3E50;
  --text-light: #FFFFFF;
  --text-muted: #6C7A89;
  
  /* Typography */
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  
  /* Layout & Spacing */
  --header-height: 80px;
  --container-width: 1200px;
  --transition: all 0.3s ease;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* --- Base Reset --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* overflow-x: hidden rimosso per fix bug Safari su elementi position: fixed */
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
  /* overflow-x: hidden rimosso per fix bug Safari su elementi position: fixed */
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  /* overflow-x: hidden; rimosso per evitare che i menu a tendina vengano tagliati */
}

.section {
  padding: 5rem 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.text-center { text-align: center; }
.bg-light { background-color: var(--bg-light); }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--bg-white);
  box-shadow: 0 4px 15px rgba(166, 25, 46, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(166, 25, 46, 0.4);
}

.btn-outline {
  border: 2px solid var(--bg-white);
  color: var(--bg-white);
}

.btn-outline:hover {
  background-color: var(--bg-white);
  color: var(--primary);
  transform: translateY(-3px);
}

/* --- Header & Navbar --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: transparent;
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--bg-white);
  transition: var(--transition);
}

.logo img {
  height: 40px;
}

.header.scrolled .logo {
  color: var(--primary);
}

.nav-list {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--bg-white);
  position: relative;
  transition: var(--transition);
}

.header.scrolled .nav-link {
  color: var(--text-dark);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--secondary);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
  color: var(--primary);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-switcher {
  position: relative;
}

/* Custom Language Dropdown */
.lang-dropdown {
  position: relative;
  display: inline-block;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.1);
  color: var(--bg-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 12px;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  backdrop-filter: blur(5px);
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.header.scrolled .lang-btn {
  color: var(--text-dark);
  border-color: rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.05);
}

.header.scrolled .lang-btn:hover {
  background: rgba(0, 0, 0, 0.1);
}

.lang-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 5px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 5px 0;
  min-width: 90px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.lang-dropdown.active .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  padding: 8px 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s;
}

.lang-option:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--primary);
}

.lang-icon {
  transition: transform 0.3s;
}

.lang-dropdown.active .lang-icon {
  transform: rotate(180deg);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  width: 30px;
  height: 3px;
  background-color: var(--bg-white);
  border-radius: 3px;
  transition: var(--transition);
}

.header.scrolled .nav-toggle span {
  background-color: var(--text-dark);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-dark);
  text-align: center;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 26, 36, 0.9) 0%, rgba(0, 51, 160, 0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--bg-white);
  max-width: 800px;
  animation: fadeIn 1s ease-out forwards;
}

.hero-date {
  font-family: var(--font-heading);
  display: inline-block;
  background-color: rgba(242, 169, 0, 0.2);
  color: var(--secondary);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(242, 169, 0, 0.5);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.text-gradient {
  background: linear-gradient(to right, var(--secondary), #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- About Section --- */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.quote {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--primary);
  border-left: 4px solid var(--secondary);
  padding-left: 1.5rem;
  margin-top: 2rem;
  background: rgba(166, 25, 46, 0.05);
  padding: 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-bottom-color: var(--primary);
  box-shadow: var(--shadow-hover);
}

.stat-card:nth-child(3) {
  grid-column: span 2;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-weight: 500;
  color: var(--text-muted);
}

/* --- Activities Section --- */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.activity-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  padding: 2.5rem 2rem;
  text-align: left;
  position: relative;
  z-index: 1;
}

.activity-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 0;
  background: var(--primary);
  z-index: -1;
  transition: var(--transition);
}

.activity-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.activity-card:hover::before {
  height: 5px;
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  background: var(--bg-light);
  width: 80px; height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
}

.activity-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.activity-card:hover h3 {
  color: var(--primary);
}

/* --- Past Events / Posts Section --- */
.carousel-wrapper {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: var(--bg-white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: var(--transition);
}

.carousel-btn:hover {
  background: var(--primary);
  color: var(--bg-white);
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 2rem;
}

.next-btn {
  right: 2rem;
}

.carousel-container {
  display: flex;
  gap: 2rem;
  padding: 4rem 10vw; /* Padding that lets the cards start gracefully indented */
  overflow-x: auto; /* Enable horizontal scroll */
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory; /* Enable snapping */
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  /* Hide scrollbar for cleaner look (optional but recommended for carousels) */
  scrollbar-width: none; /* Firefox */
}
.carousel-container::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

.blog-post {
  display: flex;
  align-items: center;
  min-width: 800px; /* Force minimum width to prevent shrinking in flex container */
  max-width: 900px;
  background-color: var(--bg-white);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  scroll-snap-align: center; /* Snap cards to the center */
  flex-shrink: 0; /* Prevent flexbox from squishing the cards */
}

.blog-post_img {
  position: relative;
  min-width: 350px;
  max-width: 350px;
  height: 300px;
  transform: translateX(-4rem); /* Allows the image to pop out slightly to the left */
}

.blog-post_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.blog-post_img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  border-radius: var(--radius);
  opacity: 0.2;
}

.blog-post_info {
  padding-right: 1rem;
}

.blog-post_date span {
  display: inline-block;
  color: var(--text-muted);
  font-weight: 600;
  margin: 0.5rem 0.5rem 0.5rem 0;
}

.blog-post_title {
  font-size: 2.5rem;
  font-family: var(--font-heading);
  margin: 1rem 0 1.5rem;
  text-transform: uppercase;
  color: var(--accent);
}

.blog-post_info p {
  margin-bottom: 2rem;
  color: var(--text-dark);
}

@media(max-width: 1068px) {
  .blog-post {
    max-width: 800px;
  }
  .blog-post_img {
    min-width: 300px;
    max-width: 300px;
  }
}

@media(max-width: 868px) {
  .blog-post {
    max-width: 700px;
  }
  .blog-post_img {
      transform: translateX(-2rem);
  }
}

@media(max-width: 768px) {
  .blog-post {
    padding: 2.5rem;
    flex-direction: column;
  }
  .blog-post_info {
    padding-right: 0;
    padding-top: 1rem;
    text-align: center;
  }
  .blog-post_img{
    min-width: 100%;
    transform: translate(0, -4rem);
    margin-bottom: -3rem;
    height: 250px;
  }
}

/* --- Timeline Section (posts.html) --- */
.timeline {
  position: relative;
  max-width: 1300px; /* Increased from 1000px to allow wider cards on large screens */
  width: 95%; /* Make it responsive and occupy most of the container */
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: var(--secondary);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  border-radius: 2px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
  box-sizing: border-box;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-dot {
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: var(--primary);
  border: 4px solid var(--bg-white);
  top: 30px;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(242, 169, 0, 0.3);
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -10px;
}

.timeline-content {
  padding: 2rem;
  background-color: var(--bg-white);
  position: relative;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.timeline-content:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.timeline-date {
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timeline-title {
  font-family: var(--font-heading);
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  line-height: 1.2;
}

.timeline-img {
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.timeline-img img {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  background-color: #f0f0f0;
}

.timeline-body p {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.timeline-body ul {
  list-style-type: disc;
  margin-left: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.timeline-body li {
  margin-bottom: 0.5rem;
}

@media screen and (max-width: 768px) {
  .timeline::after {
    left: 31px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 15px;
  }
  .timeline-item:nth-child(even) {
    left: 0;
  }
  .timeline-item:nth-child(even) .timeline-dot,
  .timeline-item:nth-child(odd) .timeline-dot {
    left: 21px;
  }
}

/* --- Partners Section --- */
.partners-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.partner-item {
  background: var(--bg-white);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-dark);
  border: 1px solid #eaeaea;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  width: 200px; /* Fixed width for consistent cards */
}

@media screen and (max-width: 768px) {
  .partners-list {
    gap: 1rem; /* Reduce gap on mobile to fit two cards nicely */
  }
  .partner-item {
    width: calc(50% - 0.5rem); /* two columns on mobile with gap factored in */
    padding: 1rem 0.5rem; /* slightly less padding so text fits */
    font-size: 0.85rem; /* slightly smaller text */
  }
}

.partner-item img {
  max-width: 100%;
  height: 80px; /* Fixed height for logos */
  object-fit: contain;
  transition: var(--transition);
}

.partner-item:hover {
  border-color: var(--secondary);
  color: var(--primary);
  transform: translateY(-5px);
}

.partner-item:hover img {
  transform: scale(1.1);
}

/* --- Footer --- */
.footer {
  background-color: var(--bg-dark);
  color: var(--bg-white);
  padding-top: 4rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h3 {
  font-family: var(--font-heading);
  color: var(--secondary);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.footer-col p {
  color: #a0aab5;
  margin-bottom: 0.8rem;
}

.hashtags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hashtags span {
  background: rgba(255,255,255,0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.9rem;
  color: #a0aab5;
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  background-color: var(--bg-darker);
  color: #a0aab5;
  font-size: 0.9rem;
}

/* --- Responsive Layout --- */
@media screen and (max-width: 968px) {
  .hero-title { font-size: 3rem; }
  .about-container { grid-template-columns: 1fr; gap: 2rem; }

  /* Prevent text and sections from overflowing */
  .section { padding: 4rem 0; }
  .section-title { font-size: 1.5rem; word-wrap: break-word; overflow-wrap: break-word; }
  .section-subtitle { font-size: 0.95rem; }
  .about-text p { font-size: 1rem; }
  .quote { font-size: 1rem; padding: 1rem; }
  
  /* Stats: 3 in a row, compact */
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
  .stat-card { padding: 1rem 0.5rem; }
  .stat-card:nth-child(3) { grid-column: span 1; }
  .stat-number { font-size: 1.8rem; }
  .stat-label { font-size: 0.75rem; }
  
  /* Activities: single column to prevent overflow */
  .activities-grid { grid-template-columns: 1fr !important; gap: 1.2rem; }
  .activity-card { padding: 1.5rem; }
  .activity-card h3 { font-size: 1.1rem; }
  .activity-card p { font-size: 0.9rem; }
}

@media screen and (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  .hero-title { font-size: 2.2rem; }
  .hero-buttons { flex-direction: column; }
  
  .nav-menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    padding: 2rem 0;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    transition: top 0.4s ease-in-out, visibility 0s 0.4s; /* delay visibility hide until transition ends */
    visibility: hidden; /* Fully hidden when closed */
    pointer-events: none; /* Prevent ghost clicks */
    z-index: 999;
  }
  
  .nav-menu.show-menu {
    top: var(--header-height);
    visibility: visible; /* Show when open */
    pointer-events: auto; /* Re-enable clicks */
    transition: top 0.4s ease-in-out, visibility 0s 0s; /* show visibility immediately */
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    row-gap: 2rem;
  }

  .lang-menu {
    top: 100%;
    bottom: auto;
    margin-top: 10px;
  }
  
  /* Mobile Carousel Fixes — hide arrows, user swipes instead */
  .carousel-btn {
    display: none;
  }

  .carousel-container {
    padding: 2rem 1rem;
    gap: 1.5rem;
  }
  
  .blog-post {
    min-width: 80vw !important; /* Narrower so borders are visible on each side */
    max-width: 80vw !important;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
  }
  
  .blog-post_img {
    min-width: 100% !important;
    max-width: 100% !important;
    transform: none; /* Remove desktop pop-out */
    height: 220px;
    margin: 0;
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .blog-post_img::before {
    border-radius: var(--radius) var(--radius) 0 0;
  }
  
  .blog-post_info {
    padding: 1.5rem;
  }

  .blog-post_title {
    font-size: 1.4rem !important;
  }


  .nav-link {
    font-size: 1.5rem;
    color: var(--text-dark);
  }
  
  .nav-toggle { display: flex; }
  
  .nav-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .header .nav-toggle span {
    background-color: var(--bg-white);
  }
  .header.scrolled .nav-toggle span,
  .nav-menu.show-menu ~ .nav-toggle span {
    background-color: var(--text-dark);
  }
}