.themed-hero {
  padding-top: var(--space-20);
}

.themed-hero__grid {
  align-items: center;
  gap: var(--space-10);
}

.themed-hero__content p {
  max-width: 36rem;
}

.themed-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.themed-hero__meta {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.themed-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.themed-hero__image-card {
  position: relative;
  max-width: 26rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.themed-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.themed-hero__overlay-card {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  right: 1.25rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, rgba(41, 211, 143, 0.4), rgba(5, 7, 18, 0.95));
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.themed-hero__overlay-title {
  font-size: var(--font-size-sm);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.themed-hero__overlay-text {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.themed-section-header {
  text-align: left;
}

.themed-section-header p {
  margin-top: var(--space-2);
}

.themed-bullet-list {
  margin-top: var(--space-2);
  padding-left: 1.25rem;
}

.themed-bullet-list li {
  position: relative;
  margin-bottom: 0.4rem;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.themed-bullet-list li::before {
  content: "";
  position: absolute;
  left: -0.9rem;
  top: 0.48rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-primary);
}

.themed-ideas__grid {
  align-items: flex-start;
  gap: var(--space-10);
}

.themed-ideas__cards {
  gap: var(--space-4);
}

.themed-ideas__decor-card {
  height: 100%;
}

.themed-ideas__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.themed-ideas__secondary-link {
  font-size: var(--font-size-sm);
}

.themed-poker__container {
  max-width: 1160px;
}

.themed-poker__grid {
  align-items: center;
  gap: var(--space-8);
}

.themed-poker__image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.themed-poker__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.themed-poker__content p {
  margin-bottom: var(--space-3);
}

.themed-subtitle {
  font-size: var(--font-size-lg);
}

.themed-poker__link-secondary {
  margin-left: 0.75rem;
}

.themed-experience__grid {
  align-items: flex-start;
  gap: var(--space-10);
}

.themed-booking__band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.themed-booking__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.themed-booking__steps {
  gap: var(--space-6);
}

.themed-footer-nav__title {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-3);
}

.themed-footer-nav__list {
  list-style: none;
}

.themed-footer-nav__list li + li {
  margin-top: 0.35rem;
}

.themed-footer-nav__list a {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.themed-footer-nav__list a:hover {
  color: var(--color-primary);
}

@media (max-width: 1024px) {
  .themed-hero__grid,
  .themed-ideas__grid,
  .themed-poker__grid,
  .themed-experience__grid {
    gap: var(--space-6);
  }
}

@media (max-width: 768px) {
  .themed-hero {
    padding-top: var(--space-16);
  }

  .themed-hero__content {
    text-align: left;
  }

  .themed-hero__cta {
    justify-content: flex-start;
  }

  .themed-hero__image-card {
    margin-top: var(--space-6);
  }

  .themed-booking__band {
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .themed-hero__overlay-card {
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.9rem;
  }

  .themed-poker__link-secondary {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}
