/*
Theme Name: CityAdventure Theme
Theme URI: https://cityadventure.it
Author: CityAdventure
Author URI: https://cityadventure.it
Description: Tema WordPress nativo per CityAdventure con integrazione Elementor e Customizer.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: cityadventure-theme
*/

:root {
  --cityadventure-color-primary: #2094a1;
  --cityadventure-color-primary-dark: #006478;
  --cityadventure-color-bg: #ffffff;
  --cityadventure-color-bg-alt: #f8fafc;
  --cityadventure-color-surface: #f3f7f8;
  --cityadventure-color-text: #111827;
  --cityadventure-color-muted: #6b7280;
  --cityadventure-color-border: #e5e7eb;
  --cityadventure-radius: 12px;
  --cityadventure-logo-url: none;
  --cityadventure-contact-phone: "";
  --cityadventure-contact-email: "";
  --cityadventure-contact-address: "";
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cityadventure-color-bg);
  color: var(--cityadventure-color-text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
}

.container-custom {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section-alt {
  background: #f9fafb;
}

.gradient-primary {
  background: linear-gradient(135deg, var(--cityadventure-color-primary) 0%, var(--cityadventure-color-primary-dark) 100%);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  border: 0;
  text-decoration: none;
  background: var(--cityadventure-color-primary);
  color: #fff;
  padding: 12px 24px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--cityadventure-color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.14);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  border: 2px solid var(--cityadventure-color-primary);
  text-decoration: none;
  background: transparent;
  color: var(--cityadventure-color-primary);
  padding: 10px 24px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--cityadventure-color-primary);
  color: #fff;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 4px 12px;
  background: rgba(32, 148, 161, 0.12);
  color: var(--cityadventure-color-primary);
  font-size: 0.875rem;
  font-weight: 500;
}

.heading-xl {
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.heading-lg {
  margin: 0;
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  line-height: 1.14;
  letter-spacing: -0.015em;
}

.card,
.event-card {
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.card:hover,
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 28px rgba(15, 23, 42, 0.12);
}

.cityadventure-card-media {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.cityadventure-card-media-wrap {
  display: block;
  background: var(--cityadventure-color-surface);
}

.cityadventure-card-media-wrap img {
  transition: transform 0.35s ease;
}

.event-card:hover .cityadventure-card-media-wrap img {
  transform: scale(1.04);
}

.cityadventure-card-media-placeholder {
  width: 100%;
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 20% 30%, rgba(32, 148, 161, 0.22) 0%, rgba(32, 148, 161, 0) 45%),
    radial-gradient(circle at 85% 70%, rgba(0, 100, 120, 0.24) 0%, rgba(0, 100, 120, 0) 42%),
    #e8f2f4;
}

.cityadventure-card-media-placeholder span {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: #fff;
  color: var(--cityadventure-color-primary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.14);
}

.cityadventure-contact-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 12px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(32, 148, 161, 0.12);
  color: var(--cityadventure-color-primary-dark);
  font-size: 1.15rem;
}

.cityadventure-features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.cityadventure-features-grid--cols-1 {
  grid-template-columns: 1fr;
}

.cityadventure-features-grid--cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cityadventure-features-grid--cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cityadventure-feature-item-simple {
  text-align: center;
}

.cityadventure-feature-item-simple__icon svg {
  width: 32px;
  height: 32px;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(32, 148, 161, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cityadventure-color-primary);
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--cityadventure-color-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #111827;
  color: #fff;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.store-btn:hover {
  background: #1f2937;
  transform: translateY(-2px);
}

.store-btn__icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.store-btn__icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

.store-btn__text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.2;
}

.store-btn__text small {
  color: #9ca3af;
  font-size: 0.72rem;
}

.store-btn__text strong {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}

.store-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.store-badge:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.store-badge img {
  display: block;
  height: 56px;
  width: auto;
  max-width: 190px;
}

