/* ROOT VARIABLES */
:root {
  --color-bg: #1a1a1a;               /* deep mountain night */
  --color-fg: #e8e6e3;               /* parchment text */
  --color-accent: #28a675;          /* evergreen */
  --color-highlight: #6ba3cc;       /* river blue */
  --color-wood: #a9744f;            /* wood grain */
  --color-muted: #555;              /* dimmed text */
  --color-btn: #28a675;
  --color-btn-hover: #4e7d52;
  --font-main: 'Georgia', serif;
  --font-alt: 'Helvetica Neue', sans-serif;
}

/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-fg);
  line-height: 1.6;
  scroll-behavior: smooth;
  font-size:16px;
}
a {
  color: var(--color-highlight);
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

a:visted {
  color: var(--color-highlight);
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* HEADER */
.site-header {
  background-color: var(--color-wood);
  color: #fff;
  padding: 1rem 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}



/*
.site-header {
  background:
    linear-gradient(
      rgba(0, 0, 0, 0.9),
      rgba(255, 255, 255, 0.5)
    ),
    url('../assets/images/woodgrain.png');
  background-repeat: repeat;
  background-size: cover;
  background-blend-mode: overlay;
  background-position: center;
  background-color: var(--color-wood);
  color: #fff;
  padding: 1rem 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}
*/



.logo {
  width:360px;
  height:auto;
}
.main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 0.5rem;
  font-weight:bold;
}
.main-nav a {
  font-family: var(--font-alt);
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}
.main-nav a:hover {
  color: var(--color-highlight);
}


/* === STANDARDIZED PAGE BANNER STYLES === */
#indexBanner,
#directoryBanner,
#aboutBanner,
#registerBanner,
#eventsBanner {
  background-color: #000; /* fallback */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  text-align: center;
  padding: 6rem 2rem;
}

/* === Unique Banner Backgrounds with Gradient Overlay === */
#indexBanner {
  background:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
    url('../assets/images/mountains_vertical.png') center/cover no-repeat;
}

#directoryBanner {
  background:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
    url('../assets/images/water2.png') center/cover no-repeat;
      background-position: center 55%;
}

#aboutBanner {
  background:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
    url('../assets/images/forest.png') center/cover no-repeat;
}

#registerBanner {
  background:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
    url('../assets/images/path.png') center / cover no-repeat;
}

#eventsBanner {
  background:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
    url('../assets/images/fires.png') center / cover no-repeat;
}







.hero h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #28a675;
  color: #fff;
  padding: 0.7em 1.8em;
  font-size: 1em;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn:hover,
.btn:focus {
  background-color: #1f7857;
  color: #fff;
  text-decoration: none;
}

.btn-sm {
  font-size: 0.9em;
  padding: 0.5em 1.4em;
  border-radius: 25px;
}
/* SECTIONS */
.section {
  padding: 4rem 0;
}
.section h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--color-accent);
}
.section p, .section ul {
  max-width: 800px;
  font-size: 1rem;
  color: var(--color-fg);
}
.section ul {
  padding-left: 1.2rem;
}
.section li {
  margin-bottom: 0.6rem;
}

/* FORMS */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"],
textarea,
select {
  background-color: #2a2a2a;
  color: #fff;
  border: 1px solid var(--color-muted);
  padding: 0.75rem;
  border-radius: 4px;
}

input::placeholder,
textarea::placeholder {
  color: var(--color-muted);
}

/* FOOTER */
.site-footer {
  background-color: #111;
  text-align: center;
  padding: 2rem 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .main-nav ul {
    flex-direction: column;
    align-items: center;
  }
  .hero h2 {
    font-size: 1.6rem;
  }
}

/* === ENHANCEMENTS & MOBILE FIRST TUNING === */

/* Typography improvements */
body {
  font-size: 16px;
}

h1, h2, h3 {
  line-height: 1.3;
  letter-spacing: 0.5px;
}

/* Smooth spacing for mobile */
.section {
  padding: 3rem 1rem;
}
.container {
  padding: 1.5rem 1rem;
}

