/* Property subpage (Bérc Kabin etc.) */

.property-page {
  padding-top: 0;
}

.property-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding: 6rem 0 4rem;
  margin-top: 148px;
  overflow: hidden;
}

.property-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.property-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(58, 34, 96, 0.35) 0%,
    rgba(26, 26, 46, 0.75) 55%,
    rgba(26, 26, 46, 0.92) 100%
  );
}

.property-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.property-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.property-hero-content h1 {
  font-size: clamp(2.2rem, 6vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.property-location {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.75rem;
}

.property-location i {
  color: var(--accent);
  margin-right: 0.35rem;
}

.property-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-hero-outline {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: var(--white);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-hero-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

/* Aside contacts */
.property-aside {
  background: var(--light-bg);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  height: 100%;
}

.property-aside h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--primary);
}

.property-link-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid #e8e8ef;
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

.property-link-item:last-of-type {
  border-bottom: none;
}

.property-link-item:hover {
  color: var(--primary);
}

.property-link-item .icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.property-link-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
}

.property-link-item small {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  word-break: break-all;
}

.property-share-hint {
  margin-top: 1.25rem;
  margin-bottom: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
  background: var(--white);
  border-radius: 8px;
  padding: 0.9rem 1rem;
}

.property-share-hint i {
  color: var(--accent);
  margin-right: 0.25rem;
}

/* Media embeds */
.property-media-section {
  background: var(--light-bg);
}

.property-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 15px 40px rgba(74, 44, 122, 0.18);
}

.property-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.property-download-bar {
  background: var(--white);
  border: 1px solid #e8e8ef;
  border-radius: 8px;
  padding: 0.9rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.property-download-bar strong {
  color: var(--text-dark);
}

.property-gallery .gallery-item {
  position: relative;
}

.gallery-download {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(26, 26, 46, 0.75);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.95rem;
  opacity: 0.95;
  transition: background 0.2s, transform 0.2s;
}

.gallery-download:hover {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.06);
}

/* Mobile */
@media (max-width: 991px) {
  .property-hero {
    min-height: 58vh;
    padding: 4rem 0 3rem;
    margin-top: 126px;
  }

  .property-aside {
    padding: 1.5rem 1.25rem;
  }
}

@media (max-width: 575px) {
  .property-hero {
    margin-top: 110px;
    min-height: 52vh;
    padding: 3rem 0 2.25rem;
  }

  .property-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .property-hero-actions .btn-hero,
  .property-hero-actions .btn-hero-outline {
    text-align: center;
  }

  .property-video-wrap {
    border-radius: 8px;
  }

  .gallery-download {
    opacity: 1;
    width: 40px;
    height: 40px;
  }
}