.cityadventure-hero-metrics {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.cityadventure-hero-metrics__rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cityadventure-hero-metrics__stars {
  color: #facc15;
  letter-spacing: 2px;
  line-height: 1;
}

.cityadventure-hero-metrics__value {
  color: #111827;
  font-weight: 600;
}

.cityadventure-hero-metrics__divider {
  color: #9ca3af;
}

.cityadventure-hero-metrics__downloads {
  color: #4b5563;
}

.cityadventure-hero__phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.cityadventure-hero__phone-glow {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 120%;
  height: 120%;
  transform: translate(-50%, -50%);
  background: rgba(32, 148, 161, 0.1);
  border-radius: 999px;
  filter: blur(48px);
  z-index: 1;
}

.cityadventure-hero__phone-shell {
  position: relative;
  z-index: 2;
  width: 320px;
  height: 550px;
  padding: 16px;
  border-radius: 56px;
  background: #111827;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.24);
}

.cityadventure-hero__phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 48px;
  background: #fff;
}

.cityadventure-hero__phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cityadventure-hero__phone-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, transparent 60%, rgba(0, 0, 0, 0.5));
}

.cityadventure-steps-list {
  display: grid;
  gap: 24px;
}

.cityadventure-steps-list--with-media {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  align-items: center;
}

.cityadventure-steps-list__items {
  display: grid;
  gap: 32px;
}

.cityadventure-steps-list__item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.cityadventure-steps-list__number {
  flex-shrink: 0;
  font-size: 40px;
  font-weight: 700;
  color: rgba(32, 148, 161, 0.3);
  line-height: 1;
}

.cityadventure-steps-list__title {
  margin: 0 0 8px;
  font-size: 24px;
  color: #111827;
}

.cityadventure-steps-list__description {
  margin: 0;
  color: #4b5563;
}

.cityadventure-steps-list__media-wrap {
  position: relative;
}

.cityadventure-steps-list__media {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
}

.cityadventure-steps-list__media img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.cityadventure-steps-list__stat {
  position: absolute;
  left: -24px;
  bottom: -24px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.14);
}

.cityadventure-steps-list__stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--cityadventure-color-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cityadventure-steps-list__stat-value {
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
  color: #111827;
}

.cityadventure-steps-list__stat-label {
  margin-top: 4px;
  color: #6b7280;
}

.cityadventure-cta-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.cityadventure-cta-store-btn:hover {
  transform: translateY(-2px);
}

.cityadventure-cta-store-btn--solid {
  background: #fff;
  color: var(--cityadventure-color-primary);
}

.cityadventure-cta-store-btn--solid:hover {
  background: #f3f4f6;
}

.cityadventure-cta-store-btn--outline {
  border: 2px solid #fff;
  color: #fff;
}

.cityadventure-cta-store-btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cityadventure-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  text-decoration: none;
  color: var(--cityadventure-color-primary);
  font-weight: 700;
  font-size: 0.95rem;
}

.cityadventure-inline-link:hover {
  color: var(--cityadventure-color-primary-dark);
}

.cityadventure-hero-upcoming {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(17, 24, 39, 0.86);
  color: #fff;
  border-radius: 14px;
  padding: 10px 12px;
  backdrop-filter: blur(5px);
  min-width: 180px;
}

.cityadventure-hero-upcoming__label {
  display: block;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #9ca3af;
  margin-bottom: 4px;
  font-weight: 700;
}

.cityadventure-hero-upcoming__date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  color: #f9fafb;
  font-weight: 600;
}

.cityadventure-section-heading {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.cityadventure-section-heading--left {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.cityadventure-section-heading--center {
  text-align: center;
}

.cityadventure-section-heading__content--left {
  text-align: left;
  max-width: 760px;
}

.cityadventure-section-heading--has-action {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.cityadventure-section-heading__action {
  white-space: nowrap;
}

.cityadventure-app-teaser {
  border-radius: 28px;
}

.cityadventure-app-teaser__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  align-items: center;
}

.cityadventure-app-teaser__phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.cityadventure-app-teaser__phone-shell {
  width: 290px;
  height: 520px;
  background: #111827;
  border-radius: 52px;
  padding: 14px;
  box-shadow: 0 26px 42px rgba(15, 23, 42, 0.26);
  position: relative;
  z-index: 2;
}

.cityadventure-app-teaser__phone-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 42px;
  background: #fff;
}

.cityadventure-app-teaser__phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cityadventure-app-teaser__phone-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(45px);
  z-index: 1;
}

.cityadventure-app-teaser__phone-glow--a {
  right: 24px;
  top: 28px;
  width: 210px;
  height: 210px;
  background: rgba(32, 148, 161, 0.24);
}

.cityadventure-app-teaser__phone-glow--b {
  left: 14px;
  bottom: 30px;
  width: 180px;
  height: 180px;
  background: rgba(0, 100, 120, 0.2);
}

