/* park-attractions.css */

/* ── Page wrapper ── */
.attr-page {
  min-height: 100vh;
  background-color: #062726;
  display: flex;
  flex-direction: column;
}

/* ── Hero ── */
.attr-hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 80px);
  max-height: calc(100vh - 80px);
  overflow: hidden;
  background: #000;
}

.attr-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.attr-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent 50%, rgba(0, 0, 0, 0.4));
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 2rem;
  box-sizing: border-box;
}

@media (min-width: 900px) {
  .attr-hero__overlay {
    padding: 3rem 4rem;
  }
}

.attr-hero__title-block {
  margin: 0 0 4rem 4rem;
}

@media (min-width: 768px) {
  .attr-hero__title-block {
    margin: 0 0 5rem 6rem;
  }
}

@media (min-width: 1024px) {
  .attr-hero__title-block {
    margin: 0 0 6rem 9rem;
  }
}

.attr-hero__title-small {
  display: block;
  font-family: 'Muli', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.5rem;
}

.attr-hero__title-large {
  font-family: 'IvyJournal', serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  line-height: 1.2;
  color: rgb(255, 255, 255);
  margin: 0;
  letter-spacing: -0.02em;
}

/* ── Attraction section (normal: video/img left, content right) ── */
.attr-section {
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media (min-width: 768px) {
  .attr-section {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 0;
    align-items: stretch;
  }
}

@media (min-width: 1024px) {
  .attr-section {
    grid-template-columns: 1.4fr 1fr;
  }
}

@media (min-width: 1200px) {
  .attr-section {
    padding-left: 3rem;
    padding-right: 3rem;
    grid-template-columns: 1.5fr 1fr;
  }
}

@media (min-width: 1400px) {
  .attr-section {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

/* ── Attraction section reversed (text left, image right) ── */
.attr-section--reversed {
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media (max-width: 767px) {
  .attr-section--reversed > *:first-child {
    order: 2;
  }
  .attr-section--reversed > *:last-child {
    order: 1;
  }
}

@media (min-width: 768px) {
  .attr-section--reversed {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    align-items: stretch;
  }
}

@media (min-width: 1024px) {
  .attr-section--reversed {
    grid-template-columns: 1fr 1.5fr;
  }
}

@media (min-width: 1200px) {
  .attr-section--reversed {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media (min-width: 1400px) {
  .attr-section--reversed {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

/* ── Video wrap ── */
.attr-video-wrap {
  padding: 3rem 2rem;
}

@media (min-width: 768px) {
  .attr-video-wrap {
    padding: 3rem 3rem 3rem 2.5rem;
    display: flex;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .attr-video-wrap {
    padding: 4rem 4rem 4rem 3rem;
  }
}

@media (min-width: 1200px) {
  .attr-video-wrap {
    padding: 5rem 6rem 5rem 4rem;
  }
}

/* ── Autoplay video ── */
.attr-video {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

@media (min-width: 768px) {
  .attr-video {
    min-height: 360px;
    max-height: 55vh;
    border-radius: 8px;
  }
}

@media (min-width: 1024px) {
  .attr-video {
    min-height: 420px;
    max-height: 65vh;
  }
}

@media (min-width: 1200px) {
  .attr-video {
    min-height: 480px;
  }
}

/* ── Image wrap ── */
.attr-image-wrap {
  padding: 3rem 2rem;
}

@media (min-width: 768px) {
  .attr-image-wrap {
    padding: 3rem 2.5rem 3rem 3rem;
    display: flex;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .attr-image-wrap {
    padding: 4rem 3rem 4rem 4rem;
  }
}

@media (min-width: 1200px) {
  .attr-image-wrap {
    padding: 5rem 4rem 5rem 6rem;
  }
}

/* ── Static image (same styling as video) ── */
.attr-image {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

@media (min-width: 768px) {
  .attr-image {
    min-height: 360px;
    max-height: 55vh;
    border-radius: 8px;
    width: 100%;
    object-position: center;
  }
}

@media (min-width: 1024px) {
  .attr-image {
    min-height: 420px;
    max-height: 65vh;
  }
}

@media (min-width: 1200px) {
  .attr-image {
    min-height: 480px;
  }
}

/* ── Content block ── */
.attr-content {
  background-color: #062726;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .attr-content {
    padding: 3rem 2.5rem;
    max-width: 100%;
  }
}

@media (min-width: 1024px) {
  .attr-content {
    padding: 4rem 3rem;
    max-width: 520px;
  }
}

@media (min-width: 1200px) {
  .attr-content {
    padding: 4rem 4rem;
    max-width: 560px;
  }
}

/* ── Content pieces ── */
.attr-icon {
  width: 56px;
  height: auto;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .attr-icon {
    width: 64px;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .attr-icon {
    width: 72px;
  }
}

.attr-title {
  font-family: 'IvyJournal', serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  line-height: 1.25;
  color: #fff;
  margin: 0 0 1rem;
}

@media (min-width: 768px) {
  .attr-title {
    font-size: clamp(1.75rem, 2.5vw, 2.25rem);
    margin-bottom: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .attr-title {
    font-size: 2rem;
    margin-bottom: 1.25rem;
  }
}

@media (min-width: 1200px) {
  .attr-title {
    font-size: 2.25rem;
  }
}

.attr-desc {
  font-family: 'Muli', serif;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 1rem;
}

@media (min-width: 768px) {
  .attr-desc {
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .attr-desc {
    font-size: 1.0625rem;
  }
}

.attr-subtitle {
  font-family: 'Muli', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 0.75rem;
}

@media (min-width: 768px) {
  .attr-subtitle {
    font-size: 0.9375rem;
    margin-bottom: 0.875rem;
  }
}

.attr-details {
  font-family: 'Muli', serif;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 0.5rem;
}

.attr-details:last-of-type {
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .attr-details {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 0.5rem;
  }
  .attr-details:last-of-type {
    margin-bottom: 1.75rem;
  }
}
