/* --------------------------------------------------
   HOME CONTAINER (Dark Parchment Theme)
-------------------------------------------------- */
.home-container {
  padding: 20px;
  padding-bottom: 120px;
  background: #2b2520;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  color: #f5e6c8;
  text-align: center;
}

/* --------------------------------------------------
   3×3 GRID (Upgraded)
-------------------------------------------------- */
.home-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* --------------------------------------------------
   TILE STYLE (Dark Parchment Cards)
-------------------------------------------------- */
.home-tile {
  background: #3a332d;
  border-radius: 14px;
  padding: 16px 6px;
  text-align: center;
  box-shadow: 0px 3px 8px rgba(0,0,0,0.35);
  cursor: pointer;
  transition: 0.2s ease;
}

.home-tile:hover {
  transform: scale(1.05);
}

.home-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 12px;
  filter: brightness(1.2);
}

/* --------------------------------------------------
   LARGE ROW (Music + Videos)
-------------------------------------------------- */
.large-row {
  margin-top: 25px;
  display: flex;
  gap: 14px;
}

.large-tile {
  flex: 1;
  background: #3a332d;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  box-shadow: 0px 3px 8px rgba(0,0,0,0.35);
  cursor: pointer;
  transition: 0.2s ease;
}

.large-tile:hover {
  transform: scale(1.05);
}

.large-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 14px;
}