/* Improved nav spacing for small screens */
@media (max-width: 768px) {
  .main-nav ul {
    padding: 1rem 0;
    gap: 0.8rem;
  }
  .main-nav a {
    font-size: 1.1rem;
  }
}

/* Hero gradient fallback + flexibility */
.hero {
  text-align: center;
  padding: 5rem 1.5rem;
}

/* Fluid heading for mobile */
.hero h2 {
  font-size: clamp(1.6rem, 5vw, 2.4rem);
}

/* Better button tap target */
.btn {
  padding: 1rem 2rem;
  font-size: 1rem;
  margin-top: 1rem;
}

/* Soft fade-in for hero content */
.hero .container {
  animation: fadeIn 1s ease-in;
}

/* Glow link effect */
a:hover {
  text-shadow: 0 0 4px var(--color-highlight);
}

/* Soft form shadows and focus glow */
input[type="text"],
input[type="email"],
textarea {
  box-shadow: 0 0 0 1px transparent;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
input:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-highlight);
  box-shadow: 0 0 6px var(--color-highlight);
}

/* Light gradient footer */
.site-footer {
  background: linear-gradient(to top, #111, #1a1a1a);
}

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






/* Alert Styles */
.alert {
  padding: 15px 20px;
  margin: 20px auto;
  margin-top:50px;
  border-radius: 6px;
  font-size: 1.1rem;
  border: 1px solid #b79e7c;
  background: #f9f6f2;
  color: #5a4431;
  box-shadow: 0 2px 6px rgba(50, 40, 24, 0.05);
  width:90%;
  max-width:450px;
}
.alert-success {
  border-color: #8d703d;
  background: #f0eadf;
  color: #3a2509;
}
.alert-error {
  border-color: #be4b31;
  background: #fbe9e7;
  color: #942100;
}







/* === DEEP UI IMPROVEMENTS AND ACCESSIBILITY === */

/* Global spacing & readability upgrades */
body {
  line-height: 1.75;
  font-size: 1rem;
  font-kerning: normal;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Section transition enhancements */
.section {
  position: relative;
  z-index: 1;
}
.section::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--color-accent), transparent);
  opacity: 0.2;
}