.cityadventure-event-chip {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--cityadventure-color-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
}

.cityadventure-event-meta {
  margin: 0 0 8px;
  font-size: 0.85rem;
  color: #6b7280;
}

.cityadventure-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  color: #6b7280;
  font-size: 0.9rem;
}

.cityadventure-meta-icon {
  width: 18px;
  height: 18px;
  color: var(--cityadventure-color-primary);
  flex-shrink: 0;
}

.cityadventure-event-price {
  position: absolute;
  right: 12px;
  bottom: 12px;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  color: #111827;
  font-size: 0.82rem;
  font-weight: 700;
}

.cityadventure-events-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.cityadventure-events-head__left {
  max-width: 780px;
}

.cityadventure-events-head__left h2 {
  text-align: left;
}

.cityadventure-event-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.cityadventure-event-filters__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 12px;
  background: #f3f4f6;
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.cityadventure-event-filters__button:hover {
  background: #e5e7eb;
}

.cityadventure-event-filters__button--active {
  background: var(--cityadventure-color-primary);
  color: #fff;
}

.cityadventure-events-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.cityadventure-feature-list-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  align-items: center;
}

.cityadventure-feature-list-media__items {
  display: grid;
  gap: 24px;
}

.cityadventure-feature-list-media__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cityadventure-feature-list-media__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 14px;
  background: rgba(32, 148, 161, 0.12);
  color: var(--cityadventure-color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cityadventure-feature-list-media__title {
  margin: 0 0 4px;
  font-size: 1.1rem;
  color: #111827;
}

.cityadventure-feature-list-media__description {
  margin: 0;
  color: #4b5563;
}

.cityadventure-feature-list-media__media-wrap {
  position: relative;
}

.cityadventure-feature-list-media__media {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
}

.cityadventure-feature-list-media__media img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.cityadventure-feature-list-media__stat {
  position: absolute;
  right: -24px;
  bottom: -24px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.14);
}

.cityadventure-feature-list-media__stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--cityadventure-color-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cityadventure-feature-list-media__stat-value {
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
  color: #111827;
}

.cityadventure-feature-list-media__stat-label {
  margin-top: 4px;
  color: #6b7280;
}

.cityadventure-city-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.cityadventure-city-card__media {
  position: relative;
  display: block;
  min-height: var(--cityadventure-city-card-min-height, 20rem);
  aspect-ratio: var(--cityadventure-city-card-aspect-ratio, 16 / 10);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
}

.cityadventure-city-card__media img {
  width: 100%;
  height: 100%;
  object-fit: var(--cityadventure-city-card-object-fit, cover);
  object-position: var(--cityadventure-city-card-object-position, center center);
  display: block;
  position: absolute;
  inset: 0;
}

.cityadventure-city-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.12) 0%, rgba(15, 23, 42, 0.78) 100%);
}

.cityadventure-city-card__badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--cityadventure-color-primary-dark);
  font-weight: 700;
  font-size: 0.8rem;
}

.cityadventure-city-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 2rem;
  color: #fff;
  line-height: 1.5;
}

