:root {
  --bg-overlay: rgba(26, 46, 79, 0.76);
  --card-bg: rgba(247, 244, 238, 0.96);
  --accent: #ffb347;
  --accent-2: #ff7e67;
  --text-main: #1a2420;
  --text-subtle: #4b5a52;
  --radius-card: 18px;
  --shadow-card: 0 10px 26px rgba(0, 0, 0, 0.4);
  --max-width: 600px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: "Quicksand", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background: #020816;
  display: flex;
  justify-content: center;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("images/bali-bg.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  opacity: 0.27;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: var(--bg-overlay);
  z-index: -1;
}

.app {
  width: 100%;
  max-width: var(--max-width);
  padding: 1.1rem 0.9rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

@media (min-width: 768px) {
  .app {
    padding: 1.8rem 1.4rem 2.4rem;
  }
}

.app-header {
  text-align: center;
  color: #f9f7f3;
  margin-bottom: 0.4rem;
}

.app-title {
  font-family: "Courgette", "Quicksand", system-ui, sans-serif;
  font-size: 1.8rem;
  line-height: 1.3;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.7);
}

.app-subtitle {
  font-size: 0.9rem;
  margin-top: 0.3rem;
  opacity: 0.9;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.55rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  font-size: 0.75rem;
  background: rgba(0, 0, 0, 0.35);
}

.chip span {
  color: #fdfbf7;
}

.cards {
  scroll-behavior: smooth;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 1.0rem 1.05rem 1.15rem;
  margin-bottom: 0.9rem;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
  animation: cardIn 0.45s ease-out both;
}

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

.card-header {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.5rem;
}

.card-icon {
  font-size: 1.25rem;
}

.card-title {
  font-size: 1.0rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
}

.card-body {
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--text-subtle);
}

.card-body a {
  color: var(--accent-2);
  text-decoration: none;
  word-break: break-word;
}

.card-body a:hover {
  text-decoration: underline;
}

.strong {
  font-weight: 600;
  color: var(--text-main);
}

.muted {
  opacity: 0.9;
}

.list {
  margin-top: 0.3rem;
  padding-left: 1.05rem;
}

.list li {
  margin-bottom: 0.25rem;
}

.card-footer {
  text-align: center;
}

.nav {
  position: fixed;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 50;
}

.nav button {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  border: none;
  background: rgba(2, 17, 10, 0.7);
  color: #fefefe;
  font-size: 1.05rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav button:active {
  transform: translateY(1px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.fab-whatsapp {
  position: fixed;
  bottom: 1.1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #04210f;
  font-size: 1.4rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
  text-decoration: none;
  z-index: 60;
}

.fab-whatsapp:active {
  transform: translateY(1px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);
}

@media (max-width: 480px) {
  .nav {
    right: 0.5rem;
  }
  .fab-whatsapp {
    right: 0.6rem;
  }
}


/* MEZ ULTRA tweaks */
.ultra-card .card-title {
  color: var(--accent-2);
}