/* Add decorative hover on cards/buttons */
a.btn {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
a.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Improve UL link list appearance */
.section ul {
  list-style-type: none;
  padding-left: 0;
}
.section ul li {
  margin: 0.5rem 0;
  font-size: 1.05rem;
  padding-left: 1.2rem;
  position: relative;
}
.section ul li::before {
  content: "➤";
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

/* Enhanced form visuals */
input, textarea {
  font-family: var(--font-alt);
  font-size: 1rem;
}
input:focus,
textarea:focus {
  border-color: var(--color-accent);
}

/* Responsive enhancements */
@media (max-width: 600px) {
  .hero {
    padding: 3.5rem 1rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
}

/* Add section background visuals */
.section.about {
  background: linear-gradient(to bottom, #1a1a1a, #151515);
}
.section.join {
  background: radial-gradient(circle at top left, #2d2d2d, #1a1a1a);
}

.section.resources {
  background: linear-gradient(to bottom, #1a1a1a, #151515);
}
/*
.section.resources {
  background-image: url('/assets/images/bg-scroll-texture.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}*/

/* Section transitions (optional with JS) */
.section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.section.visible {
  opacity: 1;
  transform: translateY(0);
}



















/* === DEEP UI IMPROVEMENTS AND ACCESSIBILITY === */

/* Global spacing & readability upgrades */
body {
  line-height: 1.75;
  font-size: 1rem;
  font-kerning: normal;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Section transition enhancements */
.section {
  position: relative;
  z-index: 1;
}
.section::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--color-accent), transparent);
  opacity: 0.2;
}

/* Add decorative hover on cards/buttons */
a.btn {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
a.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Improve UL link list appearance */
.section ul {
  list-style-type: none;
  padding-left: 0;
}
.section ul li {
  margin: 0.5rem 0;
  font-size: 1.05rem;
  padding-left: 1.2rem;
  position: relative;
}
.section ul li::before {
  content: "➤";
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

/* Enhanced form visuals */
input, textarea {
  font-family: var(--font-alt);
  font-size: 1rem;
}
input:focus,
textarea:focus {
  border-color: var(--color-accent);
}

/* Responsive enhancements */
@media (max-width: 600px) {
  .hero {
    padding: 3.5rem 1rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
  .logo {
    width:300px;
    height:auto;
  }
}

/* Add section background visuals */
.section.about {
  background: linear-gradient(to bottom, #1a1a1a, #151515);
}
.section.join {
  background: radial-gradient(circle at top left, #2d2d2d, #1a1a1a);
}
.section.resources {
  background-image: url('/assets/images/scrollbg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Section transitions (optional with JS) */
.section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.section.visible {
  opacity: 1;
  transform: translateY(0);
}

.section.login .container {
  max-width: 500px;
  margin: 3rem auto;
  background: rgba(255,255,255,0.05);
  padding: 2rem;
  border-radius: 10px;
  color: var(--text-light);
  text-align: left;
}

.form-card input {
  width: 100%;
  padding: 10px;
  margin-bottom: 1.2rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: #111;
  color: #fff;
}

.error-box {
  background: #6b2d2d;
  padding: 1rem;
  border-radius: 8px;
  color: #fff;
  margin-bottom: 1rem;
}

/* ==== HEADER / NAV STYLING ==== */
.site-header {
  background-color: #1a1a1a;
  padding: 1em 0;
  border-bottom: 2px solid #3ac779;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo {
  height: 48px;
  width: auto;
}

/* Toggle Button (Mobile) */
.nav-toggle {
  display: none;
  font-size: 1.8em;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
}

/* Main Navigation */
.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.5em;
}

.main-nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease-in-out;
}

.main-nav ul li a:hover {
  color: #5be09a;
}

/* ==== MOBILE RESPONSIVENESS ==== */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    width: 100%;
    display: none;
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    background-color: #111;
    border-top: 1px solid #3ac779;
    margin-top: 1em;
    padding: 0.5em 0;
  }

  .main-nav ul li {
    padding: 0.6em 1em;
    text-align: center;
  }

  .main-nav ul li:not(:last-child) {
    border-bottom: 1px solid #333;
  }
}


.mini-events { margin:2.5em 0 2.2em 0; }
.mini-events-title { font-size:1.3em; margin-bottom:0.7em; color:#b8f7d8; font-weight:600;}
.mini-events-scroller-wrap { position:relative; }
.mini-events-scroller {
  display: flex; flex-wrap:nowrap; overflow-x: auto;
  gap: 1.3em; padding: 0.8em 0 0.6em 0;
  scroll-behavior:smooth;
}
.mini-event-card {
  display: flex; flex-direction:column; align-items:center;
  background: #233d32; border-radius: 11px; min-width: 210px; max-width: 210px; margin-bottom:0.5em;
  box-shadow:0 2px 10px #0004; color:#fff; text-decoration:none; padding:0 0 1.1em 0;
  transition:box-shadow .18s, transform .17s;
}
.mini-event-card:hover { box-shadow:0 4px 16px #0009; transform:translateY(-3px) scale(1.03);}
.mini-event-img { width:100%; height:90px; overflow:hidden; border-radius:11px 11px 0 0; background:#141a15;}
.mini-event-img img { width:100%; height:100%; object-fit:cover; border-radius:11px 11px 0 0; }
.mini-event-details { width:100%; padding:0.7em 0.8em 0 0.8em; text-align:center;}
.mini-event-title { font-size:1.1em; font-weight:700; color:#eafee9;}
.mini-event-date { color:#9fe2e2; margin-top:0.13em; font-size:1em; }
.mini-event-group { color:#cdf; margin-top:0.18em; font-size:0.99em;}
.mini-event-none { min-width:140px; color:#ddd; background:none; box-shadow:none; }

.mini-events-arrow {
  position:absolute; top:37%; transform:translateY(-50%);
  z-index:10; background:rgba(30,50,40,0.75); color:#9ec; border:none; border-radius:50%; width:40px; height:40px;
  font-size:2em; display:flex; align-items:center; justify-content:center; cursor:pointer;
  box-shadow:0 1px 8px #0007; transition:background .13s;
}
.mini-events-arrow.left { left:-20px;}
.mini-events-arrow.right { right:-20px;}
.mini-events-arrow:hover { background:#286e42; color:#fff;}
@media (max-width: 650px) {
  .mini-event-card { min-width: 79vw; max-width: 79vw;}
  .mini-events-arrow { width:35px; height:35px; font-size:1.3em; left:0; right:0; }
  .mini-events-arrow.left { left:0; }
  .mini-events-arrow.right { right:0; }
}

.mini-events-scroller {
  /* Hide horizontal scrollbar for a clean look */
  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;     /* IE/Edge */
}
.mini-events-scroller::-webkit-scrollbar {
  display: none;                /* Chrome, Safari, Opera */
}



.video-fullscreen-wrapper {
  display: flex;
  flex-direction: column;         /* Stack children vertically */
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 2rem 1rem;
  text-align: center;
  box-sizing: border-box;
}

.video-fullscreen-wrapper h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #fff;
}


.video-fullscreen-wrapper iframe {
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 8px;
  box-shadow: 0 0 20px #0006;
}


#indexBanner {
  color: white;
  position: relative;
  overflow: hidden;
  height: 100vh;             /* Full screen height */
  min-height: 560px;         /* Ensures full 16:9 video fits */
  max-height: 1000px;        /* Optional: prevent giant banners on big screens */
}


.banner-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.banner-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 3s ease-in-out;
}

.banner-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  z-index: 2;
}

@media (max-width: 600px) {
  #indexBanner {
    height: 80vh;
    min-height: 360px;
  }
}


.telegram-invite {
  padding: 3em 1em;
  text-align: center;
}

.telegram-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4em;
  max-width: 900px;
  margin: 0 auto;
}

.telegram-invite h3 {
  color: #28a675;
  font-size: 1.8em;
  margin-bottom: .4em;
}

.telegram-invite p {
  font-size: 1.05em;
  line-height: 1.6;
  max-width: 600px;
  color: #fff;
  margin: 0 auto;
}

.telegram-btn {
  display: inline-flex;
  text-align:center;
  border:0;
  align-items: center;
  background-color: #28a675;
  color: #fff;
  padding: 0.7em 1.8em;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1em;
  text-decoration: none;
  transition: background 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

button {text-align:Center;}
button:hover {cursor:pointer;}
.telegram-btn:hover {
  background-color: #1f7857;
}

@media (min-width: 700px) {
  .telegram-content {
    flex-direction: row;
    text-align: left;
  }
  .telegram-text {
    flex: 1.5;
  }
  .telegram-action {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}


.event-hero {
  min-height: 340px;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}
.event-hero-overlay {
  background: linear-gradient(120deg, rgba(30,36,44,0.98) 35%, rgba(40,60,64,0.82) 100%);
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  width: 100%;
  padding-top: 1.7em;
  padding-bottom: 1.7em;
}
.event-hero-content {
  color: #fff;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding-left: 1.7em;
  padding-right: 1.7em;
}
.event-title {
  font-size: 2.1em;
  font-weight: 800;
  margin-bottom: 0.32em;
  text-shadow: 0 3px 20px #000a;
}
.event-group {
  font-size: 1.2em;
  margin-bottom: 0.38em;
  color: #b8f3dc;
}
.event-datetime {
  font-size: 1.05em;
  color: #eefffe;
  margin-bottom: 0.21em;
}
.event-recurrence {
  font-size: 1.05em;
  color: #c9e6ee;
  margin-bottom: 0.21em;
}
.event-location {
  font-size: 1.09em;
  color: #dcf3f7;
  margin-bottom: 1em;
}
.btn-action {
  background: #2e6aa0;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.65em;
  padding: 0.61em 2.2em;
  border-radius: 5px;
}
.btn-action:hover {
  background: #24446a;
}
.event-register .btn-primary {
  background: #22a377;
  color: #fff;
  font-weight: 700;
  padding: 0.61em 2.2em;
  border-radius: 5px;
}
.event-details-section {
  background: #20292c;
  color: #f7fafc;
  padding: 2.5em 0 2.7em 0;
}
.event-details {
  max-width: 780px;
  margin: 0 auto;
  padding: 1.4em 1.1em;
}
.event-meta-list {
  font-size: 1.08em;
  color: #b8e7f0;
  margin-bottom: 1.2em;
}
.event-meta-list b { color: #9ff2c9; }
.event-description {
  font-size: 1.18em;
  color: #e8f6fc;
  margin-top: 1.4em;
  line-height: 1.7;
}
@media (max-width:700px) {
  .event-hero-content { padding: 0.7em; }
  .event-details { padding: 0.7em 0.1em; }
}


.events-feed { padding-top:1em; }
.events-list { display: grid; grid-template-columns:repeat(auto-fit, minmax(320px,1fr)); gap:2em; }
.event-card {
  background: #232c2c; color: #fff; border-radius: 14px; box-shadow: 0 2px 12px #0002;
  display: flex; flex-direction: column; min-height: 390px; position: relative;
  transition: box-shadow .16s; padding-bottom: 78px; overflow: visible;
}
.event-card:hover { box-shadow: 0 6px 24px #0006; }
.event-image { width: 100%; position: relative; height: 180px; border-radius: 14px 14px 0 0; overflow: hidden; }
.event-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px 14px 0 0; }
.event-badge {
  position: absolute; left: 1em; top: 1em; background: #326e58; color: #fff;
  font-size: 0.85em; padding: 0.18em 0.9em; border-radius: 12px; box-shadow: 0 2px 6px #0007;
  font-weight: 600; text-shadow: 0 1px 2px #000a;
}
.event-badge.online { background: #235e99; }
.event-badge.hybrid { background: #985e23; }
.event-badge.inperson { background: #326e58; }
.event-info { padding: 1.2em 1em 1em 1em; flex: 1; display: flex; flex-direction: column; gap: 0.6em; }
.event-title { font-size: 1.15em; margin: 0 0 0.2em 0; font-weight: 700; }
.event-meta { font-size: 0.97em; color: #aac; display: flex; flex-wrap: wrap; gap: 1.2em; }
.event-group-name { font-weight: 600; color: #9eecbc; }
.event-date { color: #ace; }
.event-location { color: #bee; font-size: 1em; }
.event-desc { margin-top: 0.3em; font-size: 1em; color: #ddf; line-height: 1.5; }

.event-actions {
  display: flex; gap: 0.7em; justify-content: flex-end; align-items: flex-end;
  position: absolute; right: 1.3em; bottom: 1.2em; left: unset; top: unset;
  background: none; z-index: 10;
}

/* SHARE BUTTON + DROPDOWN */
.dropdown-share { display: inline-block; position: relative; z-index: 20; }
.share-btn {
  display: flex; align-items: center; background: transparent; margin-left: 0;
  gap: 0.25em;
}
.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  top: 110%;  /* drops the menu below the button */
  background: #253032;
  min-width: 180px;
  box-shadow: 0 8px 32px #0005;
  border-radius: 8px;
  padding: 0.5em 0.7em;
  z-index: 9999;
  flex-direction: column;
}
.dropdown-share.open .dropdown-content { display: flex; }
.dropdown-content button,
.dropdown-content a {
  display: block;
  background: none;
  border: none;
  color: #bff2e5;
  text-align: left;
  width: 100%;
  padding: 0.45em 0.1em;
  cursor: pointer;
  font-size: 1em;
  margin: 0 0 0.4em 0;
  text-decoration: none;
  border-radius: 4px;
  transition: background .12s;
}
.dropdown-content button:hover,
.dropdown-content a:hover {
  background: #315f57;
  color: #fff;
}
@media (max-width:600px) {
  .events-list { grid-template-columns:1fr; gap:1.5em; }
  .event-card { min-height:0; }
  .event-info { padding:1em; }
  .event-actions { right: 0.7em; bottom: 0.7em; }
  .dropdown-content { min-width: 145px; }
}
.event-empty { color: #eee; font-size: 1.2em; text-align: center; padding: 2.2em; }

.mini-events-list { margin-top:0.8em; }
.mini-event {
  background:#263030;
  padding:0.7em 1em 0.7em 0.8em;
  margin-bottom:0.55em;
  border-radius:7px;
  box-shadow:0 2px 7px #0001;
}
