:root {
  --culture-green: #2ba63f;
  --culture-green-gradient: linear-gradient(135deg, #169b2d, #2ba63f);
  --culture-active-orange: #ff5436;
  --culture-dark: #111827;
  --culture-gray: #4b5563;
  --culture-light-gray: #f9fafb;
}

/* Global Reset/Enhance to match the clean white style of Culture Trip */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #f3f4f6;
  color: #111827;
}

.app-container {
  background-color: #ffffff !important;
  background-image: none !important; /* Remove full-body backgrounds that clash with clean design */
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.app-container::before {
  display: none !important; /* Hide background overlays */
}

/* Top Green Ribbon */
.top-promo-ribbon {
  background-color: #24B02E;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  font-size: 11px;
  line-height: 1.3;
  padding: 6px 12px;
  width: 100%;
}

/* Main Navigation Header */
.nav-header {
  background: #ffffff !important;
  border-bottom: 1px solid #eceeef !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.02) !important;
}

.nav-title {
  color: #111827 !important;
  font-weight: 700 !important;
}

.nav-button {
  color: #111827 !important;
}

.nav-button:hover {
  color: var(--culture-green) !important;
}

/* Safe areas */
.safe-area-top, .safe-area-bottom {
  background: #ffffff !important;
}

/* Bottom Navigation overrides */
.bottom-nav {
  background: #ffffff !important;
  border-top: 1px solid #eceeef !important;
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.05) !important;
}

.bottom-nav .nav-item {
  color: #555555 !important;
  font-weight: 500 !important;
}

.bottom-nav .nav-item i {
  color: #555555 !important;
  font-size: 20px;
}

.bottom-nav .nav-item span {
  color: #777777 !important;
  font-size: 10px !important;
}

.bottom-nav .nav-item.active,
.bottom-nav .nav-item.active i,
.bottom-nav .nav-item.active span {
  color: var(--culture-active-orange) !important;
}

/* Prominent Fire Icon in bottom nav */
.bottom-nav .nav-item-fire {
  position: relative;
  top: -8px;
  background: #ffffff;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -2px 10px rgba(255, 84, 54, 0.25);
  border: 1px solid #fce7f3;
}

.bottom-nav .nav-item-fire i {
  color: var(--culture-active-orange) !important;
  font-size: 26px !important;
}

.bottom-nav .nav-item-fire.active {
  background: #fff0ed;
}
