.app-header{
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 12px 10px;
  background: linear-gradient(
    180deg,
    #f5f9ff 0%,
    #eef6ea 60%,
    #e8f3e5 100%
  );
  border-bottom: 1px solid #d8e5d2;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  flex: 0 0 auto;
}

#venueSplash {
  display: none;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #111;
  background-image: var(--venue-splash-image);
  background-size: cover;
  background-position: center;
  z-index: 10000;
  opacity: 1;
  transform: scale(1.02);
  pointer-events: auto;
  transition:
    opacity 0.6s ease-in-out,
    transform 2s ease;
}

html.has-venue-splash body {
  overflow: hidden;
}

html.has-venue-splash #venueSplash {
  display: block;
}

#venueSplash.fade-out {
  opacity: 0;
  transform: scale(1.06);
  pointer-events: none;
}

.app-title-row{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
}

.app-logo{
  width:30px;
  height:30px;
  display:block;
}

.site-name{
  font-size:18px;
  font-weight:700;
  color:#2a4f2a;
  text-shadow:0 1px 1px rgba(255,255,255,0.7);
}

.site-name-link{
  text-decoration:none;
}

.nav-row{
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
}

.nav-btn{
  padding:8px 14px;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
  font-size:14px;
  color:#fff;
  box-shadow:
    0 2px 5px rgba(0,0,0,0.12);
  transition:
    transform 0.08s ease,
    box-shadow 0.08s ease,
    filter 0.08s ease;
}
  transition:
    transform 0.08s ease,
    box-shadow 0.08s ease,
    filter 0.08s ease;
}

.nav-btn:hover{
  filter:brightness(1.05);
}

.nav-btn:active{
  transform:translateY(1px);
  box-shadow:
    0 1px 2px rgba(0,0,0,0.18),
    inset 0 1px 2px rgba(0,0,0,0.15);
}

.nav-btn.active{
  opacity: 1;
  outline: none;
}

.nav-btn.active::after {
  content: "";
  position: absolute;
  left: 20%;
  right: 20%;
  bottom: 4px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.95);
}

.nav-btn.events{
  background-color:#d94b4b;
}

.nav-btn.eatdrink{
  background-color:#2f8f4e;
}

.nav-btn.discover{
  background-color:#3a6fd8;
}

.nav-btn.walks{
  background-color:#8a5cf6;
}

.nav-btn.myday {
  background-color:#444;
}
.nav-btn.myday.active {
  filter: brightness(1.1);
}
/* Floating Feedback Button */
.feedback-fab {
  position: fixed;
  bottom: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  z-index: 9999;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.feedback-fab:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(0,0,0,0.3);
}
/* ===== Event Cards Polish ===== */

.card {
  margin-bottom: 14px;
  padding: 10px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.22);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.card-main {
  width: 100%;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.card .content {
  padding-top: 6px;
  flex: 1;
  min-width: 0;
}

.card .title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.card .line {
  font-size: 13px;
  color: #555;
  margin: 2px 0;
}

.card .btns {
  margin-top: 8px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.card-wide-btns {
  flex-basis: 100%;
  width: 100%;
  padding-top: 8px;
  display: flex;
  gap: 6px;
  flex-wrap: nowrap;
  overflow-x: auto;
  align-items: center;
}

.card-wide-btns .btn {
  white-space: nowrap;
  min-height: auto;
}

.img {
  border-radius: 12px;
}

@media (max-width: 520px) {

  .nav-row {
    gap: 7px;
  }

  .nav-btn {
    padding: 7px 11px;
    border-radius: 9px;
    font-size: 13px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
  }

  .app-header {
    padding: 10px 8px 8px;
  }

  .app-title-row {
    margin-bottom: 8px;
  }

  .card-main {
    gap: 10px;
  }

  .card-wide-btns {
    width: 100%;
    display: flex;
    gap: 6px;
    flex-wrap: nowrap;
  }

  .card-wide-btns .btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 9px 6px !important;
    font-size: 12px !important;
    text-align: center;
    white-space: nowrap;
  }
}
