/* ============================================================
   PARAGONS — COMMUNITY ASSETS PAGE
   ============================================================ */

/* Hero */
.community-hero {
  background-image: linear-gradient(to top, rgba(0,0,0,0.97), rgba(0,0,0,0.3)), url('/assets/valley.webp');
  background-size: cover;
  background-position: center;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.community-hero-content {
  padding-top: 0;
}

.community-hero h1 {
  color: #fff;
  font-family: 'Cinzel', serif;
  font-size: 48px;
  margin: 0 0 12px;
}

.community-hero p {
  color: #dfb345;
  font-family: 'EB Garamond', serif;
  font-size: 22px;
  margin: 0;
}

/* Sections */
.community-section {
  background: #0a0806;
  padding: 90px 0 70px;
  position: relative;
}

.community-section--dark {
  background: #0f0c07;
}

.community-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.community-section-header h2 {
  color: #dfb345;
  font-family: 'Cinzel', serif;
  font-size: 32px;
  margin-bottom: 10px;
}

.community-section-header p {
  color: #a89878;
  font-family: 'EB Garamond', serif;
  font-size: 17px;
  margin: 0;
}

/* Asset Cards */
.asset-card {
  margin-bottom: 40px;
  border: 1px solid #2a2318;
  background: #13100a;
  overflow: hidden;
}

.asset-preview {
  width: 100%;
  overflow: hidden;
  background: #0a0806;
  display: flex;
  align-items: center;
  justify-content: center;
}

.asset-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.asset-card:hover .asset-preview img {
  transform: scale(1.03);
}

.banner-preview    { aspect-ratio: 3 / 1; }
.avatar-preview    { aspect-ratio: 1 / 1; }
.wallpaper-preview { aspect-ratio: 16 / 9; }
.wallpaper-preview a { display: block; width: 100%; height: 100%; cursor: zoom-in; }

/* Asset Meta */
.asset-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-top: 1px solid #2a2318;
}

.asset-label {
  color: #e8dcc8;
  font-family: 'Cinzel', serif;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.asset-download {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #dfb345;
  text-decoration: none;
  border: 1px solid #dfb345;
  padding: 6px 18px;
  letter-spacing: 0.05em;
  transition: background 0.15s, color 0.15s;
}

.asset-download:hover {
  background: #dfb345;
  color: #0a0806;
}

@media(max-width: 800px) {
  .community-section {
    padding: 25px 0;
  }
  .community-hero {
    height: auto;
    padding: 100px 0 75px;
  }
  .community-hero h1 {
    font-size: 38px;
    line-height: 1.1;
  }
  .community-section-header h2 {
    font-size: 28px;
  }
  .avatar-preview img {
    width: 250px;
    height: auto;
  }
}