.cityadventure-city-card__routes,
.cityadventure-route-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cityadventure-city-card__routes {
  margin: 0 0 0.75rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

.cityadventure-city-card__title,
.cityadventure-route-card__title,
.cityadventure-play-option-card__title {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.cityadventure-city-card__title {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
}

.cityadventure-city-card__description,
.cityadventure-route-card__description,
.cityadventure-play-option-card__description {
  margin: 0.85rem 0 0;
  line-height: 1.7;
}

.cityadventure-city-card__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.cityadventure-city-card__highlights span {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 0.85rem;
}

.cityadventure-route-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.cityadventure-route-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.cityadventure-route-card__city,
.cityadventure-route-card__difficulty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
}

.cityadventure-route-card__city {
  background: rgba(34, 197, 94, 0.12);
  color: var(--cityadventure-color-primary-dark);
}

.cityadventure-route-card__difficulty--easy {
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
}

.cityadventure-route-card__difficulty--medium {
  background: rgba(245, 158, 11, 0.16);
  color: #b45309;
}

.cityadventure-route-card__difficulty--hard {
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
}

.cityadventure-route-card__title {
  font-size: 1.4rem;
  color: #0f172a;
}

.cityadventure-route-card__description {
  color: #475569;
}

.cityadventure-route-card__meta {
  margin: 1.1rem 0 1.4rem;
  color: #64748b;
  font-weight: 600;
}

.cityadventure-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.cityadventure-stat-item__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 18px;
  background: rgba(32, 148, 161, 0.12);
  color: var(--cityadventure-color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cityadventure-stat-item__value {
  font-size: clamp(2rem, 4vw, 2.6rem);
  line-height: 1;
  font-weight: 800;
  color: #111827;
  margin-bottom: 0.35rem;
}

.cityadventure-stat-item__label {
  color: #6b7280;
}

.cityadventure-partner-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.cityadventure-partner-chip {
  padding: 1rem 1.8rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.cityadventure-partner-chip span {
  font-weight: 600;
  color: #374151;
}

.cityadventure-contact-hub {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 4rem;
}

.cityadventure-contact-form {
  display: grid;
  gap: 1.25rem;
}

.cityadventure-contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.cityadventure-contact-form label {
  display: block;
  margin-bottom: 0.55rem;
  color: #374151;
  font-size: 0.92rem;
  font-weight: 600;
}

.cityadventure-contact-form input,
.cityadventure-contact-form select,
.cityadventure-contact-form textarea {
  width: 100%;
  min-height: 56px;
  padding: 0.95rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 16px;
  background: #fff;
  color: #111827;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cityadventure-contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.cityadventure-contact-form input:focus,
.cityadventure-contact-form select:focus,
.cityadventure-contact-form textarea:focus {
  outline: none;
  border-color: var(--cityadventure-color-primary);
  box-shadow: 0 0 0 4px rgba(32, 148, 161, 0.12);
}

.cityadventure-contact-form__submit {
  width: 100%;
  justify-content: center;
  min-height: 56px;
  border: 0;
}

.cityadventure-contact-form__alert {
  margin-bottom: 1.5rem;
  padding: 1.25rem 1.4rem;
  border-radius: 18px;
  border: 1px solid transparent;
}

.cityadventure-contact-form__alert h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.cityadventure-contact-form__alert p {
  margin: 0;
}

.cityadventure-contact-form__alert--success {
  background: #ecfdf5;
  border-color: #a7f3d0;
  color: #166534;
}

.cityadventure-contact-form__alert--error {
  background: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
}

.cityadventure-social-links {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.cityadventure-social-link {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  text-decoration: none;
}

.cityadventure-social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
}

.cityadventure-social-link__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.cityadventure-social-link__icon--facebook {
  background: #2563eb;
}

.cityadventure-social-link__icon--instagram {
  background: linear-gradient(135deg, #a855f7, #ec4899);
}

.cityadventure-social-link__icon--linkedin {
  background: #1d4ed8;
}

.cityadventure-social-link__icon--mail {
  background: #0f766e;
}

.cityadventure-social-link h4,
.cityadventure-contact-faq-preview h3 {
  margin: 0 0 0.2rem;
  color: #111827;
}

.cityadventure-social-link p,
.cityadventure-contact-faq-preview details p {
  margin: 0;
  color: #6b7280;
}

.cityadventure-contact-faq-preview {
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 22px;
}

.cityadventure-contact-faq-preview__items {
  display: grid;
  gap: 0.85rem;
}

.cityadventure-contact-faq-preview details {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 1rem 1.1rem;
}

.cityadventure-contact-faq-preview summary {
  cursor: pointer;
  font-weight: 600;
  color: #111827;
}

.cityadventure-contact-faq-preview details p {
  margin-top: 0.75rem;
  line-height: 1.7;
}

.cityadventure-play-options-media {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 2rem;
  align-items: center;
}

.cityadventure-play-option-cards {
  display: grid;
  gap: 1.25rem;
}

.cityadventure-play-option-card {
  background: #fff;
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.cityadventure-play-option-card__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.cityadventure-play-option-card__number {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
}

.cityadventure-play-option-card__number--primary {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.cityadventure-play-option-card__number--dark {
  background: linear-gradient(135deg, #1e293b, #0f172a);
}

.cityadventure-play-option-card__title {
  font-size: 1.35rem;
  color: #0f172a;
}

.cityadventure-play-option-card__description {
  color: #475569;
}

.cityadventure-play-option-card__list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.cityadventure-play-option-card__list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #334155;
  font-weight: 500;
}

.cityadventure-play-option-card__list svg {
  color: var(--cityadventure-color-primary);
  flex-shrink: 0;
}

.cityadventure-play-options-media__image-wrap {
  position: relative;
  display: block;
  line-height: 0;
  border-radius: 28px;
  overflow: hidden;
  min-height: var(--cityadventure-play-options-image-min-height, 36rem);
  height: 100%;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
}

.cityadventure-play-options-media__image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: var(--cityadventure-play-options-image-fit, cover);
  object-position: var(--cityadventure-play-options-image-position, center center);
  display: block;
}

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

.max-w-2xl {
  max-width: 760px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.inline-block {
  display: inline-block;
}

.text-xl {
  font-size: 1.125rem;
}

.text-lg {
  font-size: 1.05rem;
}

.text-gray-900 {
  color: #111827;
}

.text-gray-600 {
  color: #4b5563;
}

.cityadventure-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--cityadventure-color-border);
}

.cityadventure-site-header__inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}

.cityadventure-nav-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.cityadventure-site-nav {
  display: flex;
  justify-content: center;
}

.cityadventure-site-branding {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cityadventure-site-logo img {
  max-height: 52px;
  width: auto;
  display: block;
}

.cityadventure-site-logo .custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.cityadventure-site-title {
  color: var(--cityadventure-color-text);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.cityadventure-site-title--brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
}

.cityadventure-site-title__mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cityadventure-color-primary) 0%, var(--cityadventure-color-primary-dark) 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 100, 120, 0.2);
}

.cityadventure-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.cityadventure-nav-toggle span {
  width: 20px;
  height: 2px;
  background: #111827;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.cityadventure-site-header.is-menu-open .cityadventure-nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.cityadventure-site-header.is-menu-open .cityadventure-nav-toggle span:nth-child(2) {
  opacity: 0;
}

.cityadventure-site-header.is-menu-open .cityadventure-nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.cityadventure-menu,
.cityadventure-footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 22px;
}

.cityadventure-menu a,
.cityadventure-footer-menu a {
  text-decoration: none;
  color: var(--cityadventure-color-text);
  font-weight: 500;
}

.cityadventure-menu a {
  font-size: 1.02rem;
  letter-spacing: 0.01em;
}

.cityadventure-menu a:hover,
.cityadventure-footer-menu a:hover {
  color: var(--cityadventure-color-primary-dark);
}

.cityadventure-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  background: linear-gradient(135deg, var(--cityadventure-color-primary) 0%, var(--cityadventure-color-primary-dark) 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 100, 120, 0.2);
}

