/* Party animators – colors aligned with logosite.png (purple, blue, pink, festive) */
:root {
  --bg: #faf5ff;
  --surface: #fff;
  --text: #1e1b4b;
  --text-muted: #5b5569;
  --accent: #7c3aed;
  --accent-hover: #6d28d9;
  --border: #e9d5ff;
  --tag-bg: #ede9fe;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(124, 58, 237, 0.08);
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
}

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

/* Layout */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem;
}
.site-header .wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.site-logo:hover {
  text-decoration: none;
  color: var(--accent);
}
.site-logo-img {
  height: 65px;
  width: auto;
  display: block;
  vertical-align: middle;
}
.site-nav a {
  margin-left: 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.site-nav a:hover {
  color: var(--accent);
}

/* Hero */
.hero {
  padding: 4rem 1.5rem 3rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  margin: 0 0 0.75rem;
  color: var(--text);
}
.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 0 0 2rem;
}
.hero .btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 500;
  transition: background 0.2s;
}
.hero .btn:hover {
  background: var(--accent-hover);
  text-decoration: none;
  color: #fff;
}

/* Archive section on front page */
.archive-section {
  padding-top: 1rem;
  scroll-margin-top: 1rem;
}
.archive-page .hero {
  padding-bottom: 2rem;
}
.archive-toolbar {
  max-width: 1100px;
  margin: 0 auto 2rem;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.archive-toolbar label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-right: 0.5rem;
}
.archive-toolbar select {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
}
.archive-toolbar .archive-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.archive-toolbar .btn-small {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
}
.archive-toolbar .btn-small:hover {
  background: var(--accent-hover);
}
.archive-stats {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Cards grid */
.destinations-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.destination-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.destination-card:hover {
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.1);
  transform: translateY(-2px);
}
.destination-card .card-image {
  height: 160px;
  background: linear-gradient(135deg, var(--tag-bg) 0%, #e9d5ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 2.5rem;
  font-weight: 300;
  overflow: hidden;
}
.destination-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.destination-card .card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.destination-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-family: var(--font-sans);
  font-weight: 600;
}
.destination-card .city-region {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.destination-card .address {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.destination-card .description {
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 1rem;
  flex: 1;
}
.destination-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1rem;
}
.destination-card .tag {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  background: var(--tag-bg);
  border-radius: 6px;
  color: var(--text-muted);
}
.destination-card .meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.destination-card .meta a {
  margin-right: 0.75rem;
}
.destination-card.inactive {
  opacity: 0.85;
}
.destination-card.inactive .card-image {
  background: linear-gradient(135deg, #e9d5ff 0%, #ddd6fe 100%);
}
.destination-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.destination-card-link:hover {
  color: inherit;
  text-decoration: none;
}
.destination-card-link .meta .meta-link {
  color: var(--text-muted);
  pointer-events: none;
}
.destination-card-link:hover .card-body h3 {
  color: var(--accent);
}

/* Empty state */
.archive-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  color: var(--text-muted);
}

/* FAQ section */
.faq-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
  border-top: 1px solid var(--border);
}
.faq-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 1.5rem;
  color: var(--text);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.15s;
}
.faq-question:hover {
  color: var(--accent);
}
.faq-question::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-muted);
  flex-shrink: 0;
  margin-left: 0.75rem;
}
.faq-question[aria-expanded="true"]::after {
  content: "−";
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease-out;
}
.faq-answer-open.faq-answer {
  max-height: 20rem;
  transition: max-height 0.35s ease-in;
}
.faq-answer p {
  margin: 0 0 1rem;
  padding: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}
.faq-answer p:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Place detail page */
.place-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 4rem;
}
@media (min-width: 640px) {
  .place-page {
    padding: 2rem 1.5rem 4rem;
  }
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}
.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--accent);
}
.breadcrumb-sep {
  color: var(--border);
  font-weight: 300;
}
.breadcrumb-sep::after {
  content: "›";
}
.breadcrumb-current {
  color: var(--text);
  font-weight: 500;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Place card */
.place-detail {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Hero / image */
.place-hero {
  height: 200px;
  background: var(--tag-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (min-width: 640px) {
  .place-hero {
    height: 260px;
  }
}
.place-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.place-hero-placeholder {
  background: linear-gradient(145deg, #f5f3ff 0%, #ede9fe 50%, #e9d5ff 100%);
}
.place-hero-icon {
  font-size: 4rem;
  opacity: 0.6;
}
@media (min-width: 640px) {
  .place-hero-icon {
    font-size: 5rem;
  }
}

/* Content area */
.place-content {
  padding: 1.5rem 1.25rem 2rem;
}
@media (min-width: 640px) {
  .place-content {
    padding: 2rem 2.25rem 2.5rem;
  }
}

/* Header block */
.place-header {
  margin-bottom: 1.5rem;
}
.place-badge {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--text-muted);
  background: var(--tag-bg);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.place-content h1 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  line-height: 1.25;
  color: var(--text);
}
@media (min-width: 640px) {
  .place-content h1 {
    font-size: 1.75rem;
  }
}
.place-location-block {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.place-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}
.place-location,
.place-address {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.4;
}
.place-location {
  color: var(--accent);
  font-weight: 500;
}

/* Sections */
.place-section {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.place-section-title {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}
.place-description {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
}
.place-description p {
  margin: 0;
}

/* Tags on place page */
.place-section .place-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.place-section .tag {
  font-size: 0.8rem;
  padding: 0.35rem 0.65rem;
  background: var(--tag-bg);
  border-radius: 8px;
  color: var(--text);
  font-weight: 500;
}

/* Contact section */
.place-contact-section .place-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.place-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  width: fit-content;
}
.place-contact-icon {
  font-size: 1rem;
  opacity: 0.9;
}
.place-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.6rem 0;
  text-decoration: none;
  color: var(--text);
  border-radius: 8px;
  transition: background 0.15s;
}
.place-contact-item:hover {
  background: var(--tag-bg);
  color: var(--accent);
}
.place-contact-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}
.place-contact-value {
  font-size: 1rem;
  font-weight: 500;
}

/* Secondary button */
.btn-secondary {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  background: var(--tag-bg);
  color: var(--text);
  border-color: var(--border);
}

/* Back link */
.place-actions {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.place-actions .back-link {
  display: inline-block;
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
  text-decoration: none;
}
.place-actions .back-link:hover {
  text-decoration: none;
}
.site-nav {
  display: none;
}
/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&family=Fraunces:ital,opsz,wght@0,9..144,600;0,9..144,700&display=swap");