.cityadventure-header-cta:hover {
  color: #fff;
  filter: brightness(1.03);
}

.cityadventure-site-footer {
  margin-top: 64px;
  background: #0f172a;
  color: #97a6bc;
}

.cityadventure-site-footer__inner {
  padding: 48px 16px;
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 32px;
}

.cityadventure-site-footer h3,
.cityadventure-site-footer h4 {
  margin: 0 0 12px;
  color: #fff;
}

.cityadventure-site-footer__brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 1rem;
}

.cityadventure-site-footer__logo-image {
  display: block;
  width: auto;
  max-width: 190px;
  max-height: 56px;
}

.cityadventure-site-footer__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}

.cityadventure-site-footer__description {
  margin: 0;
  color: #97a6bc;
}

.cityadventure-site-footer__description--app {
  margin-bottom: 1rem;
}

.cityadventure-footer-socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.cityadventure-footer-social {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #17233b;
  color: #e2e8f0;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.cityadventure-footer-social:hover {
  transform: translateY(-2px);
  background: var(--cityadventure-color-primary);
  color: #fff;
}

.cityadventure-site-footer a {
  color: #b8c4d6;
  text-decoration: none;
}

.cityadventure-site-footer a:hover {
  color: #fff;
}

.cityadventure-site-footer__contacts p {
  margin: 0 0 8px;
}

.cityadventure-site-footer__menu-wrap li,
.cityadventure-site-footer__contacts a,
.cityadventure-site-footer__contacts span:last-child,
.cityadventure-site-footer__app .store-btn__text small {
  color: #97a6bc;
}

.cityadventure-site-footer__menu-wrap nav {
  display: block;
}

.cityadventure-site-footer__stores {
  display: grid;
  gap: 0.85rem;
}

.cityadventure-site-footer__store-btn {
  width: 100%;
  background: #17233b;
  color: #fff;
  border-color: #243552;
}

.cityadventure-site-footer__store-btn:hover {
  background: #1d2c47;
  color: #fff;
}

.cityadventure-footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.cityadventure-footer-contact-icon {
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #17233b;
  color: #9fb4d6;
  flex-shrink: 0;
}

.cityadventure-footer-contact-row a,
.cityadventure-footer-contact-row span:last-child {
  padding-top: 0.55rem;
}

.cityadventure-site-footer__bottom {
  border-top: 1px solid #1e293b;
}

.cityadventure-site-footer__bottom-inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cityadventure-site-footer__bottom p {
  margin: 0;
  color: #94a3b8;
}

.cityadventure-footer-menu {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
}

.cityadventure-site-footer__bottom-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cityadventure-site-footer__bottom-links a {
  color: #94a3b8;
  font-size: 0.92rem;
}

.cityadventure-site-footer__bottom-links a:hover {
  color: #fff;
}

@media (max-width: 1024px) {
  .cityadventure-site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .py-24 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .py-16 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .cityadventure-site-header {
    position: static;
  }

  .cityadventure-site-header__inner {
    min-height: 70px;
    display: flex;
    padding-top: 12px;
    padding-bottom: 12px;
    flex-wrap: wrap;
  }

  .cityadventure-nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .cityadventure-nav-wrap {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 6px 0 10px;
  }

  .cityadventure-site-header.is-menu-open .cityadventure-nav-wrap {
    display: flex;
  }

  .cityadventure-menu {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 8px;
  }

  .cityadventure-menu li {
    width: 100%;
  }

  .cityadventure-menu a {
    display: inline-flex;
    width: 100%;
    padding: 6px 0;
  }

  .cityadventure-menu,
  .cityadventure-footer-menu {
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .cityadventure-site-footer__inner {
    grid-template-columns: 1fr;
  }

  .cityadventure-site-footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cityadventure-section-heading--has-action,
  .cityadventure-events-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .cityadventure-section-heading__action,
  .cityadventure-events-head__cta {
    width: 100%;
  }

  .cityadventure-app-teaser__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cityadventure-app-teaser__phone-shell {
    width: 260px;
    height: 470px;
    border-radius: 44px;
  }

  .cityadventure-app-teaser__phone-screen {
    border-radius: 36px;
  }

  .cityadventure-steps-list--with-media {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cityadventure-steps-list__stat {
    position: static;
    margin-top: 20px;
  }

  .cityadventure-steps-list__media img {
    height: 360px;
  }

  .cityadventure-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cityadventure-features-grid--cols-4,
  .cityadventure-events-grid,
  .cityadventure-feature-list-media,
  .cityadventure-stats-grid,
  .cityadventure-contact-hub,
  .cityadventure-city-cards,
  .cityadventure-route-cards,
  .cityadventure-play-options-media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cityadventure-feature-list-media__stat {
    position: static;
    margin-top: 20px;
  }

  .cityadventure-feature-list-media__media img {
    height: 360px;
  }

  .cityadventure-play-options-media__image-wrap {
    min-height: 24rem;
  }

  .cityadventure-hero__phone-shell {
    width: 260px;
    height: 470px;
    border-radius: 44px;
  }

  .cityadventure-hero__phone-screen {
    border-radius: 36px;
  }

  .cityadventure-header-cta {
    width: 100%;
  }

  .cityadventure-features-grid {
    grid-template-columns: 1fr;
  }

  .cityadventure-features-grid--cols-4,
  .cityadventure-events-grid,
  .cityadventure-feature-list-media,
  .cityadventure-stats-grid,
  .cityadventure-contact-hub,
  .cityadventure-city-cards,
  .cityadventure-route-cards,
  .cityadventure-play-options-media {
    grid-template-columns: 1fr;
  }

  .cityadventure-contact-form__grid {
    grid-template-columns: 1fr;
  }

  .cityadventure-feature-list-media__item {
    gap: 12px;
  }

  .cityadventure-city-card__content,
  .cityadventure-play-option-card {
    padding: 1.25rem;
  }

  .cityadventure-city-card__media,
  .cityadventure-play-options-media__image-wrap {
    min-height: 22rem;
  }

  .cityadventure-city-card__media {
    aspect-ratio: 4 / 3;
  }

  .mb-16 {
    margin-bottom: 2.5rem;
  }
}
